flash AS question
flash AS question
Out of context: Reply #11
- Started
- Last post
- 40 Responses
- fyoucher10
Just put those files next to your FLA and where you need to use that code, just import the classes
import com.greensock.*;
import com.greensock.easing.*;Then you need to read the documentation, thoroughly as well. It's something you just need to remember.
The difference between mctween and Greensocks Tweenlite is that you enter the properties to change as params inside of { } off of a TweenLite instance... where as mctween you just specify the movieclip and do one of the methods like myClip.alphaTo to fade something out, scaleTo to scale something proportionally, etc. Again, you have to read the documentation though. mctween is much easier to understand for a beginner though.