当它只是一个加载的SWF时,是否可以设置页面的标题?
我就是这样做的:
ExternalInterface.call("document.title = 'Hello World'");
或者更一般化:
function setPageTitle( newTitle : String ) : void { var jsCode : String = "function( title ) { document.title = title; }"; ExternalInterface.call(jsCode, newTitle); }