-
Hello,
When requiring gsap's CSSPlugin (and probably many other modules from that library) webpack chooses the AMD strategy and cannot find the "TweenLite" module at this line:
https://github.com/gr…
-
I use Label with TextBlockTextRenderer.
To fix this issue I call setRequiresRedraw(); in Label.as class:
```
/**
* @private
*/
protected function refreshTextRendererData():void
{
this.textRenderer.…
-
`Uncaught ReferenceError: moment is not defined` appears in the devTools console when I try to use moment within an html page via [atom-shell](https://github.com/atom/atom-shell)(node.js + chromium).
…
-
I'm having some issues trying to setup TweenLite & TimelineLite in my setup. Im using browserify and Im trying to require it like so
```
var TweenLite = require('./TweenLite.js')
var TimelineLite = …
-
Full disclosure. I am not a JavaScript guy. But ran into this error while building a development Environment.
ERROR in ./~/gsap/src/minified/easing/EasePack.min.js
Module not found: Error: Cannot res…
-
I'm trying to require TimelineLite and CSSPlugin in a webpack-based project. Here's the pattern that's causing me headaches:
```
if (typeof(define) === "function" && define.amd) { //AMD
d…
-
Hi guys,
I get some troubleshoot about how I should require the TweenMax & Easing function in webpack
I try to add this :
TweenMax: vendors+'greensock/uncompressed/TweenMax.js',
EasePack: vendors+'g…
-
I remember a conversation about defficiencies of the tweening system, expecially in regard of inability to control when a given tween is updated. Maybe a solution to this problem would be to add the a…
-
use GSAP throw this error;the old version V11 is OK!
Error: Error #1502: 脚本的执行时间已经超过了 15 秒的默认超时设置。
at com.greensock::TweenLite/_initProps()
at com.greensock::TweenLite/_init()
at com.gree…
-
TweenLite has a static function like this, and it would be good to have to avoid null object refs when something gets destroyed during its tween.
My question is, since this only affects VarTweens but…