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;
}
}
ターゲットが配列の特定の値である場合にのみ機能することを確認するにはどうすればよいですか?