0
這是一個簡單的問題,但我似乎無法做到。as3 |如何在不使用函數的情況下編寫onComplete代碼
而不是寫這個(=一個的onComplete功能):
Tweener.addTween(resultsIntro, {alpha:0, time:0.5, transition:"easeIn", onComplete:func});
function func() {
myResults.removeChild(resultsIntro);
}
我想寫這樣的事情(和它不工作,因爲我不知道怎麼寫右):
Tweener.addTween(resultsIntro, {alpha:0, time:0.5, transition:"easeIn",
onComplete:(myResults.removeChild(resultsIntro);)});
因爲我不需要這個函數 - 我怎樣才能在同一個地方寫onComplete代碼?