Jump to content
Search Community

prototype

Members
  • Posts

    2
  • Joined

  • Last visited

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

prototype's Achievements

0

Reputation

  1. Thanks, Jack! That cured it. For others who may encounter this, also make sure to import the Class. import com.greensock.OverwriteManager; OverwriteManager.init(2);
  2. I'm trying to do a simple alpha fade for a banner ad. It works when I use TweenMax but nothing when I use TweenLite (no errors thrown). I must be overlooking something. com folder (AS3) is in Flash root folder. Flash export v9 and AS3. import com.greensock.*; import com.greensock.easing.*; this.save_mc.alpha = 0; TweenLite.to(this.save_mc, 0.25, {alpha:1, ease:Quad.easeOut}); TweenLite.to(this.save_mc, 0.25, {alpha:0, ease:Quad.easeOut, delay:2}); If I change Lite to Max it works but adds about 13kb to file size.
×
×
  • Create New...