![]() | ![]() |
Distributed under MIT Open Source License, see Fuse-Kit-License.html (in fuse package directory) Easing Equations (c) 2003 Robert Penner used by permission, see PennerEasing Visit http://www.mosessupposes.com/Fuse
Shared class for common variables and error messages, also provides an easy way to extend the Kit for use with logging programs.
Definition at line 15 of file FuseKitCommon.as.
Static Public Member Functions | |
| static function | _cts () |
| static function | _underscoreable () |
| static function | _cbprops () |
| static function | _fuseprops () |
| static function | output (s:String) |
| static function | error (errorCode:String) |
Static Public Attributes | |
| static var | VERSION:String = 'Fuse Kit 2.0 Copyright (c) 2006 Moses Gunesch |
| static var MosesSupposes.com under MIT Open Source | License |
| static var | VERBOSE:Boolean = true |
| static var | logOutput:Function |
| static var | ALL:String = 'ALL' |
| static var | ALLCOLOR:String = 'ALLCOLOR' |
| static function com.mosesSupposes.fuse.FuseKitCommon._cts | ( | ) | [static] |
Internal use only. A shared variable that lists color keywords in a pipe-delimited string.
Definition at line 56 of file FuseKitCommon.as.
| static function com.mosesSupposes.fuse.FuseKitCommon._underscoreable | ( | ) | [static] |
Internal use only. A shared variable that lists auto-underscoreable action-object property keywords in a pipe-delimited string.
Definition at line 62 of file FuseKitCommon.as.
| static function com.mosesSupposes.fuse.FuseKitCommon._cbprops | ( | ) | [static] |
Internal use only. A shared variable that lists parseable ZigoEngine callback keywords in a pipe-delimited string.
Definition at line 68 of file FuseKitCommon.as.
| static function com.mosesSupposes.fuse.FuseKitCommon._fuseprops | ( | ) | [static] |
Internal use only. A shared variable that lists Fuse-specific action-object property keywords in a pipe-delimited string.
Definition at line 74 of file FuseKitCommon.as.
| static function com.mosesSupposes.fuse.FuseKitCommon.output | ( | s:String | ) | [static] |
Internal; left public to enable overwriting with a more custom method if needed for custom logging. Currently it simply either calls trace or logOutput with the message string based on whether logOutput has been user-defined.
Definition at line 81 of file FuseKitCommon.as.
| static function com.mosesSupposes.fuse.FuseKitCommon.error | ( | errorCode:String | ) | [static] |
Internal: See this method in the class file for all normal output-level errors/warnings. Set VERBOSE to false for shortform (error-code-only) messages.
Definition at line 95 of file FuseKitCommon.as.
var com.mosesSupposes.fuse.FuseKitCommon.VERSION [static] |
Enables kit version to be retrieved at runtime or when reviewing a decompiled swf.
Definition at line 20 of file FuseKitCommon.as.
var MosesSupposes.com under MIT Open Source com.mosesSupposes.fuse.FuseKitCommon.License [static] |
Definition at line 20 of file FuseKitCommon.as.
var com.mosesSupposes.fuse.FuseKitCommon.VERBOSE [static] |
Set to false for shortform (error-code-only) responses. Note that com.mosesSupposes.fuse.ZigoEngine#OUTPUT_LEVEL and com.mosesSupposes.fuse.Fuse#OUTPUT_LEVEL properties can be set to 0 for no output, 1 for normal, 2 for additional info, and in Fuse 3 for additional FuseItem output.
To lower filesize check "omit trace actions" in Publish Settings on final publish (trace can also be removed from compile in MTASC).
Definition at line 28 of file FuseKitCommon.as.
var com.mosesSupposes.fuse.FuseKitCommon.logOutput [static] |
To extend this class to use a logger, set this property to a custom method of your own. FuseKitCommon.logOutput = function(s:String):Void { ... };
Definition at line 34 of file FuseKitCommon.as.
var com.mosesSupposes.fuse.FuseKitCommon.ALL [static] |
Constant: String "ALL". Used with ZigoEngine in methods like removeTween, rewTween, etc.
Definition at line 40 of file FuseKitCommon.as.
var com.mosesSupposes.fuse.FuseKitCommon.ALLCOLOR [static] |
Constant: String "ALLCOLOR". Used with ZigoEngine in methods like removeTween, rewTween, etc.
Definition at line 45 of file FuseKitCommon.as.
1.5.2