the three circle are button, when the mouse hover over the buttons, a pic shows up in the white box, when the mouse leaves it, the pic disappear too?
this is tremndously basic mate.
u want to import your images into the movieclip of the square (select your square and hit F8 then choose movieclip)
as separate frames but ensuring your first frame is simply your white square.
so frame 1 is plain white square,
frame2 is image 1
frame 3 is image 2
frame 4 is image 3
you will have to make sure that each of the above frames are keyframes in order for this to work.
then on each of these keyframes include the Action Script
stop()
now, outside of this movieclip, on the main stage select your new movieclip and give it an instance name of “imagemc”.
then select your circles and make them buttons (hit F8 and choose button)
associate this action script with the appropriate one
on(rollOver){
imagemc.gotoAndStop(2)
}
on(rollOver){
imagemc.gotoAndStop(1)
}
on(rollOver){
imagemc.gotoAndStop(3)
}
on(rollOver){
imagemc.gotoAndStop(1)
}
on(rollOver){
imagemc.gotoAndStop(4)
}
on(rollOver){
imagemc.gotoAndStop(1)
}
and im not being nasty here but i STRONGLY suggest you go and look at the tutorials on this site or even start looking in the help files of flash itself before posting again… as most ppl dont answer questions wen ther so basic a monkey could work it out!
hehe
Prophet.
CAN"T WORK!
am i asking too much if i were to request for a .fla file…:hugegrin: