PDA

View Full Version : flash n html frame


okami
09-18-2004, 01:20 PM
Hello guys... really need your help here. My sch project is due in two wks time and i haf a qn here. I have divided my html page layout to two columns. On the first columns, i put some flash buttons there. I want something like, when i click the buttons, the second column will display a html file. Wad am i goin to do??? Thanks!

Cota
09-19-2004, 05:40 AM
This code will do it:


on(release){
getURL("page.html","targetFrame");
}

Ruben
09-19-2004, 12:02 PM
This code will do it:


on(release){
getURL("page.html","targetFrame");
}


....if you're using tables to seperate the page into 2 columns then you could use the <iframe>-tag, search for more info at w3schools (http://www.w3schools.com)

:) - Ruben

okami
09-19-2004, 12:36 PM
the "targetFrame " attribute refer to the one i named in html?

Ruben
09-19-2004, 12:41 PM
the "targetFrame " attribute refer to the one i named in html?

yup

<frame src="somepage.html" name="targetFrame">

sorry for answering that one Cota

;) - Ruben

okami
09-19-2004, 12:58 PM
Thank you guys!!! :) i got it right finally haha ;)

Ruben
09-19-2004, 01:00 PM
Glad could help you out...

:) - Ruben