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 / QuestionDialogUI.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  2.4 KB  |  96 lines

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