I seem to remember solving this problem once by changing where the
stylesheet gets set, but I cant remember the order. I would try a few
options, like:

txt.htmlText = xmlTXT;          
CreateStyleSheet();

or

CreateStyleSheet();
txt.htmlText = xmlTXT;          

or even ( I know it looks stupid)

CreateStyleSheet();
txt.htmlText = xmlTXT;          
CreateStyleSheet();

kinda kludgy, but if it works...

.m

On Sun, Dec 14, 2008 at 7:33 PM, Ashim D'Silva <[email protected]> wrote:
> Hi all,
> I'm having a really odd problem, that I haven't been able to find anything
> about. I have a multiline, word wrapped TextField that uses CSS (built as
> objects), with content coming from HTML in an XML file.
> It all works fine, but for some reason, when I hover over a link (whether I
> have CSS for hover or not) it moves a pixel or two. Sometimes only the first
> time, sometimes all the time.
> If I have a a:hover in the CSS it definitely moves every time.
>
> Has anyone encountered this, got a solution or have any idea why this would
> happen?
>
> Thanks,
>
> Ashim
>
> --
> The Random Lines
> My online portfolio
> www.therandomlines.com
> _______________________________________________
> Flashcoders mailing list
> [email protected]
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
_______________________________________________
Flashcoders mailing list
[email protected]
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Reply via email to