status

Typeproperty
DictionaryLCS
LibraryLiveCode Script
Syntax
put the status of player "myPlayer" into tStatus
Associationsplayer
Summary

Specifies the current status of a player object

Introduced6.7
OSmac
Platformsdesktop
Example
put the status of player "myPlayer" into tStatus
if tStatus is "loading" then
   put "Loading" && CR after fld "myField"
else if tStatus is "playing" then 
   put "Playing" && CR after fld "myField"
else
   put "Paused" && CR after fld "myField"
end if
Values
NameTypeDescription
Value

This property is read-only and cannot be set.

loading: for remote multimedia files only
playing:
paused:
RelatedKeyword: player
Glossary: property
Property: looping, showSelection, callbacks, startTime, duration
Description

Use the status property to find out the current status of a player object.

Tagsmultimedia