我正在考虑制作一个可以调用并将发送到被调用标签的函数..
好吧,我目前对所有按钮都这样做:
myButtonSomething.addEventListener(Event, GoToLabelSomething);
function GoToLabelSomething (e:Event):void{
this.gotoAndStop("Something");
}
不可能这样做吗.. 就像在 PHP 中一样:
GoToLabel("something");
function GoToLabel($label) {
// gotoAndStop($label); or something....
}
我希望我说得通:D