<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>In Search of a Good Title &#187; troubleshooting</title>
	<atom:link href="http://curtis.humphreyonline.us/tag/troubleshooting/feed" rel="self" type="application/rss+xml" />
	<link>http://curtis.humphreyonline.us</link>
	<description>Curtis M. Humphrey's Website</description>
	<lastBuildDate>Wed, 02 Jun 2010 17:04:44 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>html tags that cannot accept css in Actionscript 3</title>
		<link>http://curtis.humphreyonline.us/code/actionscript/html-tags-that-cannot-accept-css-in-actionscript-3</link>
		<comments>http://curtis.humphreyonline.us/code/actionscript/html-tags-that-cannot-accept-css-in-actionscript-3#comments</comments>
		<pubDate>Wed, 02 Jun 2010 17:04:44 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Actionscript]]></category>
		<category><![CDATA[Actionscipt/Flash]]></category>
		<category><![CDATA[troubleshooting]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=266</guid>
		<description><![CDATA[Painful! Painful! It amazes me how little effort is sometimes put into documentation and today I found another example in Actionscript 3.0. (This is another reason I love codeigniter: great user-friendly manual! but that is another story). The actionscript goal was as follows: to change text characteristics by applying css to a textField. I was [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>Painful! Painful! It amazes me how little effort is sometimes put into documentation and today I found another example in Actionscript 3.0. (This is another reason I love codeigniter: great user-friendly <a href="http://codeigniter.com/user_guide/">manual</a>! but that is another story). The actionscript goal was as follows: to change text characteristics by applying css to a textField. I was thinking I would use the &#8220;b&#8221; and &#8220;i&#8221; tags (old school bold and italics) as my target tags. The only problem was that when applied nothing happened. Nothing, the &#8220;b&#8221; and &#8220;i&#8221; tags retained their original styling and my css was as if it was not applied. I spent time checking to make sure I applied it, time checking to make sure the tags where really there, and time looking through the manual to discover anything&#8230;</p>
<p>The tests proved that the tags where there and that the css was applied but I was still having the issue. So I just tried other tags and to my slight surprise the other tags worked. It appears that actionscript will not style &#8220;b&#8221; and &#8220;i&#8221; tags but will style &#8220;em&#8221; and &#8220;strong&#8221; tags. It will still interpet the &#8220;b&#8221; and &#8220;i&#8221; tags and apply their default styling it just will not let you overwrite those defaults with css. Sounds like either a bug or an undocumented exclusion&#8230; Either way very annoing and the manual is very unfriendly and slow. In fact online help through their livdocs was faster than through the program&#8230; Great manuals designed to be usable make or break software in the long run and this cannot be a good sign for Adobe. I&#8217;ve been playing/using flash since 2000 and their CS5 manual/help is much worse in terms of usability than their help was in 2000.</p>
<p>If you want to see a demo showing this issue try out the code below:</p>

<div class="wp_syntax"><div class="code"><pre class="actionscript" style="font-family:monospace;">...
&nbsp;
<span style="color: #000000; font-weight: bold;">var</span> newStyle:StyleSheet = <span style="color: #000000; font-weight: bold;">new</span> StyleSheet<span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
<span style="color: #000000; font-weight: bold;">var</span> styleObj:<span style="color: #0066CC;">Object</span> = <span style="color: #000000; font-weight: bold;">new</span> <span style="color: #0066CC;">Object</span><span style="color: #66cc66;">&#40;</span><span style="color: #66cc66;">&#41;</span>;
styleObj.<span style="color: #006600;">fontStyle</span> = <span style="color: #ff0000;">'normal'</span>;
styleObj.<span style="color: #0066CC;">color</span> = <span style="color: #ff0000;">'#660066'</span>;
styleObj.<span style="color: #006600;">display</span> = <span style="color: #ff0000;">'inline'</span>;
&nbsp;
newStyle.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;b&quot;</span>, styleObj<span style="color: #66cc66;">&#41;</span>;
newStyle.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;i&quot;</span>, styleObj<span style="color: #66cc66;">&#41;</span>;
newStyle.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;strong&quot;</span>, styleObj<span style="color: #66cc66;">&#41;</span>;
newStyle.<span style="color: #0066CC;">setStyle</span><span style="color: #66cc66;">&#40;</span><span style="color: #ff0000;">&quot;em&quot;</span>, styleObj<span style="color: #66cc66;">&#41;</span>;
&nbsp;
text_field.<span style="color: #006600;">styleSheet</span> = newStyle;
text_field.<span style="color: #0066CC;">htmlText</span> = <span style="color: #ff0000;">'&lt;b&gt;Hi&lt;/b&gt; &lt;i&gt;World!&lt;/i&gt; &lt;strong&gt;Hi&lt;/strong&gt; &lt;em&gt;World!&lt;/em&gt;'</span>;
&nbsp;
...</pre></div></div>

<p>The output should look something like this:<br />
<b>Hi</b> <i>World!</i> <strong style="color:#660066">Hi</strong> <em style="color:#660066"; font-style:normal">World!</em></p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/code/actionscript/html-tags-that-cannot-accept-css-in-actionscript-3/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>word 2007 spell checking inside tables</title>
		<link>http://curtis.humphreyonline.us/articles/word-2007-spell-checking-inside-tables</link>
		<comments>http://curtis.humphreyonline.us/articles/word-2007-spell-checking-inside-tables#comments</comments>
		<pubDate>Fri, 16 Oct 2009 20:17:56 +0000</pubDate>
		<dc:creator>Curtis M. Humphrey</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[troubleshooting]]></category>
		<category><![CDATA[Word 2007]]></category>

		<guid isPermaLink="false">http://curtis.humphreyonline.us/?p=253</guid>
		<description><![CDATA[
I ran across an issue today in Microsoft Word 2007 where the text inside my tables was noticeably not being spell check (i.e., words like aaa or woords were not considered misspelled). To make a long story short, it turns out that the style used for the text had spell checking turned off. This is [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img style="float: right; margin-top: 0px; border: 0px initial initial;" title="Word 2007 Logo" src="http://curtis.humphreyonline.us/wp-content/uploads/MS-Word-Logo.jpg" alt="Word 2007 Logo" width="111" height="110" /></p>
<p>I ran across an issue today in Microsoft Word 2007 where the text inside my tables was noticeably not being spell check (i.e., words like aaa or woords were not considered misspelled). To make a long story short, it turns out that the style used for the text had spell checking turned off. This is a little known option located in a misplaced location. The location is the Language Window which is, in my opinion, mismatched as I do not think of spelling as a property belonging to language options but as a property belonging to the paragraph of text (working within the list presented by the context or second mouse button click menu). Furthermore the Language Window cannot be directly called from the text&#8217;s context menu but only from the text style&#8217;s context menu.</p>
<p>To see if this solves to your spell check situation try these steps:</p>
<p>From the text&#8217;s style:</p>
<ol>
<li>Second mouse button click on the text style used inside the table (the highlight style either listed in the Style section of the Home Ribbon tab or from the expanded Style list</li>
<li>Click on the Modify&#8230; option  (opens Modify Style Window)</li>
<li>Click the Format button (bottom left corner)</li>
<li>Click on the Language&#8230; option (opens Language Window)</li>
<li>Uncheck &#8220;Do not check spelling or grammer&#8221; checkbox.</li>
<li>Click Ok, Click Ok (exit Language and Modify Style Windows)</li>
<li>Click Office Button (round upper left bottom)</li>
<li>Click on the Word Options option (opens Word Options Window)</li>
<li>Choose Proofing tab (side bar)</li>
<li>Click Recheck Document button</li>
<li>Click Ok (exit Word Options Window)</li>
</ol>
<p>If this was the cause of your spell check problem the text will now be spell check!</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://curtis.humphreyonline.us/articles/word-2007-spell-checking-inside-tables/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
