Linking Flash and HTML

Just right click, then “view code” hehe

Yes… I agree that IFrames are the way to go as the entire page will not be reloaded, only the IFrame. Therefore, place the SWF file within the IFrame and use [AS]getURL(“page.html”, “_self”);[/AS] to replace the SWF with an HTML page after the movie has completed (ie place this Action in the last frame).

If the appearance of the IFrame (ie scrollbars) do not fit with the layout of your page you can use CSS code to change the appearance.

Place the following within your HTML STYLE tags or in your stylesheet:

scrollbar-3d-light-color:#FFFFFF; 
scrollbar-arrow-color: #FFFFFF;    
            scrollbar-dark-shadow-color: #FFFFFF;
scrollbar-face-color: #FFFFFF;
scrollbar-highlight-color: #FFFFFF;
scrollbar-shadow-color: #FFFFFF;
scrollbar-track-color:#FFFFFF;
            scrollbar-base-color: #FFFFFF;

That will (almost) camouflage the IFrame if you’re using a white page. Change the colours to suit your particular background. I hope this helps and apologise for my huge JavaScript code explanation above! :crazy:

the problem with iFrames is that not all browsers support them.
Regular frames, however, they all do.

all the new browsers support Iframes just fine. older netscape didn’t but I think 6+ does.