Using Html Frames With Flash?

Is it possible to use HTML frames with Flash? For example, I want to make a flash menu system on my site, and have the click of the menu buttons open up an HTML page in a different frame.

Flash movie in one frame.

HTML pages in another frame.

Assuming you know how to make frames, you will give your HTML frame a name (lets call it “contentFrame”).

The link on your buttons will look like this…

on (release){
getURL("yourfile.html","contentFrame");
}

I hope that helps :slight_smile:

Fantastic! Thanks so much! I knew there MUST be a function like that.

No problem :goatee: