Jump to content
Search Community

Search the Community

Showing results for tags 'y position update runtime'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • GreenSock Forums
    • GSAP
    • Banner Animation
    • Jobs & Freelance
  • Flash / ActionScript Archive
    • GSAP (Flash)
    • Loading (Flash)
    • TransformManager (Flash)

Product Groups

  • Club GreenSock
  • TransformManager
  • Supercharge

Categories

There are no results to display.


Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


Personal Website


Twitter


CodePen


Company Website


Location


Interests

Found 1 result

  1. Hi, I have an animation, which run for infinity time, until server response. I have created infinity response by repeat :-1 in TweenMax. My Code is below var tween:TweenMax; tween = TweenMax.to(reel.getChildAt(i), speed, {ease:Linear.easeNone, repeat:-1, onUpdate:updateSymbolPosition, onUpdateParams:[reel, reel.getChildAt(i) as MovieClip, tween]}); Now I want to update the reel symbol y position on Update function. so what should i do for this? private function updateSymbolPosition(reel:MovieClip, currentElement:MovieClip, tween:TweenMax):void { //What should i write here to update the currentElement y position? //i can add currentElement.y to update this. But i need new target position to update in TweenMax object, for a better smooth animation. }
×
×
  • Create New...