in flash how to give a link on static text with the mouse over=underline effect....
please reply....
in flash how to give a link on static text with the mouse over=underline effect....
please reply....
Adding hyperlinks to a static text is not straightforward as in the case of a normal text field because
StaticText
doesn't have htmlText
property like a TextField
- it inherits directly from DisplayObject
. DisplayObject
doesn't dispatch mouse events - only an InteractiveObejct
would dispatch mouse/keyboard events. graphics
property for a DisplayObject
, hence you cannot mimic underlining behavior. May be you can work around these limitations by wrapping the static text inside a Sprite
- but I would use a TextField
instead of reinventing the wheel.