-1
出於某種原因,想看看時,如果它的工作,我得到類型錯誤:AS3 - 不能使用SharedObject?
Error #1034: Type Coercion failed: cannot convert "[object SharedObject]1" to flash.net.SharedObject.
這裏是我的代碼:
stop();
var savedstuff:SharedObject = SharedObject.getLocal("myStuff");
addEventListener(Event.ENTER_FRAME, enterFrameEvent);
function enterFrameEvent (event:Event){
savedstuff += 1;
trace (savedstuff);
}
bootoon.addEventListener(MouseEvent.CLICK, clicks);
function clicks (event:MouseEvent){
gotoAndStop(2);
}