Share Posted November 12, 2010 Hello, i need to create image transformation from one to another with mouse interaction. I used tweenlite to set columns of first image to alpha=0, and after few seconds turn it back to first image. The problem is with cursor. I need to turn that column where cursor remains back to first image after a while - I need to see complete image. Hope you understand my poor english. Thank you! here is code for one column.. import com.greensock.*; import com.greensock.easing.*; import flash.events.Event; btn.addEventListener(MouseEvent.MOUSE_OVER, btnRollOver); btn.addEventListener(MouseEvent.MOUSE_OUT, btnRollOut); function btnRollOver(e:Event){TweenLite.to(btn, 0.2, {alpha:0});} function btnRollOut(e:Event){TweenLite.to(btn, 1, {alpha:1, delay:4});} Link to comment Share on other sites More sharing options...
Share Posted November 14, 2010 Sorry, I don't understand the question after reading it 4 times. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now