Share Posted November 22, 2017 hi, i'm trying to use the ThrowPropsPlugin with end:[-80,-160,...] parameter. the first time i use it on my list, it works. it stops at one of the endpoints. but when i click the second time on the list, it jumps quite a distance on mousemove. plugin version is: VERSION: 12.0.16 attached the class i use. any idea why this happens? thanks TestGreensockScroll.as Link to post Share on other sites
Share Posted November 23, 2017 That's actually unrelated to ThrowPropsPlugin - it's just a logic flaw in your mouseMoveHandler(). A relatively easy fix is to delete this: else if(y < _bounds.top - _yOverlap) { _mc.y = y + (y + _bounds.top - _yOverlap) * 0.5; } Does that help? 1 1 Link to post Share on other sites