如果我創建了一個if語句,並且我希望它在目標點擊另一個影片剪輯時執行某些操作(但我已經知道該如何操作),但只有當它正確的目標,我該怎麼做?動作腳本3如何使if語句與數組激活
function stopdrag(e:MouseEvent):void{
e.currentTarget.stopDrag();
if(e.currentTarget.hitTestObject(destination) || //right here is where the script would `check the name of the target//){`
scaryface.visible=true;
}
}
我該如何確保它只在目標是數組中的特定值時才起作用?