1
我寫了下面的代碼來單擊跳過按鈕並在Flash cc中轉到某個幀。現在我想使用跳過按鈕導航到另一個html文件。我怎樣才能做到這一點?使用JavaScript在Flash中導航到另一個場景
/*JavaScript*/
this.skipBtn.addEventListener("click", fl_ClickToGoToAndStopAtFrame.bind(this));
function fl_ClickToGoToAndStopAtFrame()
{
this.gotoAndPlay(5);//to go to a particular frame
}