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:
with
var textfield:textfield = new textfield(); textfield.htmltext = "<img src='../image.gif'>" + externaltext;
you can embed custom images in textfield.
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
Post a Comment