Forums
This topic is locked
Making a frameset work?
Posted 27 Jul 2006 20:09:56
1
has voted
27 Jul 2006 20:09:56 Thin Lizzy posted:
have a frame set top and bottom. The top contains a flash piece naviagtion. when I click on a navigation option like About I want the bottom to pull up the html page but it doesn't?What am I doing wrong?
Replies
Replied 28 Jul 2006 22:13:47
28 Jul 2006 22:13:47 Derek Allen replied:
You would need to use the TARGET attribute you can do this from within HTML or even from FLASH.
From your link in FLASH you could do something like this.
<pre id=code><font face=courier size=2 id=code>
on (release) {
getURL("yourlink.html", "framename"
}
</font id=code></pre id=code>
from HTML it would be similar
<pre id=code><font face=courier size=2 id=code>
<a href="yourlink.html" target="framename">link</a>
</font id=code></pre id=code>
Hope this helps somewhat.
-NEX
From your link in FLASH you could do something like this.
<pre id=code><font face=courier size=2 id=code>
on (release) {
getURL("yourlink.html", "framename"
}
</font id=code></pre id=code>
from HTML it would be similar
<pre id=code><font face=courier size=2 id=code>
<a href="yourlink.html" target="framename">link</a>
</font id=code></pre id=code>
Hope this helps somewhat.
-NEX