actionscript 3 - How insert a custom shape in imported external dynamic text in flash -


is possible insert arrow or in imported external text in flash. this:

enter image description here

with

var textfield:textfield = new textfield(); textfield.htmltext = "<img src='../image.gif'>" + externaltext; 

you can embed custom images in textfield.

see adobe documentation more.


another way use special characters. in windows: open character map clicking start button, clicking programs, clicking accessories, clicking system tools, , clicking character map. copy-paste special characters code:

textfield.htmltext = "► " + externaltext + "♫♪♫"; 

Comments

Popular posts from this blog

c++ - What's the differece between of link to a dynamic file and as a input object? -

javascript - Feed FileReader from server side files -

Android Unit Testing / Mockito: android.location.Location not mocked -