PDA

View Full Version : HTML Frames and Flash ?



Sanshiro
December 1st, 2003, 05:47 PM
Well im having a huge problem...

See this is how my website will look like:

--------------------------------
|
| Flash .SWF
--------------------------------
|
|
| News and Information.
|
|
----------------------------------

The website consists of 2 frames, 1 for the SWF and 1 for the news... Why ? because i want the flash menu to stay up all the time while the news page loads, and ONLY the news page.

So basically, i want this to happen, when i press on a button in the SWF, the other frame (the one with news) loads, and the Flash frame stays normal... example: www.2advanced.net

I dont have a clue how to do that i tried everything with getURL and nothing worked, if anyone knows please help.

After all the hard work, its either these 2, 1) It loads in the entire frame, 2) it loads just in the Flash Frame...

Need Experts help !

Thanks :azn:

cubed
December 1st, 2003, 08:45 PM
http://www.kirupa.com/developer/flash5/frames.htm

Sanshiro
December 2nd, 2003, 04:20 AM
http://www.kirupa.com/developer/flash5/images/frames2.gif

But i dont have this in my HTM file... and i used Dreamweaver

cubed
December 2nd, 2003, 05:39 PM
I dont use dreamweaver but there should be a properties feild where you can name your frames.

kalomiata
December 18th, 2003, 09:59 PM
If you can't find where to put in the name of the frame in Dreamweaver, then just add it manually into the html file.

IE:

<frameset cols="50%,*">
<FRAME NAME="Menu" src="nav.html" title="menu">
<FRAME NAME="content" src="main.html" title="Content">
</frameset>



Then through flash, reference the flash layer (when using getURL) to the name you gave the frame. It is quite simple.