home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 130 / MOBICLIC130.ISO / pc / DATA / HOTE / libs / LivreFeuilletable / LivreFeuilletable.swf / scripts / __Packages / LivreFeuilletable.as < prev   
Text File  |  2010-12-13  |  508b  |  23 lines

  1. class LivreFeuilletable extends MovieClip
  2. {
  3.    function LivreFeuilletable()
  4.    {
  5.       super();
  6.       trace("LivreFeuilletable " + this);
  7.       _global._LivreFeuilletable_ = this;
  8.    }
  9.    static function main(p)
  10.    {
  11.       p.mc.__proto__ = LivreFeuilletable.prototype;
  12.       p.mc.p = p;
  13.       LivreFeuilletable.apply(p.mc);
  14.    }
  15.    function CreerLivre(p)
  16.    {
  17.       trace("CreerLivre " + this);
  18.       p.pere = this;
  19.       var _loc2_ = new LivreComposant(p);
  20.       return _loc2_;
  21.    }
  22. }
  23.