1  /**
     2   * com.sekati.display.LiquidHClip
     3   * @version 1.0.5
     4   * @author jason m horwitz | sekati.com | tendercreative.com
     5   * Copyright (C) 2007  jason m horwitz, Sekat LLC. All Rights Reserved.
     6   * Released under the MIT License: http://www.opensource.org/licenses/mit-license.php
     7   */
     8  
     9  import com.sekati.display.LiquidClip;
    10  
    11  /**
    12   * LiquidHClip - scale clip to Stage.height
    13   */
    14  class com.sekati.display.LiquidHClip extends LiquidClip {
    15  
    16  	private var _liquid:MovieClip;
    17  
    18  	/**
    19  	 * Constructor
    20  	 */
    21  	public function LiquidHClip() {
    22  		super( );
    23  		_liquid = _this;
    24  	}
    25  
    26  	/**
    27  	 * Scales ({@code _liquid = this; // default can be overriden by subclass}) to Stage.height.
    28  	 * @return Void
    29  	 */
    30  	public function _onResize():Void {
    31  		_liquid._height = Stage.height;
    32  	}	
    33  }