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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using Flash buttons to have diff frame targets! 1

Status
Not open for further replies.

brainpudding

Technical User
Sep 29, 2002
84
US
I am trying to work with a guy the uses frontpage express ( i know i hate frontpage too) but thats all he knows .. anyway we needed some menu buttons on the left frame. I made some (a .swf file) but i cant figure out how to make the buttons target the main frame (in the middle) What do i have to do to make that possible
 
The getURL in the button's script has to have as second parameter, the name given to the frame in the frameset. Thus if from a frame named "left_frame" you want your button to open up an html, a .swf or whatever in a main frame named "main_frame", use the following:
Code:
on(press){
    getURL("[URL unfurl="true"]http://www.yahoo.com/",[/URL] "main_frame");
}
Regards,

oldman3.gif
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top