如果我做了一个 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;
}
}
我如何确保它仅在目标是数组中的特定值时才有效?