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.
Reputation Points: 85
Solved Threads: 42
Nearly a Posting Virtuoso
Offline 1,362 posts
since Oct 2006