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

AVExport.Status

Queries status of export.

Component Version macOS Windows Linux Server iOS SDK
AVExport 6.1 ✅ Yes ❌ No ❌ No ✅ Yes, on macOS ✅ Yes
MBS( "AVExport.Status"; AVExportSession )   More

Parameters

Parameter Description Example
AVExportSession The session reference number. $AVExport

Result

Returns text or error.

Description

Queries status of export.
Can be Unknown, Waiting, Exporting, Completed, Failed or Cancelled.

Examples

Check Status:

If [IsEmpty($$AVExport)]
    Set Field [AVAsset Export Session::Progress; ""]
    Set Field [AVAsset Export Session::Error; ""]
    Set Field [AVAsset Export Session::Status; ""]
Else
    Set Field [AVAsset Export Session::Progress; MBS( "AVExport.Progress"; $$AVExport )]
    Set Field [AVAsset Export Session::Error; MBS( "AVExport.Error"; $$AVExport )]
    Set Field [AVAsset Export Session::Status; MBS( "AVExport.Status"; $$AVExport )]
End If
If [AVAsset Export Session::Status = "Completed" or AVAsset Export Session::Status = "Failed"]
    Install OnTimer Script []
End If

See also

Example Databases

This function checks for a license.

Created 29th February 2016, last changed 1st March 2016


AVExport.SetTimeRange - AVExport.SupportedFileTypes