home *** CD-ROM | disk | FTP | other *** search
/ Mobiclic 161 / MOBICLIC161.ISO / pc / DATA / EPP161 / EPP161_00 / A_EPP161_00 / MEDIA_02.swf / scripts / frame_1 / DoAction.as
Text File  |  2014-01-15  |  416b  |  14 lines

  1. var i = 1;
  2. while(i < 5)
  3. {
  4.    var gFmt = this["LM_02_0" + i].getTextFormat();
  5.    _root.gereTextes.afficheLM({mc:this,codeLM:"LM_02_0" + i});
  6.    var mctext = this["LM_02_0" + i].LM.texte;
  7.    var gFmt = mctext.getTextFormat();
  8.    gFmt.letterSpacing = 3;
  9.    mctext.setTextFormat(gFmt);
  10.    var dropShadow = new flash.filters.DropShadowFilter(2,45,0,50,0,0,100,3);
  11.    mctext.filters = [dropShadow];
  12.    i++;
  13. }
  14.