PDA

View Full Version : tittle within Flash


isselmuden
04-23-2002, 11:52 AM
Hi !!!!,

With html you can make a tittle for your document, like
this

<tittle>Yourhomepage</tittle>

But is there a way tot make such a tittle from within
flash. So I don't need to make for every SWF a html file.

Greeting Willem

jimburton
04-23-2002, 11:55 AM
Sorry, I don't get it. Do you want to display several swfs in one html page and change the title tag when a new one is loaded? If so, you can't alter the title tage of a page once it's loaded. Not sure if that's what you mean though. :confused:

isselmuden
04-23-2002, 02:17 PM
I have a index.html, that gives a popup.html.
in this popup is swf file intro.swf.
When i hit a button in intro.swf a new swf file is loaded within the popup.html but it now the tittle is the location where the file is stored.

Look this is the intro.swf in the popup.html.
with the correct tittle "Photography 2 day"


http://www.photography2day.com/images/goed.jpg

En this is wrong the nieuw file is like this:

http://www.photography2day.com/images/fout.jpg

And should also be "Photography 2 day"

Do I have to make for ever SWF a new HTML file or can I make this tittle within flash.

I hope I'm making my self a bit more understandable or am I
making it worse

If not look at www.photography2day.com and than at the tittle
off the popup and the when you hit an link in the popup screen
Greetings Willem

jimburton
04-23-2002, 02:27 PM
use loadMovie() instead of getURL - your swf is then laoded within the current swf. Should do it.....?

Rasta Gonzales
04-23-2002, 02:34 PM
...use getURL and load not the .swf itself but a new html-doc containing your new flash and its own <title>-tag.

define target="_self" and it should load the new movie into the same window.

:D