views:

260

answers:

3

Hi,

How do I add registered trademark symbol in Flex?

Thanks in advance for your help.

+1  A: 

Use the xml entities

™
® ®

Amarghosh
Thanks for the reply.Could you please tell me how to use this in a super script?
JK
Flash doesn't support `sup` or `sub` tags. There is a workaround here http://blog.ggshow.com/index.php/reference/2007/04/19/how_to_use_subscript_aamp_superscript_in
Amarghosh
@JK: These symbols are already superscript, no further action needed. I.e. b™d
MSalters
+1  A: 

In what context? For the most part you should be able to include a ® character (U+00AE Registered Sign) directly.

If your editor can't understand UTF-8, there are various forms of encoding you might use. In an MXML file you could say ®. (That wouldn't work in a CDATA block though.) In an ActionScript string literal you can say '\xAE'.

bobince
+2  A: 

for © you can type Alt + 0169 and it will insert it in place. for ™ you have Alt + 0153

TheBrain