332
Chapter 3: Objects
The following example stores the value of the current playhead location in the
curFrame
variable:
var curFrame = fl.getDocumentDOM().getTimeline().currentFrame;
timeline.currentLayer
Availability
Flash MX 2004.
Usage
timeline.currentLayer
Description
Property; the zero-based index for the currently active layer. A value of 0 specifies the top layer, a
value of 1 specifies the layer below it, and so on.
Example
The following example makes the top layer active:
fl.getDocumentDOM().getTimeline().currentLayer = 0;
The following example stores the index of the currently active layer in the
curLayer
variable:
var curLayer = fl.getDocumentDOM().getTimeline().currentLayer;
timeline.cutFrames()
Availability
Flash MX 2004.
Usage
timeline.cutFrames([
startFrameIndex
[,
endFrameIndex
]])
Parameters
startFrameIndex
A zero-based index that specifies the beginning of a range of frames to cut. If
you omit
startFrameIndex
, the method uses the current selection. This parameter is optional.
endFrameIndex
A zero-based index that specifies the frame at which to stop cutting. The
range of frames goes up to, but does not include,
endFrameIndex
. If you specify only
startFrameIndex
,
endFrameIndex
defaults to the
startFrameIndex
value. This parameter
is optional.
Returns
Nothing.
Description
Method; cuts a range of frames on the current layer from the Timeline and saves them to the
Clipboard.
Содержание FLASH MX 2004-FLASH JAVASCRIPT DICTIONARY
Страница 1: ...Flash JavaScript Dictionary ...
Страница 16: ...16 Contents ...
Страница 40: ...40 Chapter 2 Top level functions ...
Страница 368: ...368 Chapter 3 Objects ...
Страница 386: ...386 Chapter 4 C Level Extensibility ...