Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

AVAsset.Loaded

Queries load status of asset.

Component Version macOS Windows Linux Server iOS SDK
AVAsset 5.2 ✅ Yes ❌ No ❌ No ✅ Yes, on macOS ✅ Yes
MBS( "AVAsset.Loaded"; Asset )   More

Parameters

Parameter Description Example
Asset The reference number of the asset. Please use AVAsset.OpenContainer, AVAsset.OpenFile or AVAsset.OpenURL function to get asset reference. $asset

Result

Returns status or error.

Description

Queries load status of asset.
Returns status like Loading, Loaded, Cancelled, Failed or Unknown.
If status starts with "Failed: ", it is followed by a reason.

Examples

Load and check status:

Set Variable [$Asset; Value:MBS( "AVAsset.OpenFile"; "/Users/cs/Desktop/test.mp4" )]
Set Variable [$Loaded1; Value:MBS( "AVAsset.Loaded"; $Asset )]
Pause/Resume Script [Duration (seconds): ,1]
Set Variable [$Loaded2; Value:MBS( "AVAsset.Loaded"; $Asset )]
Set Variable [$r; Value:MBS( "AVAsset.Release"; $Asset )]
Show Custom Dialog ["Loaded"; $Loaded1 & ¶ & $Loaded2]

See also

This function checks for a license.

Created 19th June 2015, last changed 24th February 2016


AVAsset.IsReadable - AVAsset.Lyrics