Ok I’m a total n00b in Flash, and I just need to know how to put an HTML page in Flash. Thanks!
It’s not possible, you can’t import entire HTML pages, the most you can bring in is txt. files with text HTML properties.
ok, but then how do i make a link in a flash mopvie link to another frame on the page? (Like I said, totally new to Flash).
First convert whatever object you want to be a link into a movieclip or button symbol.
Then apply a similar script like this to it by clicking on the object to select it then open your actions panel. Here is the script:[AS]on (release) {
getURL(“http://www.yoursite.com/blah.html”, “frame_name”);
}
[/AS]
Just fill in your URL and the name of the frame you want that page to load into. Just replace “frame_name” with the correct frame name you’re using.
If u want to go to another frame use the action
[AS]
on (release) {
gotoAndPlay(x);
}
[/AS]
where x is the frame number u want to go.