Guest User

Untitled

a guest
Dec 4th, 2018
164
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. package {
  2.     import flash.display.MovieClip;
  3.  
  4.     public class c30 extends MovieClip{
  5.        
  6.         public function c30() {
  7.             //nao sei se tenho de trocar este "Banner1 Local"
  8.             trace("Banner1 Local");
  9.             //Don't start direct.
  10.             stop( );
  11.         }
  12.  
  13.         public function start():void {
  14.             //Call from the Multi banner. Now it's time to start this banner.
  15.             play( );   
  16.         }
  17.  
  18.         public function reset():void {
  19.             //The multi banner is moving on to next banner so we have to reset this banner.
  20.             gotoAndStop( 1 );
  21.         }
  22.     }
  23. }
Add Comment
Please, Sign In to add comment