forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvideoClip.lcdoc
More file actions
36 lines (21 loc) · 1.25 KB
/
Copy pathvideoClip.lcdoc
File metadata and controls
36 lines (21 loc) · 1.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Name: videoClip
Type: object
Syntax: videoClip
Summary: An <object type> that contains movie data.
Synonyms: vc
Introduced: 1.0
OS: mac,windows,linux
Platforms: desktop,server,web
Example:
play videoClip "Spartacus"
Example:
delete videoClip ID 2485
Description:
Use the <videoClip> <object type> to display a movie that is stored in the <stack>, rather than in another file.
Unlike a player, a video clip contains the movie that it displays. This increases the memory required by your stack, because the movie data is loaded into memory whenever the stack file is open. However, it prevents the movie from being accidentally separated from the stack file and lost.
Video clips can be in QuickTime, AVI, or MPEG format.
A video clip is contained in a stack. Video clips cannot contain other objects. (A video clip is not a control, since it has no user interface and cannot be owned by a card.)
To play a videoClip, use the syntax "play videoClip <filename_of_videoclip>".
To pause a videoClip, use the syntax "play pause videoClip <filename_of_videoclip>".
To stop a videoClip, use the syntax "play stop videoClip <filename_of_videoclip>".
References: videoClipPlayer (property), templateVideoClip (keyword), stack (object), object type (glossary)