I have this
operand="÷";
item.text=operand+" "+String(i);
trace(item.text) /// ÷ 1
but I don't see that operand in text area.
text area: not html, Arial, all embedded
text area HTML: the same I see operand in trace but I don't see on the screen

Any idea?

2007/8/14, Cedric Muller <[EMAIL PROTECTED]>:
> Hello,
>
> You mean that you just need this 'convention' for display purposes ?
>
> var str = "10 / 2=";
> trace(str);             //      outputs: 10 / 2=
> str = str.split("/").join("÷");
> trace(str);             //      outputs: 10 ÷ 2=
>
> hth,
> Cedric
>
> > "10 / 2=" I need "10 ÷ 2 ="
>
> _______________________________________________
> Flashcoders@chattyfig.figleaf.com
> To change your subscription options or search the archive:
> http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
>
> Brought to you by Fig Leaf Software
> Premier Authorized Adobe Consulting and Training
> http://www.figleaf.com
> http://training.figleaf.com
>
_______________________________________________
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

Reply via email to