There is an article I found which suggests a workaround using <span class="nfakPe">color</span> transforms<br>
<br>
<a href="http://www.digitalflipbook.com/archives/flash/" target="_blank">http://www.digitalflipbook.com/archives/flash/</a><br><br>Something like this may work. It is following the idea in the article,<br>
to basically invert the <span class="nfakPe">color</span> <span class="nfakPe">transform</span> on the<br>
movieclip containing the <span class="nfakPe">text</span> field, and then set the <span class="nfakPe">text</span> foreground<br>
and background <span class="nfakPe">color</span> to the inverse of what you want.<br>
<br>
I just did this by experimenting with black and white, ideally you<br>
would use something based on their<br>
approach of actually inverting the colors using the <span class="nfakPe">color</span> <span class="nfakPe">transform</span> based on the<br>
foreground and bgcolor of the textfield that you desire.<br>
<br>
<br>
&lt;canvas&gt;<br>
 &nbsp; &lt;simplelayout axis=&quot;y&quot;/&gt;<br>
 &nbsp; &lt;class name=&quot;myinputtext&quot; extends=&quot;inputtext&quot; &gt;<br>
 &nbsp; &nbsp; &nbsp;&lt;handler name=&quot;oninit&quot;&gt;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var field = this.sprite.__LZtextclip;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;field.backgroundColor = 0xffffff;<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;field.textColor = 0x000000;<br>
<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;// invert the <span class="nfakPe">color</span> <span class="nfakPe">transform</span> for the sprite<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;var colorTrans = {<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ra: -100,// &nbsp;is the percentage for the red component (-100 to 100).<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;rb: &nbsp;0xd3,// is the offset for the red component (-255 to 255).<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ga: -100, // is the percentage for the green component<br>
(-100 to 100).<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;gb: 0xd3, // is the offset for the green component (-255 to 255).<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ba: -100,// is the percentage for the blue component (-100 to 100).<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;bb: 0xd3,// is the offset for the blue component (-255 to 255).<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;aa: 100,// is the percentage for alpha (-100 to 100).<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;ab: 0 // is the offset for alpha (-255 to 255).<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;};<br>
 &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; this.sprite.setColorTransform<div id="1fpc" class="ArwC7c ckChnd">(colorTrans);<br>
 &nbsp; &nbsp; &nbsp; &lt;/handler&gt;<br>
 &nbsp; &nbsp;&lt;/class&gt;<br>
 &nbsp; &lt;myinputtext name=&quot;field&quot; width=&quot;300&quot; fgcolor=&quot;0xFFFFFF&quot;<br>
bgcolor=&quot;0x000000&quot; height=&quot;30&quot; fontsize=&quot;13&quot;&gt;Is this selection<br>
visible?&lt;/myinputtext&gt;<br>
 &nbsp; &lt;myinputtext name=&quot;field2&quot; width=&quot;300&quot; fgcolor=&quot;0x999999&quot;<br>
bgcolor=&quot;0x333333&quot; height=&quot;30&quot; fontsize=&quot;13&quot;&gt;Is this selection<br>
visible?&lt;/myinputtext&gt;<br>
<br>
<br>
&lt;/canvas&gt;</div><br><br><div class="gmail_quote">On Mon, Apr 14, 2008 at 5:02 PM, Greg Denton &lt;<a href="mailto:greg.denton@gmail.com">greg.denton@gmail.com</a>&gt; wrote:<br><blockquote class="gmail_quote" style="border-left: 1px solid rgb(204, 204, 204); margin: 0pt 0pt 0pt 0.8ex; padding-left: 1ex;">
My app changes the color of text depending on what the text is. When<br>
it changes to a lighter shade of gray (via setColor) the hiliting, or<br>
whatever the background color is called when chars are selected, is<br>
automatically changed to the same gray and completely masks the text.<br>
Can&#39;t figure out how to fix this. And, the textselectedcolor,<br>
texthilitecolor in the component styles don&#39;t seem to work with<br>
edittext. Running on <a href="http://4.0.11." target="_blank">4.0.11.</a> Thanks for any tips.<br>
</blockquote></div><br><br clear="all"><br>-- <br>Henry Minsky<br>Software Architect<br><a href="mailto:hminsky@laszlosystems.com">hminsky@laszlosystems.com</a><br><br>