Movie.Handle

From Xojo Documentation

Read-Only Property (As Ptr )
PtrValue = aMovie.Handle

Supported for all project types and targets.

Returns a handle to the movie, mainly used for API calls that require the handle to a movie.

Example

This gets the handle to the movie.

Var f As FolderItem
Var m As Movie
Var i As Ptr
f = GetOpenFolderItem("")
m = Movie.Open(f)
i = m.Handle