Topics   All   MacOS (Only)   Windows (Only)   Linux (Only, Not)   iOS (Only, Not)  
Components   Crossplatform Mac & Win   Server   Client   Old   Deprecated   Guides   Examples   Videos
New in version: 12.2   12.3   12.4   12.5   13.0   13.1   13.2   13.3   13.4   13.5    Statistic    FMM    Blog  

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

💬 Ask a question or report a problem