forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathimport.lcdoc
More file actions
43 lines (27 loc) · 3.31 KB
/
import.lcdoc
File metadata and controls
43 lines (27 loc) · 3.31 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
37
38
39
40
41
42
43
Name: import
Type: command
Syntax: import <type> from file <filePath> [with mask <maskFilePath>]
Summary: Creates an <image>, <EPS>, <audio clip>, or <video clip> and copies the contents of a <file> into the <object>.
Introduced: 1.0
OS: mac,windows,linux,ios,android
Platforms: desktop,web,mobile
Security: disk
Example:
import paint from file "flowers.jpeg"
Example:
import audioClip from file "/sounds/temp/bugsounds.wav"
Example:
import paint from file it with mask "/etc/res/oval.pbm"
Parameters:
type: One of paint, EPS, audioClip, or videoClip.
filePath: The filePath specifies the name and location of the file you want to import from. If you specify a name but not a location, LiveCode assumes the file is in the defaultFolder.
maskFilePath: The maskFilePath specifies the name and location of a one-bit mask file for an image. You can use a mask file only if the file being imported is in the PBM format.
Description:
Use the <import> <command> to place a sound, movie, or <image> in a <stack>, instead of creating a <referenced control> that uses an external file.
The imported object is placed in the current stack. To change the current stack before importing, set the <defaultStack> <property> to the stack you want to import into, then import the <file>.
Importing a paint file creates an image object on the current card. The <import> command can import <GIF>, <JPEG>, <PNG>, <BMP>, <XWD>, <XBM>, <XPM>, or <PBM>, <PGM>, or <PPM> <files>. On <Mac OS|Mac OS systems>, <PICT> <files> can also be <import|imported> (but they cannot be displayed on <Unix> or <Windows|Windows systems>).
Importing an EPS file creates an EPS object on the current card.
Importing an audioClip or videoClip file creates an audio clip or video clip in the current stack. Audio files can be in WAV, AIFF, or AU format. Video files can be in <QuickTime>, <AVI>, or <MPEG> <format>.
>*Note:* The <import> <command> places the data in the <stack file> itself. This assures that the information stays with the <stack> if it's moved, but it also increases the <stack|stack's> size and the amount of memory used by the <stack>. If you prefer to keep the data outside the <stack file>, you can display a picture file without importing it by creating an <image> and setting its <filenameproperty>, or by choosing File menu<img src="202656"/>New Referenced Control<img src="202656"/>Image File. To allow playing a sound or movie without importing it, create a pl and set its filename prop, or choose File menu<img src="202656"/>New Referenced Control<img src="202656"/>QuickTime-Supported File.
References: defaultStack (property), filename (property), JPEGQuality (property), filenameproperty (property), paintCompression (property), file (keyword), image (keyword), paint (keyword), export (command), import snapshot (command), play (command), EPS (object), object (object), stack (object), referenced control (glossary), MPEG (glossary), import (glossary), video clip (glossary), PICT (glossary), property (glossary), command (glossary), Unix (glossary), BMP (glossary), QuickTime (glossary), Mac OS (glossary), PBM (glossary), GIF (glossary), JPEG (glossary), XPM (glossary), PGM (glossary), XWD (glossary), audio clip (glossary), PPM (glossary), XBM (glossary), PNG (glossary), stack file (glossary), Windows (glossary), AVI (glossary), format (function), files (function)
Tags: file system