home *** CD-ROM | disk | FTP | other *** search
/ Ice Age Fan CD 1 / CD1_Scrat.iso / flash / data / game.swf / scripts / com / google / analytics / debug / SuccessAlert.as < prev    next >
Encoding:
Text File  |  2012-07-04  |  669 b   |  22 lines

  1. package com.google.analytics.debug
  2. {
  3.    public class SuccessAlert extends Alert
  4.    {
  5.       public function SuccessAlert(param1:DebugConfiguration, param2:String, param3:Array)
  6.       {
  7.          var _loc4_:Align = Align.bottomLeft;
  8.          var _loc5_:Boolean = true;
  9.          var _loc6_:Boolean = false;
  10.          if(param1.verbose)
  11.          {
  12.             param2 = "<u><span class=\"uiAlertTitle\">Success</span>" + spaces(18) + "</u>\n\n" + param2;
  13.             _loc4_ = Align.center;
  14.             _loc5_ = false;
  15.             _loc6_ = true;
  16.          }
  17.          super(param2,param3,"uiSuccess",Style.successColor,_loc4_,_loc5_,_loc6_);
  18.       }
  19.    }
  20. }
  21.  
  22.