I'll keep this short; basically after my flash banner expands to its normal size I want it to then go to the next scene, but for the life of me I cant figure out how to do this, nothing seems to be working. I'm not that experienced with flash so I probs stuffed up something easy
Link to file: http://www.mediafire.com/?bwz6js3x1autttz
EDIT
Heres the code:
import flash.events.MouseEvent;
import flash.events.Event;
import flash.external.ExternalInterface;
stop();
hotSpot.addEventListener(MouseEvent.MOUSE_UP, up0);
function up0(e:Event):void
{
dropDown.gotoAndPlay("down");
ExternalInterface.call('javascript:expand();');
play();
}