OMG!!!!!!!!!!!!!!!!!!!!
Yes, you can do some kind of image mapping in flash!
Why did I advised you to read the FLASHIFICATION tutorials? It's clearly explained there how to do buttons and such kind of basic stuff!
Don't wanna be an ass, so here I present you the
Crashcourse on doing imagemaps:
1) Import your "button" image into the library, place it on the stage, select it and press F8 to convert the image into a symbol, choose "MovieClip" and give it an unique name like "nav01".
2) In the properties panel give that newly created movieclip an unique instacename like "nav01"
3) Create a new layer and name it "actions" and lock that layer immediately (actions layers are supposed to hold actions and NOTHING else)
4) With the first frame on the actions layer selected press F9 and write down this code (which is already commented)
nav01.onPress = function(){ //when button nav01 is pressed
getURL="http://yoursite.com","_blank"; //open website in a new window
}
if you want to move to another frame in the same timeline then use
_root.gotoAndPlay(x);// x is the framenumber which you target
instead of the getURL.
Really mate, go through all the flashification tutorials, which you can find here:
http://www.pixel2life.com/tutorials/Macrom...=Flashification
GL
Funkysoul