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  
fillColor — Property in class com.flashdynamix.motion.effects.core.DissolveEffect
The color used to fill for pixels when the source and dissolve BitmapData are the same.
filter — Property in class com.flashdynamix.motion.effects.core.FilterEffect
The BitmapFilter to apply onto the BitmapData.
_filter — Property in class com.flashdynamix.motion.plugins.FilterTween
FilterEffect — Class in package com.flashdynamix.motion.effects.core
Applies a BitmapFilter to a BitmapData
FilterEffect(filter) — Constructor in class com.flashdynamix.motion.effects.core.FilterEffect
filterList — Property in class com.flashdynamix.motion.plugins.FilterTween
filterTo(instance, filter, to, duration, ease, delayStart) — Method in class com.flashdynamix.motion.TweensyGroup
This method provides a handy method to do the common task of a tweening BitmapFilter properties and applying them to a DisplayObject instance.
This is equivalent to : tween.to(new DropShadowFilter(), {alpha:1}, 0.5, null, 0, instance);
FilterTween — Class in package com.flashdynamix.motion.plugins
This plugin will be used when tweening BitmapFilters.
FilterTween() — Constructor in class com.flashdynamix.motion.plugins.FilterTween
finished — Property in class com.flashdynamix.motion.TweensyTimeline
Determines whether or not the TweensyTimeline animation has finished.
fl.motion.easing — Package
floorArea — Property in class com.flashdynamix.motion.effects.ReflectEffect
focalPointRatio — Property in class com.flashdynamix.motion.vectors.Gradient
A number that controls the location of the focal point of the gradient.
0 means that the focal point is in the center.
1 means that the focal point is at one border of the gradient circle.
-1 means that the focal point is at the other border of the gradient circle.
A value less than -1 or greater than 1 is rounded to -1 or 1.
fpsList — Static property in class com.flashdynamix.utils.SWFProfiler
fractalNoise — Property in class com.flashdynamix.motion.effects.PerlinDisplacementEffect
If the value is true, the method generates fractal noise; otherwise, it generates turbulence.
FRAME — Constant static property in class com.flashdynamix.motion.Tweensy
Sets the refreshType to use the current seconds per frame on each ENTER_FRAME allowing for frame based animations.
frequency — Property in class com.flashdynamix.motion.extras.Emitter
How many particles are created on each ENTER_FRAME.
from(instance, from, duration, ease, delayStart, update, onComplete, onCompleteParams) — Static method in class com.flashdynamix.motion.Tweensy
Adds a from based tween using the properties defined in the from Object.
from(instance, from, duration, ease, delayStart, update, onComplete, onCompleteParams) — Method in class com.flashdynamix.motion.TweensyGroup
Adds a from based tween using the properties defined in the from Object.
from(instance, from, update) — Method in class com.flashdynamix.motion.TweensyTimeline
Adds a from based tween to the properties defined in the target Object.
from — Property in class com.flashdynamix.motion.plugins.AbstractTween
_from — Property in class com.flashdynamix.motion.plugins.ColorTween
from — Property in class com.flashdynamix.motion.plugins.ColorTween
_from — Property in class com.flashdynamix.motion.plugins.DisplayTween
from — Property in class com.flashdynamix.motion.plugins.DisplayTween
_from — Property in class com.flashdynamix.motion.plugins.MatrixTween
from — Property in class com.flashdynamix.motion.plugins.MatrixTween
_from — Property in class com.flashdynamix.motion.plugins.MovieClipTween
from — Property in class com.flashdynamix.motion.plugins.MovieClipTween
_from — Property in class com.flashdynamix.motion.plugins.ObjectTween
from — Property in class com.flashdynamix.motion.plugins.ObjectTween
_from — Property in class com.flashdynamix.motion.plugins.SoundTween
from — Property in class com.flashdynamix.motion.plugins.SoundTween
fromTarget(item) — Method in class com.flashdynamix.motion.plugins.AbstractTween
fromTarget(from) — Method in class com.flashdynamix.motion.plugins.ColorTween
fromTarget(from) — Method in class com.flashdynamix.motion.plugins.MatrixTween
fromTarget(from) — Method in class com.flashdynamix.motion.plugins.SoundTween
fromTo(instance, from, to, duration, ease, delayStart, update, onComplete, onCompleteParams) — Static method in class com.flashdynamix.motion.Tweensy
Adds a from to based tween using the properties defined in the from and to Objects.
fromTo(instance, from, to, duration, ease, delayStart, update, onComplete, onCompleteParams) — Method in class com.flashdynamix.motion.TweensyGroup
Adds a from to based tween using the properties defined in the from and to Objects.
fromTo(instance, from, to, update) — Method in class com.flashdynamix.motion.TweensyTimeline
Adds a from to based tween to the properties defined in the target Object.
functionTo(instance, to, onUpdate, duration, ease, delayStart) — Method in class com.flashdynamix.motion.TweensyGroup
This method provides a handy method to do the common task of tweening an Object instance and then needing to apply this to an update Function call.
This is equivalent to : var timeline:TweensyTimeline = tween.to(point, {x:50, y:50});
timeline.onUpdate = item.setPoint;
timeline.onUpdateParams = [point];


If requiring not to just set the instance to the Function but rather properties within the instance which are tweening this can be done via the following code example :
var onUpdate:Function = function(current:Object):void{
pane.setSize(current.width, current.height);
}
tween.functionTo({width:pane.width, height:pane.height}, {width:200, height:200}, onUpdate);
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