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 / PenPropsUI.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  3.2 KB  |  124 lines

  1. package com.livebrush.ui
  2. {
  3.    import adobe.utils.*;
  4.    import fl.controls.CheckBox;
  5.    import fl.controls.ColorPicker;
  6.    import fl.controls.RadioButton;
  7.    import flash.accessibility.*;
  8.    import flash.data.*;
  9.    import flash.desktop.*;
  10.    import flash.display.*;
  11.    import flash.errors.*;
  12.    import flash.events.*;
  13.    import flash.external.*;
  14.    import flash.filesystem.*;
  15.    import flash.filters.*;
  16.    import flash.geom.*;
  17.    import flash.html.*;
  18.    import flash.media.*;
  19.    import flash.net.*;
  20.    import flash.printing.*;
  21.    import flash.profiler.*;
  22.    import flash.sampler.*;
  23.    import flash.security.*;
  24.    import flash.system.*;
  25.    import flash.text.*;
  26.    import flash.ui.*;
  27.    import flash.utils.*;
  28.    import flash.xml.*;
  29.    
  30.    [Embed(source="/_assets/assets.swf", symbol="symbol325")]
  31.    public dynamic class PenPropsUI extends Sprite
  32.    {
  33.       public var percentInput:PropInputHorizontal;
  34.       
  35.       public var scaleHead:MovieClip;
  36.       
  37.       public var alphaInput:PropInputHorizontal;
  38.       
  39.       public var yInput:PropInputVertical;
  40.       
  41.       public var toolHead:MovieClip;
  42.       
  43.       public var scale:RadioButton;
  44.       
  45.       public var rotate:RadioButton;
  46.       
  47.       public var scaleXInput:PropInputVertical;
  48.       
  49.       public var colorHead:MovieClip;
  50.       
  51.       public var resetColorBtn:SimpleButton;
  52.       
  53.       public var color:ColorPicker;
  54.       
  55.       public var rotationInput:PropInputVertical;
  56.       
  57.       public var xInput:PropInputVertical;
  58.       
  59.       public var constrain:CheckBox;
  60.       
  61.       public var scaleYInput:PropInputVertical;
  62.       
  63.       public var resetTransformBtn:SimpleButton;
  64.       
  65.       public function PenPropsUI()
  66.       {
  67.          super();
  68.          this.__setProp_scale_PenToolProps_tabcontentholder_0();
  69.          this.__setProp_rotate_PenToolProps_tabcontentholder_0();
  70.       }
  71.       
  72.       internal function __setProp_rotate_PenToolProps_tabcontentholder_0() : *
  73.       {
  74.          try
  75.          {
  76.             this.rotate["componentInspectorSetting"] = true;
  77.          }
  78.          catch(e:Error)
  79.          {
  80.          }
  81.          this.rotate.enabled = true;
  82.          this.rotate.groupName = "transformType";
  83.          this.rotate.label = "Label";
  84.          this.rotate.labelPlacement = "right";
  85.          this.rotate.selected = false;
  86.          this.rotate.value = "";
  87.          this.rotate.visible = true;
  88.          try
  89.          {
  90.             this.rotate["componentInspectorSetting"] = false;
  91.          }
  92.          catch(e:Error)
  93.          {
  94.          }
  95.       }
  96.       
  97.       internal function __setProp_scale_PenToolProps_tabcontentholder_0() : *
  98.       {
  99.          try
  100.          {
  101.             this.scale["componentInspectorSetting"] = true;
  102.          }
  103.          catch(e:Error)
  104.          {
  105.          }
  106.          this.scale.enabled = true;
  107.          this.scale.groupName = "transformType";
  108.          this.scale.label = "Label";
  109.          this.scale.labelPlacement = "right";
  110.          this.scale.selected = true;
  111.          this.scale.value = "";
  112.          this.scale.visible = true;
  113.          try
  114.          {
  115.             this.scale["componentInspectorSetting"] = false;
  116.          }
  117.          catch(e:Error)
  118.          {
  119.          }
  120.       }
  121.    }
  122. }
  123.  
  124.