| Syntax: |
the percentStreamed of member whichFlashMember |
| Type: |
Cast member property |
| Description: |
This property indicates what percent of a Flash movie has streamed into memory. This property returns an integer value from 0 to 100 percent. |
|
The percentStreamed of member property can be tested but not set.
|
| Example: |
This frame script keeps the playback head looping in the current frame as long as less than 60 percent of a Flash movie called "Splash Screen" has streamed into memory. |
|
on exitFrame
if the percentStreamed of member "Splash Screen" < 60 then
go to the frame
end if
end
|
 |
|