I’m trying to get this result:
I have 6 pictures on the left and some text buttons on the right.
I want the pics to be covered with a light white mask that blurrs the picture ever so slightly and then being able to put the mouse over the first button and for the mask over the first picture to desapear. It shouldn’t be too difficult but it’s driving me nuts!
Hi,
Just put two frames in your image mc’s - lets call them sharp and fuzzy( frame labels)
In the fuzzy frame, make your picture fuzzy by lightneing th colour or using whatever effect you think right. Put a stop() action in each frame
Code on your button should be :
[AS]on(rollOver){
gotoAndStop(“sharp”);
}
on(rollOut){
gotoAndStop(“fuzzy”);
}
[/AS]
Try it and see
SteveD