Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

open HTML page from flash in other frame

Status
Not open for further replies.

knuckle05

Programmer
Dec 17, 2001
247
CA
Hi All,

I have a page with 3 frames

fraTop
fraLeft
frContent

I have a flash menu in my fraTop. When I click on a button, I would like to change the HTML page inside fraContent. How exactly can I do that?

On the button properties inside Flash, there is a Target dropdown, but it only lists the default targets such as _parent, _blank, etc.

Thx!
 
on(release)
getURL(" "fraContent");
}

Of course change the "yourserver.com/your.html" with the right ones, and make sure the target is exactly the same as your frame's name. You have different spellings in your post... frContent & fraContent!

Regards,

cubalibre2.gif
 
In fact, it should really be... Forgot the TGML processing here on the forum, there's an extra ";" that shouldn't be there...
Code:
on(release)
getURL("[URL unfurl="true"]http://www.yourserver.com/your.html",[/URL] "fraContent");
}





Regards,

cubalibre2.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top