We have a store locator built in AS3.0. It supposes to bring more information to the screen when you select a region/country. This is a part of the project : ximios.com/radu/demos/dealers/
Now, the client wants to downgrade this project to AS2.0 because we want to load this SWF into other websites that are currently built with AS2.0. Keeping it to AS3.0 will not work as loaded (obviously) One of the reasons it was built with AS3.0 is because it’s very easy to add a zooming class for any country when you press it using:
(just some samples, I’m sure you know what I mean by this)
e:Event;
Tweener.addTween(e.target...
private function setContinentOver(evt:MouseEvent):void{
evt.target.textColor=0xFF0033;
}
What is the way to create a similar usage in AS2.0? I don’t want to create the movieClip1.onRelease; movieClip2.onRelease; movieClip3.onRelease a million of times for all the country movieClips.
How can I know exactly what MC you pressed and apply a function to it at the onRelease?
Thanks.