Need a script to zoom in on mouse click / over in flash mx.
Pls do reply soon.
thanks
Need a script to zoom in on mouse click / over in flash mx.
Pls do reply soon.
thanks
You can try something like:
on(rollover){
image.width = image.widht + 10;
image.height = image.height + 10;
}
on (rollout){
image.width = image.widht - 10;
image.height = image.height - 10;
}
You can try something like:
on(rollover){ image.width = image.widht + 10; image.height = image.height + 10; } on (rollout){ image.width = image.widht - 10; image.height = image.height - 10; }
This would work until you have set noScale property to no. Better would be using MovieClip._height
or MovieClip._height
where movie clip would be replaced by the clip instance name or _root
for whole movie. You could also use _xscale
or _yscale
properties if you want relative zoom.
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.