Yet Another Convert AS1 to AS3
Shouldn't be too hard!
I adopted someone else's older Flash project, and I need to update it.
I have a map featuring several buttons on various cities. One button, with many instances, named accordingly.
Roll over a button instance, and it goes to the appropriate label on a MC timeline, showing the appropriate text.
How do I update this to AS3?
_root.seattle.onRollOver = function ()
{
_root.text.gotoandstop("seattle");
}
Seattle is the button instance name, text is the MC name and the seattle is the MC label name.
I'll end up with this code repeated many times, for each of the different buttons.
Any help?
Thanks.