| A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |
| GarbageCollector — Final class in package net.guttershark.util |
|
The GarbageCollector class forces the garbage collector to run. |
| gateway — Property in class net.guttershark.support.servicemanager.remoting.RemotingConnection |
|
The gateway URL. |
| getAbsoluteGridDistance(p:net.guttershark.util.geom:Point) — Method in class net.guttershark.util.geom.Point |
|
Algo to give the grid based distance when only vertical & horizontal moves are allowed. |
| getAbsoluteGridDistanceAllowDiagonals(p:net.guttershark.util.geom:Point) — Method in class net.guttershark.util.geom.Point |
|
Algo to give the grid based distance when diagonal moves are allowed
by finding math.min of the differences, we're figuring out how many moves can be diagonal ones. |
| getAngle(p1:net.guttershark.util.geom:Point, p2:net.guttershark.util.geom:Point) — Method in class net.guttershark.util.MathUtils |
|
Get the angle from two points. |
| getAngle(p:net.guttershark.util.geom:Point) — Method in class net.guttershark.util.geom.Point |
|
Get the angle degree between this point and a second point. |
| getArea() — Method in class net.guttershark.util.geom.Dimension |
|
Returns the area of this Dimension. |
| getARGB(rgb) — Method in class net.guttershark.util.ColorUtils |
|
Get the ARGB values. |
| getAsset(libraryName) — Method in class net.guttershark.managers.AssetManager |
|
A generic method to get any asset from the library. |
| getAssetByLibraryName(libraryName, prependSourcePath) — Method in class net.guttershark.model.Model |
|
Get an Asset instance by the library name. |
| getAssetsForPreload() — Method in class net.guttershark.model.Model |
|
Returns an array of Asset instances from the assets node,
that has a "preload" attribute set to true (preload='true'). |
| getAttribute(attributeID) — Method in class net.guttershark.model.Model |
|
Get the value from an attribute node. |
| getBitmap(libraryName) — Method in class net.guttershark.managers.AssetManager |
|
Get a loaded asset as a Bitmap. |
| getBitmapFromSWFLibrary(libraryName, bitmapLinkageId) — Method in class net.guttershark.managers.AssetManager |
|
Get a Bitmap from a swf library. |
| getCachedObject(key) — Method in class net.guttershark.util.cache.Cache |
|
Get's a cached Object. |
| getClassFromSWFLibrary(libraryName, classNameInLibrary) — Method in class net.guttershark.managers.AssetManager |
|
Get a Class reference from a swf library. |
| getColor(src, x, y, getAlpha) — Method in class net.guttershark.util.ColorUtils |
|
Return the (A)RGB hexadecimal color value of a DisplayObject. |
| getContentById(id) — Method in class net.guttershark.model.Model |
|
Get's a piece of content from the content node in xml. |
| getDay(n) — Method in class net.guttershark.util.DateUtils |
|
Get the day name by day number. |
| getDistance(p:net.guttershark.util.geom:Point) — Method in class net.guttershark.util.geom.Point |
|
Get the distance between two points. |
| getDivisors(n) — Method in class net.guttershark.util.MathUtils |
|
Return an array of divisors of the integer. |
| getFilterIndex(target, filter) — Method in class net.guttershark.util.filters.FilterUtils |
|
Finds the last index of a filter and returns that index, or -1 if not found. |
| getFilterTypeIndex(target, filterType) — Method in class net.guttershark.util.filters.FilterUtils |
|
Finds the last index of a filter type, and returns that index, or -1 if not found. |
| getFLV(libraryName) — Method in class net.guttershark.managers.AssetManager |
|
Get an flv instance. |
| getFontFromSWFLibrary(libraryName, fontLinkageId) — Method in class net.guttershark.managers.AssetManager |
|
Get an embedded Font from a SWF library. |
| getHoursAmPm(hour24) — Method in class net.guttershark.util.DateUtils |
|
Takes 24hr hours and converts to 12 hour with am/pm. |
| getHSLComponent(src, x, y) — Method in class net.guttershark.util.ColorUtils |
|
Get the HSL components from a DisplayObject. |
| getHSVComponent(src, x, y) — Method in class net.guttershark.util.ColorUtils |
|
Get the HSV components from a DisplayObject. |
| getIterator() — Method in class net.guttershark.util.collections.ArrayCollection |
|
Returns an IIterator which traverses the items in the collection
starting at index 0, and going to index length-1. |
| getIterator() — Method in class net.guttershark.util.collections.ArrayStack |
|
Returns an iterate which iterates over the items as they would
be returned by subsequent calls to pop. |
| getIterator() — Method in class net.guttershark.util.collections.DisplayListCollection |
|
The iterator used to handle going through the collection. |
| getIterator() — Method in class net.guttershark.util.collections.DisplayListStack |
|
The iterator used to handle going through the collection. |
| getIterator() — Method in interface net.guttershark.util.collections.ICollection |
|
The iterator used to handle going through the collection. |
| getLink(id) — Method in class net.guttershark.model.Model |
|
Creates and returns a URLRequest from a link node. |
| getLinkWindow(id) — Method in class net.guttershark.model.Model |
|
Get the window attribute value on a link node. |
| getMonth(n) — Method in class net.guttershark.util.DateUtils |
|
Get the month name by month number. |
| getMovieClipFromSWFLibrary(libraryName, classNameInLibrary) — Method in class net.guttershark.managers.AssetManager |
|
Get a movie clip from a swf library. |
| getNetStream(libraryName) — Method in class net.guttershark.managers.AssetManager |
|
Get a net stream that was used to load an flv. |
| getObject() — Method in class net.guttershark.util.collections.Allocator |
|
Retrieve an object from the Allocator cache or create a
new object if the current cache has been exhausted. |
| getObject() — Method in interface net.guttershark.util.collections.IAllocator |
|
Retrieves an object from the cache. |
| getPath(... rest) — Method in class net.guttershark.model.Model |
|
Get a path concatenated from the given pathIds - if ExternalInterface is
available, it uses the guttershark javascript api. |
| getPointFromDistanceAndAngle(centerPoint:net.guttershark.util.geom:Point, dist, angle) — Method in class net.guttershark.util.MathUtils |
|
Get new point based on distance and angle from a given point. |
| getProperty(name) — Method in class net.guttershark.util.QueryString |
|
Read a property from deeplink data. |
| getRadian(p1:net.guttershark.util.geom:Point, p2:net.guttershark.util.geom:Point) — Method in class net.guttershark.util.MathUtils |
|
Get the radian from two points. |
| getRGBComponent(src, x, y) — Method in class net.guttershark.util.ColorUtils |
|
Get the RGB components from a DisplayObject. |
| getService(id) — Method in class net.guttershark.managers.ServiceManager |
|
Get's a service from the internal dictionary of services. |
| getShortDay(n) — Method in class net.guttershark.util.DateUtils |
|
Get the short day name by day number. |
| getShortMonth(n) — Method in class net.guttershark.util.DateUtils |
|
Get the short month name by month number. |
| getSoftShadowFilter() — Method in class net.guttershark.util.filters.FilterUtils |
|
Return a default DropShadowFilter. |
| getSound(libraryName) — Method in class net.guttershark.managers.AssetManager |
|
Get a Sound asset. |
| getSoundFromSWFLibrary(libraryName, soundLinkageId) — Method in class net.guttershark.managers.AssetManager |
|
Get a Sound from a swf library
|
| getSpriteFromSWFLibrary(libraryName, classNameInLibrary) — Method in class net.guttershark.managers.AssetManager |
|
Get a sprite from a swf library. |
| getStyleSheet(libraryName) — Method in class net.guttershark.managers.AssetManager |
|
Get a StyleSheet object that was preloaded from a css file. |
| getStyleSheetById(id) — Method in class net.guttershark.model.Model |
|
Get a StyleSheet object by the node id. |
| getSWF(libraryName) — Method in class net.guttershark.managers.AssetManager |
|
Get a SWF asset from the library. |
| getTextForID(textID) — Method in class net.guttershark.managers.LanguageManager |
|
Get the text associated with an id in the current selected language
xml file. |
| getTextFormatById(id) — Method in class net.guttershark.model.Model |
|
Get a TextFormat object by the node id. |
| getTotalDaysInMonth(year, month) — Method in class net.guttershark.util.DateUtils |
|
Return the number of days in a specific month. |
| getTotalDaysInYear(year) — Method in class net.guttershark.util.DateUtils |
|
Returns the number of days in a specific year. |
| getTransform(src) — Method in class net.guttershark.util.ColorUtils |
|
Returns the transform value set by the last setTransform() call. |
| GetWorkerInstance(fileType) — Static method in class net.guttershark.support.preloading.workers.WorkerInstances |
|
Get an instance of the worker specified by type. |
| getXML(libraryName) — Method in class net.guttershark.managers.AssetManager |
|
Get an XML asset. |
| getZDistance(p1:net.guttershark.util.geom:Point3D, p2:net.guttershark.util.geom:Point3D) — Method in class net.guttershark.util.MathUtils |
|
Get z distance between two Point3D instances. |
| getZDistance(p:net.guttershark.util.geom:Point3D) — Method in class net.guttershark.util.geom.Point3D |
|
Get Z distance between two points. |
| gi() — Static method in class net.guttershark.managers.AssetManager |
|
Singleton Instance. |
| gi() — Static method in class net.guttershark.managers.EventManager |
|
Singleton access. |
| gi() — Static method in class net.guttershark.managers.KeyManager |
|
Singleton Instance. |
| gi() — Static method in class net.guttershark.managers.LanguageManager |
|
Singleton Access. |
| gi() — Static method in class net.guttershark.managers.ServiceManager |
|
Singleton access. |
| gi() — Static method in class net.guttershark.managers.SoundManager |
|
Singleton access. |
| gi() — Static method in class net.guttershark.model.Model |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.ArrayUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.Assertions |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.BitmapUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.ColorUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.DateUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.DictionaryUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.DisplayListUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.FlashLibrary |
|
Singleton access
|
| gi() — Static method in class net.guttershark.util.JSFLProxy |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.MathUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.MouseUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.ObjectUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.PlayerUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.ScopeUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.SetterUtils |
|
Singleton access. |
| gi(clazz, ... rest) — Static method in class net.guttershark.util.Singleton |
|
Get an instance of a class, and cancel any parent classes. |
| gi() — Static method in class net.guttershark.util.StringUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.TextFieldUtils |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.Utilities |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.cache.DescribeTypeCache |
|
Singleton access. |
| gi() — Static method in class net.guttershark.util.filters.FilterUtils |
|
Singleton access. |
| GIGABIT — Constant property in class net.guttershark.util.MathUtils |
|
Gigabit value. |
| gigabit2bit(n) — Method in class net.guttershark.util.MathUtils |
|
Convert gigabit to bits. |
| GIGABYTE — Constant property in class net.guttershark.util.MathUtils |
|
Gigabyte value. |
| gigabyte2bit(n) — Method in class net.guttershark.util.MathUtils |
|
Convert gigabytes to bits. |
| glimpse() — Method in class net.guttershark.util.collections.ArrayBidirectionalIterator |
|
Return a glimple of the previous element without
directionally iterating the pointer backwards, or return
null if none. |
| glimpse() — Method in class net.guttershark.util.collections.ArrayLoopableIterator |
|
Return a glimple of the previous element without
directionally iterating the pointer backwards. |
| glimpse() — Method in interface net.guttershark.util.collections.IBidirectionalIterator |
|
Returns the previous item in the collection without moving to it. |
| gotoStartFrame() — Method in class net.guttershark.control.Frame1Controller |
|
A method you can override to control which frame to gotoAndStop
after the swf has completely downloaded - that frame should be
the application start frame, the default frame is 2. |
| greater(value, minimum, message, exceptionType) — Method in class net.guttershark.util.Assertions |
|
Assert that a value is greater than a minimum number. |
|
| A B C D E F G H I J K L M N O P Q R S T U V W X Y Z |