This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.number | |
{ | |
/** | |
* Get a random number between any two numbers. | |
* | |
* http://help.adobe.com/cs_CZ/AS2LCR/Flash_10.0/help.html?content=00001226.html | |
* | |
* @param p_start The first number. | |
* @param p_end The last number. | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.util | |
{ | |
import flash.geom.Point; | |
/** | |
* | |
* Just align an object (anyone with x&y properties) based on a Point instance. | |
* | |
* @param p_object Object to be aligned. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.display | |
{ | |
import flash.display.Shape; | |
import flash.display.Sprite; | |
import flash.display.Stage; | |
import flash.geom.Rectangle; | |
/** | |
* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.util | |
{ | |
import flash.events.Event; | |
import flash.events.IEventDispatcher; | |
public function dispatch( p_dispatcher : IEventDispatcher, p_event : Object ) : void | |
{ | |
if(p_event is String) { | |
p_dispatcher.dispatchEvent(new Event(p_event)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.display | |
{ | |
import flash.display.Bitmap; | |
import flash.text.TextField; | |
import flash.display.Stage; | |
import flash.display.BitmapData; | |
import flash.display.BitmapDataChannel; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.display | |
{ | |
import flash.display.Sprite; | |
import flash.geom.Rectangle; | |
import tea.util.isUnassigned; // https://gist.github.com/848476 | |
/** | |
* | |
* Easy way to create a visible rectangle with basic parameters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.util | |
{ | |
/** | |
* | |
* Easy way to check if a value is unassigned or not. | |
* | |
* @param p_value Value to check. | |
* @return True if the value is unassigned, false otherwise. | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.util | |
{ | |
import tea.util.isStandalone; | |
import flash.display.DisplayObjectContainer; | |
/** | |
* | |
* Easy way to check if the application is running online or locally. | |
* | |
* @param p_root Application root. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.display | |
{ | |
import flash.display.GradientType; | |
import flash.display.InterpolationMethod; | |
import flash.display.SpreadMethod; | |
import flash.display.Sprite; | |
import flash.geom.Matrix; | |
import flash.geom.Rectangle; | |
import flash.display.LineScaleMode; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package tea.util | |
{ | |
/** | |
* | |
* Easy way to set the same properties set for multiple items. | |
* | |
* @param p_items Items to be processed. | |
* @param p_properties Properties to be setted. | |
* |