2015-04-15 73 views
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 
} 

回答

0
this.skipBtn.addEventListener("click", fl_ClickToGoTonextPage); 

function fl_ClickToGoTonextPage() { 
    window.location.href = "2.html"; 
} 

它fullfilled我的要求。

相關問題