[Flashcoders] Flash chat and Smiley

2007-02-23 Thread Amandeep Singh
Hi All, Can anyone help me in adding the Smiley feature in a Flash Chat application? Or give me a link where I can find the same. Thanks in advance. Regards, Amandeep Singh ___ Flashcoders@chattyfig.figleaf.com To change your subscription options or

Re: [Flashcoders] Flash chat and Smiley

2007-02-23 Thread Arul Prasad M L
*Jolan SmileyTextField v1.3 * (http://flashcomponents.net/components/preview/preview.php?id=372) Its in AS1 though. Haven't seen anything better yet. I had to tweak it a lil to get it to work for FP 7+ ... -- Arul Prasad http://ar

Re: [Flashcoders] Flash chat and Smiley

2007-02-23 Thread johann martinache
Hi You could replace the smiley text by an image by using the img tag (only working with htmltext) Example: var sTxt:String = 'HelloWorld :-) !!!'; sTxt = sTxt.split(':-)').join('') trace('sTxt > '+sTxt) shoe[box] On 2/23/07, Amandeep Singh <[EMAIL PROTECTED]> wrote: Hi All, Can an

Re: [Flashcoders] Flash chat and Smiley

2007-02-23 Thread T. Michael Keesey
Inline images were mentioned, and that's probably the best idea, but these can have weird behavior sometimes. Another option would be to find an emoticon font and use that on special characters, e.g., 'x'. (Be sure the font is embedded in a TextField somewhere.) The only problem with this approach

RE: [Flashcoders] Flash chat and Smiley

2007-02-24 Thread Amandeep Singh
: Re: [Flashcoders] Flash chat and Smiley Hi You could replace the smiley text by an image by using the img tag (only working with htmltext) Example: var sTxt:String = 'HelloWorld :-) !!!'; sTxt = sTxt.split(':-)').join('') trace('sTxt > '+sTx