streamMode
Syntax |
SetIconProperty(@" IconTitle", #streamMode, value) |
Type |
Icon property |
Description |
This property controls the way a linked Flash movie is streamed into memory. The streamMode property can have these values:
|
#frame streams a portion of the movie with each step event while the sprite is in the Presentation window. The step event timing is controlled by GlobalTempo . |
|
#idle streams a portion of the movie each time an idle event is generated, or at least once per step event while the sprite is in the Presentation window. |
|
#manual streams a portion of the movie into memory only when the stream method is issued for that icon. |
You can get and set the value of the streamMode property. The default setting is #frame . |
Example |
This statement sets the Flash sprite icon streamMode property to #manual .
SetIconProperty(@"Flash Icon", #streamMode, #manual)
|