You need to save it as a .swf file. Then you need to embed it in the webpage using the HTML code Flash can generate for you.
stymiee
He's No Good To Me Dead
3,360 posts since May 2006
Reputation Points: 161
Solved Threads: 38
Oh, you want to make the flash file load a webpage when you click on it. That's a different story. Sorry but I don't know enough about Flash to help you with that.
stymiee
He's No Good To Me Dead
3,360 posts since May 2006
Reputation Points: 161
Solved Threads: 38
If you haven't added any action to any symbol, i.e. you flash movie is just a movie nothing dynamic, then this is the simples way.
1. Add a new layer, say "actions"
2. Make sure that the last frame(note: its frame not keyframe) number is equal to the last frame of whole movie. This is to ensure that the following code works throughout the movie
3. Now click on the first frame of actions layer and press F9 to open Action Panel and write this code:
_root.onMouseUp= function() {
getURL("http://www.google.com", "_blank");
};
That's it
vishesh
Nearly a Posting Virtuoso
1,381 posts since Oct 2006
Reputation Points: 85
Solved Threads: 42
That's exactly what the post above yours said.
stymiee
He's No Good To Me Dead
3,360 posts since May 2006
Reputation Points: 161
Solved Threads: 38