forked from livecode/livecode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcreate-stack.xml
More file actions
executable file
·66 lines (52 loc) · 2.6 KB
/
Copy pathcreate-stack.xml
File metadata and controls
executable file
·66 lines (52 loc) · 2.6 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<doc>
<legacy_id>1436</legacy_id>
<name>create stack</name>
<type>command</type>
<syntax>
<example>create [invisible] stack [<i>stackName</i> [with <i>background</i>]]</example>
</syntax>
<synonyms>
<synonym>new stack</synonym>
</synonyms>
<summary>Makes a new blank <object tag="stack">stack</object>.</summary>
<examples>
<example>create stack "Test"</example>
<example>create stack "Resources" with background "Standard Navigation"</example>
</examples>
<history>
<introduced version="1.0">Added.</introduced>
<deprecated version=""></deprecated>
<removed version=""></removed>
<experimental version=""></experimental>
<nonexperimental version=""></nonexperimental>
</history>
<objects>
</objects>
<platforms>
<mac/>
<windows/>
<linux/>
<ios/>
<android/>
</platforms>
<classes>
<desktop/>
<web/>
<mobile/>
</classes>
<security>
</security>
<classification>
<category>Objects & Messages</category>
</classification>
<references>
<command tag="clone">clone Command</command>
<command tag="create">create Command</command>
<command tag="save">save Command</command>
<command tag="create card">create card Command</command>
<property tag="stackFileType">stackFileType Property</property>
<keyword tag="templateStack">templateStack Keyword</keyword>
<message tag="newStack">newStack Message</message>
</references>
<description>Use the <b>create stack</b> command to make a new <object tag="stack">stack</object>.<p></p><p><b>Parameters:</b></p><p>The <i>stackName</i> is the name of the newly-created <object tag="stack">stack</object>. If you don't specify a <i>stackName</i>, the new <glossary tag="stack">stack's</glossary> name is the value of the <function tag="seconds">seconds function</function> at the time of creation.</p><p></p><p>The <i>background</i> is a reference to any <command tag="group">group</command> in the <property tag="defaultStack">defaultStack</property>. This <command tag="group">group</command>, if specified, is included in the new <object tag="stack">stack</object>.</p><p></p><p><b>Comments:</b></p><p>The newly created stack is not saved to a file until you explicitly save it. If you close it without saving it, the stack disappears.</p><p></p><p>If you use the create invisible stack form, the stack is created with its <b>visible</b> <glossary tag="property">property</glossary> set to false, so it cannot be seen. Use this form to create a hidden window, change its appearance or position, then make it visible.</p><p></p><p>The stack created when create stack is executed is a clone of the templateStack.</p></description>
</doc>