1
我想製作可以調用,將發送給被叫標籤功能的..AS3,Flash - 去標籤的功能?
好了,我現在做這個的所有按鈕:
myButtonSomething.addEventListener(Event, GoToLabelSomething);
function GoToLabelSomething (e:Event):void{
this.gotoAndStop("Something");
}
這豈不是可能做到使..像PHP會是這樣:
GoToLabel("something");
function GoToLabel($label) {
// gotoAndStop($label); or something....
}
我希望我意義:d
非常感謝。 :) –