Jump to content
Search Community

Axorr

Members
  • Posts

    2
  • Joined

  • Last visited

Posts posted by Axorr

  1. A-yup! The com directory (and all the goodies in it) is in the same root directory as the .fla I am playing with.

    I DL'd the AS3 version 11 code.

     

    I have gone through the getting started page, that's where I first found the errant code in the tutorial I was attempting!

  2. I am attempting a short little tut to get a little taste of TweenMax.

     

    I am unable to get the import functions to work.

    The original tutorial code was;

     

    //Import TweenMax

    import gs.*;

    import gs.plugins.*;

    TweenPlugin.activate([blurFilterPlugin]);

     

     

    Reading around these fine forums, I found that the newer, correct way to make this call is now;

     

    //Import TweenMax

    import com.greensock.*;

    import com.greensock.plugins.*;

    TweenPlugin.activate([blurFilterPlugin]);

     

     

    However, when using the code above, I get the following compiler errors.

     

    1172: Definition com.greensock could not be found.

    1172: Definition com.greensock.plugins could not be found.

    1172: Definition com.greensock could not be found.

    1172: Definition com.greensock.plugins could not be found.

    1120: Access of undefined property TweenMax.

    1120: Access of undefined property TweenPlugin.

    1120: Access of undefined property BlurFilterPlugin.

    1120: Access of undefined property TweenMax.

     

     

    Any thoughts? This is with AS3.

×
×
  • Create New...