我会保持简短;基本上,在我的 Flash 横幅扩展到其正常大小之后,我希望它然后转到下一个场景,但是对于我的生活,我无法弄清楚如何做到这一点,似乎没有任何效果。我对闪光灯没有那么有经验,所以我很容易塞满一些东西
文件链接:http ://www.mediafire.com/?bwz6js3x1autttz
编辑
继承人的代码:
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();
}