|
|
 |
|
|
|
|
|
Hello and welcome.
There is lot of ways to the do a roll over image zomming, like to convert the img to button and we do down and over state ,in the down we let the originale size of img, and in the stat we large the img, but as you see you lost time to costimize the w and h of img and and....
so i find this script very usefull you just past the code in the object you wanna do the effect zoom and to change the volume.
Here is the code :
on (rollOver) { _root.n-img._xscale = 300; _root.n-img._yscale = 300; } on (rollOut) { _root.n-img._xscale = 100; _root.n-img._yscale = 100; }
n-img : is the name of your img or object, set it as target. in roolOut we set the number 100, it mean the originale size 100%. in roolOver we set the number we wanna, if you want the img zoom biger than originale you just put the number >100, or if you wanna to be small than originale put number <100.
ok swishers hop u understand me . Download File Enjoy
|
|
|
|