I'm converting an old Captivate 4, Actionscript 2 GoToSlide widget to Captivate 5 and Actionscript 3.
The FLA file of the old widget when opened in Flash has Actionscript 2 code including the following extract sitting at top level of the file timeline. The third last line of the following evidently controls the colour of the text on rollover:
mc.onRollOver = function() {
this._parent._visible = true;
...
txt_fmt.color = 0xffff00;
this.item_txt.setTextFormat(txt_fmt);
}
I can't find any comparable point in the equivalent Actionscript 3 GoToSlide Flash file to define the text color for the rollover. Can anyone help me locate it, and help with the equivalent AS3 syntax for txt_fmt.color = 0xffff00; ?
Thank you..