Share Posted August 4, 2011 i'm getting a Error #1069: Property skewY2 not found error... i've activated the plugin: TweenPlugin.activate( [ TransformMatrixPlugin ] ); also the OverwriteManager.init( OverwriteManager.CONCURRENT ); isn't working properly... i have the most recent version... is there any problem with the latest build? what else could be going wrong? thanks Link to comment Share on other sites More sharing options...
Author Share Posted August 4, 2011 just in case there was something somewhere else in the app that was screwing things up, i decided to run a test in a new fla with nothing else... so i just put the following on the timeline... import com.greensock.*; import com.greensock.easing.*; import com.greensock.plugins.*; import com.greensock.OverwriteManager; TweenPlugin.activate( [ TransformMatrixPlugin ] ); OverwriteManager.init( OverwriteManager.CONCURRENT ); TweenLite.to( this.mc, 0.5, { skewY2:-50 } ); TweenLite.to( this.mc, 0.5, { scaleX:0.5 } ); the OverwriteManager worked, but still no skew... i even deleted all the aso files and tried an earlier gs package... i feel like i must missing something obvious? can i activate all plugins at once to test? thanks Link to comment Share on other sites More sharing options...
Author Share Posted August 4, 2011 yeah, i was missing something simple... transformMatrix:{} but the strange thing is, i have code in an older project that works without the transformMatrix object... it uses skewY just like any other var... how is that? Link to comment Share on other sites More sharing options...
Share Posted August 4, 2011 yeah, i was missing something simple... transformMatrix:{} but the strange thing is, i have code in an older project that works without the transformMatrix object... it uses skewY just like any other var... how is that? The only thing I can think of is that your old project was tweening a TweenProxy object (TweenProxy is a GreenSock class that added skewing capabilities to DisplayObjects/MovieClips). There is no skewX/skewY or skewX2/skewY2 property on DisplayObjects/MovieClips/Sprites normally. But yeah, TransformMatrixPlugin adds that capability easily Glad you figured it out. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now