1

As3 から Web ページを開いて、現在の iFrame (および Flash オブジェクト) を置き換えるにはどうすればよいですか。

4

1 に答える 1

0

Web ページを iframe で開きますか、それとも iframe を含むページ全体を置き換えますか?

前者:

import flash.net.*;    
navigateToURL( new URLRequest("url-of-the-page-to-be-opened"), "_self" );

後者:

import flash.net.*;    
navigateToURL( new URLRequest("url-of-the-page-to-be-opened"), "_top" );
于 2009-02-24T08:46:41.147 に答える