Method
FolderItem.OpenResourceMovie
Warning
This item was deprecated in version 2019r1. Please use Movie.Open
}]] as a replacement.
Description
Opens the movie specified by ResID as a movie (Macintosh only).
Notes
Used only if the movie is stored as a MooV resource. Use OpenAsMovie for QT 4.0 (and greater) files.
Sample code
The following code accesses the resource movie numbered 1. The video/mp4 file type has been added to the project by the File Types Editor.
Dim f As FolderItem
Dim m As Movie
f = GetOpenFolderItem("video/mp4")
If f <> Nil Then
m = f.OpenResourceMovie(1)
Else
MsgBox("Open failed.")
End If
Compatibility
All project types on all supported operating systems.