2012-06-03 144 views
0

在Flash 8中,我創建了一個影片剪輯。裏面我添加了3個符號(動畫片段)。 1個盒子和兩個圖像,目標是將該圖像拖放到盒子中。我該怎麼做?Flash 8 ActionScript - 影片剪輯位置

on(press) { 
startDrag("_root.FirstMC.RObject"); 
} 

on(release) { 
stopDrag(); 
if (_root.FirstMC.RObject._droptarget == "/Box") { 
    gotoAndStop(3); 
    } 
} 

我在做什麼錯?我可以拖放,但不能識別放置位置(不會轉到第3幀)。任何幫助?

回答

1

使用hitTest,例如,

onClipEvent (enterFrame){ 
    if (yourMC.hitTest(yourImage)) 
    { 
     what is supposed to happen here... 

    } 

} 

希望這會有所幫助。

相關問題