2013-08-12 79 views
1

我試圖從位於從IFRAME更改iframe中的內容使用閃光燈按鈕

這裏外的閃光燈按鈕改變IFRAME SRC是我的代碼

this.contact.onRelease = function() { 
    navigateToURL(new URLRequest("page2.html", target="myframe")); 
}; 

,但是這是不工作

+0

Google'ExternalInterface'。 – Marty

+0

看起來更像是ActionScript 2('this.contact.onRelease')。你有任何錯誤嗎? – putvande

回答

1

可以在沒有ExternalInterface的情況下更改iframe內容,但是您也僅限於我認爲的自己的域。你的代碼幾乎是正確的。 我不知道如果this.contact.onRelease是去工作,但navigateToURL應該是這樣的:

navigateToURL(new URLRequest("page2.html"), "myframe"); 

您不用target=..分配目標到URLRequest,也是目標只是一個字符串,等等。

http://help.adobe.com/en_US/FlashPlatform/reference/actionscript/3/flash/net/package.html#navigateToURL()