Looking for script
Looking for script
Out of context: Reply #8
- Started
- Last post
- 16 Responses
- ********0
import gs.TweenMax;
yourImage.onRollOver = exposeImage;function exposeImage()
{
TweenMax.to(yourImage, 1, {_xscale:110, _yscale:110});
TweenMax.to(yourText, 1, {_alpha:100});
}this is a very simple function that uses TweenMax to tween your mcs. upon rolling over an image the function will scale your image up by 10% and fade in your text. obviously this function needs tweaking, but i can't do it ALL for you can i? :) hope this helps get you started.