PDA

View Full Version : flash menu to html page


pi
04-18-2006, 09:22 PM
hello thanks for reading

does anyone know how to have a flash menu direct an html page to send a specific paragraph to the top of the page?

like if you had a lot of text and you wanted to provide a link to send the vistor back to the top of the page... only from flash


thanks again

ps special thanks if you got a lead...

timeliner
04-19-2006, 01:46 AM
All you need to do is create your button, with the following code:
on (release){
getURL("mypage.html#top","_self:,"GET");
}

Then insert the swf into your html page and create an anchor called "top", along side the paragraph you want at the top of your page.
<a name="top"></a>,

Cheers

pi
04-19-2006, 04:00 AM
thanks, awsum.