html/flash

New Member
Joined
Oct 20, 2004
Messages
397
Best answers
0
alright i'm hoping someone can help me out with a flash/html thing.

basically what i'm trying to do is have an html frameset and the frame on the left is the navigation bar, which is a flash file. How i have it right now the flash button has the code

on (press) {
getURL("home.html", "main");
}

my understanding is that this would target the windo main and tell it to go the url home.html, unfortunently it doesn't do anything to the other window, my html code looks like this.

<html>
<head><title>Pandora's Box</title></head>
<frameset cols ="330, *">
<frame src = "panopen1.html" name = "nav">
<frame name = "main">
</frameset>
</html>

could anyone help me fix this, or know of a way to do it?

edit: i MIGHT have figured it out, i might HAVE to give the second frame a source.
 
Lost in space
Banned
Joined
Oct 21, 2003
Messages
814
Best answers
0
tolore said:
my html code looks like this.

&lt;html&gt;
&lt;head&gt;&lt;title&gt;Pandora's Box&lt;/title&gt;&lt;/head&gt;
&lt;frameset cols ="330, *"&gt;
&lt;frame src = "panopen1.html" name = "nav"&gt;
&lt;frame name = "main"&gt;
&lt;/frameset&gt;
&lt;/html&gt;
Due to a security issue I found and wrote some code to exploit, HTML is disabled on these forums. =p

If you need to post HTML code, use &amp;lt; and &amp;gt; instead of trying to type &lt; &gt; (quote my post to see the code I used)
 
New Member
Joined
Oct 20, 2004
Messages
397
Best answers
0
i see, thanks for the tip, fortunently i figured out the problem shorlty after i posted the question(i love how answers always come to me right after i ask teh question). THat'll be good to know for future use though.
 

Users who are viewing this thread

Top Bottom