<div class="meta" robots="noindex">

</div>

Method

# FolderItem.OpenResourceMovie

---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

<div class="warning">

<div class="title">

Warning

</div>

This item was deprecated in version 2019r1. Please use `Movie.Open<movie.open>`

</div>

}\]\] 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.

``` xojo
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.
