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  
IAnimatable — Interface, package starling.animation
The IAnimatable interface describes objects that are animated depending on the passed time.
id — Property, class starling.events.Touch
The identifier of a touch.
id — Property, class starling.events.TouchData
The identifier of a touch.
IFilterHelper — Interface, package starling.filters
An interface describing the methods available on the helper object passed to the process call of fragment filters.
Image — class, package starling.display
An Image is a quad with a texture mapped onto it.
Image(texture:starling.textures:Texture) — Constructor, class starling.display.Image
Creates an image with a texture mapped onto it.
index — Property, class starling.text.BitmapCharLocation
The index of this char in the processed String.
indexBuffer — Property, class starling.rendering.Effect
The internally used index buffer used on rendering.
indexBufferSize — Property, class starling.rendering.Effect
The current size of the index buffer (in number of indices).
indexData — Property, class starling.display.Mesh
The index data describing how the vertices are interconnected.
indexData — Property, class starling.filters.FragmentFilter
The IndexData used to process the effect.
indexData — Property, class starling.styles.MeshStyle
Returns a reference to the index data of the assigned target (or null if there is no target).
IndexData — class, package starling.rendering
The IndexData class manages a raw list of vertex indices, allowing direct upload to Stage3D index buffers.
IndexData(initialCapacity:int) — Constructor, class starling.rendering.IndexData
Creates an empty IndexData instance with the given capacity (in indices).
indexID — Property, class starling.rendering.BatchToken
The ID of the next index within the current MeshBatch.
indexID — Property, class starling.utils.MeshSubset
The ID of the first index.
indexSizeInBytes — Property, class starling.rendering.IndexData
The number of bytes required for each index value.
initialize() — Static Method , class starling.utils.SystemUtil
Initializes the ACTIVATE/DEACTIVATE event handlers on the native application.
inner — Property, class starling.filters.DropShadowFilter
Indicates whether or not the shadow is an inner shadow.
inner — Property, class starling.filters.GlowFilter
Indicates whether or not the glow is an inner glow.
INSIDE — Constant Static Property, class starling.filters.CompositeMode
Draw layer on top of the destination using the destination's alpha value.
INSIDE_KNOCKOUT — Constant Static Property, class starling.filters.CompositeMode
Draw only the new layer (erasing the old), using the destination's alpha value.
instanceFromPool(char:starling.text:BitmapChar) — Static Method , class starling.text.BitmapCharLocation
Returns a "BitmapCharLocation" instance from the pool, initialized with the given char.
interactsWith(target:starling.display:DisplayObject) — method, class starling.events.TouchEvent
Indicates if a target is currently being touched or hovered over.
interpolate(startColor:uint, endColor:uint, ratio:Number) — Static Method , class starling.utils.Color
Calculates a smooth transition between one color to the next.
intersect(rect1:flash.geom:Rectangle, rect2:flash.geom:Rectangle, out:flash.geom:Rectangle) — Static Method , class starling.utils.RectangleUtil
Calculates the intersection between two Rectangles.
intersectLineWithXYPlane(pointA:flash.geom:Vector3D, pointB:flash.geom:Vector3D, out:flash.geom:Point) — Static Method , class starling.utils.MathUtil
Calculates the intersection point between the xy-plane and an infinite line that is defined by two 3D points in the same coordinate system.
invert() — method, class starling.filters.ColorMatrixFilter
Inverts the colors of the filtered object.
ioError — Event, class starling.utils.AssetManager
Dispatched when an URLLoader fails with an IO_ERROR while processing the queue.
IO_ERROR — Constant Static Property, class starling.events.Event
Event type that is dispatched by the AssetManager when a file/url cannot be loaded.
is3D — Property, class starling.display.DisplayObject
Indicates if this object or any of its parents is a 'Sprite3D' object.
is3D — Property, class starling.rendering.RenderState
Indicates if there have been any 3D transformations.
isAIR — Static Property, class starling.utils.SystemUtil
Indicates if the code is executed in an Adobe AIR runtime (true) or Flash plugin/projector (false).
isAndroid — Static Property, class starling.utils.SystemUtil
Indicates if the code is executed on an Android device, based on the platform string.
isApplicationActive — Static Property, class starling.utils.SystemUtil
Indicates if the application is currently active.
isAtfData(data:flash.utils:ByteArray) — Static Method , class starling.textures.AtfData
Checks the first 3 bytes of the data for the 'ATF' signature.
isCached — Property, class starling.filters.FragmentFilter
Indicates if the filter is cached (via the cache method).
isComplete — Property, class starling.animation.DelayedCall
Indicates if enough time has passed, and the call has already been executed.
isComplete — Property, class starling.animation.Tween
Indicates if the tween is finished.
isComplete — Property, class starling.display.MovieClip
Indicates if a (non-looping) movie has come to its end.
isConvex — Property, class starling.geom.Polygon
Indicates if the polygon is convex.
isCubeMap — Property, class starling.textures.AtfData
Indicates if the ATF data encodes a cube map.
isDefaultPrevented() — method, class starling.events.KeyboardEvent
Checks whether the preventDefault() method has been called on the event.
isDesktop — Static Property, class starling.utils.SystemUtil
Indicates if the code is executed on a Desktop computer with Windows, macOS or Linux operating system.
isEmbeddedFont(fontName:String, bold:Boolean, italic:Boolean, fontType:String) — Static Method , class starling.utils.SystemUtil
Figures out if an embedded font with the specified style is available.
isEquivalent(a:Number, b:Number, epsilon:Number) — Static Method , class starling.utils.MathUtil
Indicates if two float (Number) values are equal, give or take epsilon.
isFlat — Property, class starling.display.Sprite3D
If true, this 3D object contains only 2D content.
isHtmlText — Property, class starling.text.TextField
Indicates if text should be interpreted as HTML code.
isHtmlText — Property, class starling.text.TextOptions
Indicates if text should be interpreted as HTML code.
isIdentity(matrix:flash.geom:Matrix) — Static Method , class starling.utils.MatrixUtil
Determines if the matrix is an identity matrix.
isIdentity3D(matrix:flash.geom:Matrix3D) — Static Method , class starling.utils.MatrixUtil
Determines if the 3D matrix is an identity matrix.
isIOS — Static Property, class starling.utils.SystemUtil
Indicates if the code is executed on an iOS device, based on the platform string.
isLoading — Property, class starling.utils.AssetManager
Indicates if a queue is currently being loaded.
isMac — Static Property, class starling.utils.SystemUtil
Indicates if the code is executed on a Macintosh, based on the platform string.
isPersistent — Property, class starling.textures.RenderTexture
Indicates if the texture is persistent over multiple draw calls.
isPlaying — Property, class starling.display.MovieClip
Indicates if the clip is still playing.
isPointInTriangle(p:flash.geom:Point, a:flash.geom:Point, b:flash.geom:Point, c:flash.geom:Point) — Static Method , class starling.utils.MathUtil
Calculates if the point p is inside the triangle a-b-c.
isPotTexture — Property, class starling.textures.ConcreteTexture
Indicates if the base texture is a standard power-of-two dimensioned texture of type flash.display3D.textures.Texture.
isRegistered(modeName:String) — Static Method , class starling.display.BlendMode
Returns true if a blend mode with the given name is available.
isSimple — Property, class starling.geom.Polygon
Indicates if the polygon's line segments are not self-intersecting.
isStarted — Property, class starling.core.Starling
Indicates if this Starling instance is started.
isTouching(target:starling.display:DisplayObject) — method, class starling.events.Touch
Indicates if the target or one of its children is touched.
isValid(state:String) — Static Method , class starling.display.ButtonState
Indicates whether the given state string is valid.
isValid(smoothing:String) — Static Method , class starling.textures.TextureSmoothing
Determines whether a smoothing value is valid.
isValid(align:String) — Static Method , class starling.utils.Align
Indicates whether the given alignment string is valid.
isValid(scaleMode:String) — Static Method , class starling.utils.ScaleMode
Indicates whether the given scale mode string is valid.
isValidHorizontal(align:String) — Static Method , class starling.utils.Align
Indicates if the given string is a valid horizontal alignment.
isValidVertical(align:String) — Static Method , class starling.utils.Align
Indicates if the given string is a valid vertical alignment.
isWindows — Static Property, class starling.utils.SystemUtil
Indicates if the code is executed on Windows, based on the platform string.
italic — Property, class starling.text.TextFormat
Indicates whether the text is italicized.
ITextCompositor — Interface, package starling.text
A text compositor arranges letters for Starling's TextField.
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