I’ve 3 different MovieClips that I need to move at the same time across the screen. (From bottom to top)
What is the best way of doing this without using a tweening class like Caurina?
Thank you for tips.
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You could add an event listener to the parent container of the display objects which listens for the
Event.ENTER_FRAMEevent. On eachEvent.ENTER_FRAMEevent you simply decrement theyproperty of the display objects like in the following example.I think you’d be making life easier for yourself though if you simply used Greensock’s Tweening platform instead.