home *** CD-ROM | disk | FTP | other *** search
/ PCGUIA 2010 Software/Programs / PCGuia_programas.iso / Software / Utils / Livebrush / Install-LivebrushLite.air / livebrush.swf / scripts / com / livebrush / ui / SaveImageUI.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  2.5 KB  |  99 lines

  1. package com.livebrush.ui
  2. {
  3.    import adobe.utils.*;
  4.    import fl.controls.Button;
  5.    import fl.controls.ComboBox;
  6.    import flash.accessibility.*;
  7.    import flash.data.*;
  8.    import flash.desktop.*;
  9.    import flash.display.*;
  10.    import flash.errors.*;
  11.    import flash.events.*;
  12.    import flash.external.*;
  13.    import flash.filesystem.*;
  14.    import flash.filters.*;
  15.    import flash.geom.*;
  16.    import flash.html.*;
  17.    import flash.media.*;
  18.    import flash.net.*;
  19.    import flash.printing.*;
  20.    import flash.profiler.*;
  21.    import flash.sampler.*;
  22.    import flash.security.*;
  23.    import flash.system.*;
  24.    import flash.text.*;
  25.    import flash.ui.*;
  26.    import flash.utils.*;
  27.    import flash.xml.*;
  28.    
  29.    [Embed(source="/_assets/assets.swf", symbol="symbol437")]
  30.    public dynamic class SaveImageUI extends Sprite
  31.    {
  32.       public var okBtn:Button;
  33.       
  34.       public var cancelBtn:Button;
  35.       
  36.       public var message:TextField;
  37.       
  38.       public var sizeList:ComboBox;
  39.       
  40.       public function SaveImageUI()
  41.       {
  42.          super();
  43.          this.__setProp_cancelBtn_SaveImageUI_Layer1_0();
  44.          this.__setProp_okBtn_SaveImageUI_Layer1_0();
  45.       }
  46.       
  47.       internal function __setProp_okBtn_SaveImageUI_Layer1_0() : *
  48.       {
  49.          try
  50.          {
  51.             this.okBtn["componentInspectorSetting"] = true;
  52.          }
  53.          catch(e:Error)
  54.          {
  55.          }
  56.          this.okBtn.emphasized = false;
  57.          this.okBtn.enabled = true;
  58.          this.okBtn.label = "SAVE";
  59.          this.okBtn.labelPlacement = "right";
  60.          this.okBtn.selected = false;
  61.          this.okBtn.toggle = false;
  62.          this.okBtn.visible = true;
  63.          try
  64.          {
  65.             this.okBtn["componentInspectorSetting"] = false;
  66.          }
  67.          catch(e:Error)
  68.          {
  69.          }
  70.       }
  71.       
  72.       internal function __setProp_cancelBtn_SaveImageUI_Layer1_0() : *
  73.       {
  74.          try
  75.          {
  76.             this.cancelBtn["componentInspectorSetting"] = true;
  77.          }
  78.          catch(e:Error)
  79.          {
  80.          }
  81.          this.cancelBtn.emphasized = false;
  82.          this.cancelBtn.enabled = true;
  83.          this.cancelBtn.label = "CANCEL";
  84.          this.cancelBtn.labelPlacement = "right";
  85.          this.cancelBtn.selected = false;
  86.          this.cancelBtn.toggle = false;
  87.          this.cancelBtn.visible = true;
  88.          try
  89.          {
  90.             this.cancelBtn["componentInspectorSetting"] = false;
  91.          }
  92.          catch(e:Error)
  93.          {
  94.          }
  95.       }
  96.    }
  97. }
  98.  
  99.