My website has a choice between a flash page and HTML page. When you click on the flash page it opens with no back buttons (I use a javascript function window.open) Some pages on the flash site go to php pages. For example my message board. I want that page to have the back/forward/stop/refresh/etc buttons. Is there some way I can do this without opening a different page?
Thanks Adam
if you use window.open, you can choose which options to have off or on, toolbars = 0 or 1, scrollbars = 0 or 1, etc...
I know but I want to have no tool bar for the flash part and a tool bar for the links that link to php pages. But I dont want to open a new window. Hope this makes sense
you can also set those options with a function on the requested page and call it in the body tag with onload="nameoffn();"
cool thanks, I am not to go with javascript. Could you give me an example function that could do this???