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 / SavedStylesUI.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  911 b   |  40 lines

  1. package com.livebrush.ui
  2. {
  3.    import fl.controls.TextInput;
  4.    import flash.display.SimpleButton;
  5.    import flash.display.Sprite;
  6.    import flash.text.TextField;
  7.    
  8.    [Embed(source="/_assets/assets.swf", symbol="symbol375")]
  9.    public dynamic class SavedStylesUI extends Sprite
  10.    {
  11.       public var upBtn:SimpleButton;
  12.       
  13.       public var importBtn:SimpleButton;
  14.       
  15.       public var removeBtn:SimpleButton;
  16.       
  17.       public var exportBtn:SimpleButton;
  18.       
  19.       public var downBtn:SimpleButton;
  20.       
  21.       public var _styleList:RichListUI;
  22.       
  23.       public var previewBtn:SimpleButton;
  24.       
  25.       public var label:TextField;
  26.       
  27.       public var styleName:TextInput;
  28.       
  29.       public var dupBtn:SimpleButton;
  30.       
  31.       public var saveBtn:SimpleButton;
  32.       
  33.       public function SavedStylesUI()
  34.       {
  35.          super();
  36.       }
  37.    }
  38. }
  39.  
  40.