For the life of me I cant figure out how to link an image in Flash MX to an external page. Please help, thanks
Linking images in flash to external pages?
Hi,
Use ActionScript !
Make your image a button or a clip, give it an instance name (here MyImage) on the scene and refer to it in your AS keyframe :
Haven't tested before posting, that's from memory, the method is there anyway...
Use ActionScript !
Make your image a button or a clip, give it an instance name (here MyImage) on the scene and refer to it in your AS keyframe :
| Code: |
|
MyImage.onRelease=function(){ GetUrl("http://www.frihost.com"); }; |
Haven't tested before posting, that's from memory, the method is there anyway...
