all groups > flash actionscript > march 2005 >
You're in the

flash actionscript

group:

Get URL


Get URL PaulSch
3/2/2005 10:22:18 PM
flash actionscript:
How do even begin to go about this? I know how to do this in Dreamweaver. I
have images that I will use as links to other pages. However I want these
pages to open within the main_frame of my Framed site. Do I write an action
script or is it a javascript and where would I do this? I would greatly
appreciate the help. :confused;
Re: Get URL kglad
3/2/2005 10:27:07 PM
Re: Get URL PaulSch
3/2/2005 10:36:24 PM
Re: Get URL kglad
3/2/2005 10:41:35 PM
Re: Get URL PaulSch
3/2/2005 10:53:24 PM
kglad,
I have a swf opening as a splash page with icons embedded to enter into the
main site. Icons that are choices like 'about', 'contact', 'service options',
and such. This is within the swf. Now I want to launch into my
'NormalPage.htm' first when they make anyof those choices, then launch the page
they chose from the icon into the main_frame.htm of that NormalPage.htm. Am I
making any sense? Can this be done?
Re: Get URL seanhaddy
3/2/2005 10:57:29 PM
Re: Get URL kglad
3/2/2005 11:02:49 PM
i understand your set-up, now. but i don't know how you can do that. if you
changed your set-up it should give the appearance you want.

load your frameset with flash in one of the frames. when an icon is clicked
you can use flash to load various html pages into each of the frames, including
the one that contained your flash so it no longer appears.
Re: Get URL PaulSch
3/2/2005 11:14:55 PM
wow, thats sounds abit complicated but I think I know what you mean. Just got
to figure it out. Anything to get me started in the right direction? I would
appreciate it. And thanks for the help up to this point.

Paul
Re: Get URL kglad
3/2/2005 11:28:55 PM
fo example, you could load your site with flash in the left_top frame and in
your flash you could use getURL() to repopulate any and all of the frames
left_top, left_bottom, rightside:

<HTML>
<FRAMESET cols="20%, 80%">
<FRAMESET rows="50%, 50%">
<FRAME src="yourFlash.html" name="left_top">
<FRAME src="contents_of_frame2.gif" name="left_bottom">
</FRAMESET>
<FRAME src="contents_of_frame3.html" name="rightside">
</FRAMESET>
</HTML>
Re: Get URL PaulSch
3/3/2005 12:01:00 AM
kglad,
Thanks for the help!

Re: Get URL kglad
3/3/2005 3:33:30 AM
AddThis Social Bookmark Button