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 / SamplePropsController.as < prev    next >
Encoding:
Text File  |  2009-10-26  |  732 b   |  34 lines

  1. package com.livebrush.ui
  2. {
  3.    import flash.display.Sprite;
  4.    import flash.events.MouseEvent;
  5.    
  6.    public class SamplePropsController extends UIController
  7.    {
  8.       public function SamplePropsController(ui:SamplePropsView)
  9.       {
  10.          super(this.samplePropsView);
  11.          this.init();
  12.       }
  13.       
  14.       override protected function init() : void
  15.       {
  16.       }
  17.       
  18.       private function get samplePropsView() : SamplePropsView
  19.       {
  20.          return SamplePropsView(view);
  21.       }
  22.       
  23.       private function get uiAsset() : Sprite
  24.       {
  25.          return this.samplePropsView.uiAsset;
  26.       }
  27.       
  28.       private function mouseEvent(e:MouseEvent) : void
  29.       {
  30.       }
  31.    }
  32. }
  33.  
  34.