vote up 2 vote down star

Is it possible to set the title of a page when it's simply a loaded SWF?

flag
Can you clarify? Do you mean the HTML just contains one link to <object> which is your SWF, or that you have literally loaded a .swf file and it is playing in the browser without any HTML at all? – Orion Edwards Sep 17 '08 at 21:36

5 Answers

vote up 3 vote down

This is how I would do it:

ExternalInterface.call("document.title = 'Hello World'");

Or more generalized:

function setPageTitle( newTitle : String ) : void {
  var jsCode : String = "function( title ) { document.title = title; }";

  ExternalInterface.call(jsCode, newTitle);
}
link|flag
vote up 1 vote down

Sure. This should fix you up:

getURL('javascript:var x = (document.getElementsByTagName("head")[0].getElementsByTagName("title")[0].firstChild.nodeValue = "This is a test!");');

Just replace "This is a test!" with your new title.

link|flag
vote up 0 vote down

I only have a lead: There are ways to have Flash apps invoke Javascript.

link|flag
vote up 0 vote down

I would think you would be able to do it. You would have to access the javascript DOM.

A couple links that may steer you down the correct path..

http://homepage.ntlworld.com/kayseycarvey/document2.html

http://www.permadi.com/tutorial/flashjscommand/

link|flag
vote up 0 vote down

You could use SWFAddress, it has a setTitle method. Plus, you get the added benefit of beng able to modify the URL for deep-linking.

EDIT: This won't work if the SWF is loaded directly in the browser, only if it is embedded in HTML.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.