Skip to content

Commit 58d86d3

Browse files
committed
Merge remote-tracking branch 'upstream/develop-8.2' into merge-develop-8.2_20.09.17
2 parents b246916 + 30df4d3 commit 58d86d3

20 files changed

+78
-60
lines changed

docs/dictionary/command/local.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Name: local
22

33
Type: command
44

5-
Syntax: local <variableName> [= <value>] [, ...]
5+
Syntax: local <variableName> [= <value>] [, <variableName> [= <value>] ...]
66

77
Summary:
88
<declare|Declares> one or more <local variable|local variables> and

docs/dictionary/command/mobileControlDo.lcdoc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Synonyms: iphonecontroldo
44

55
Type: command
66

7-
Syntax: mobileControlDo <idOrName>, <action>, ...action specific parameters...
7+
Syntax: mobileControlDo <idOrName>, <action> [, <actionParameter> ...]
88

99
Summary:
1010
Execute specific behaviors of native mobile controls created using
@@ -42,6 +42,7 @@ The id or name of the control.
4242
action (enum):
4343
The name of the <action> to perform. See Description for complete <action> listing.
4444

45+
actionParameter: Additional parameter required for the action.
4546

4647
Description:
4748
Use the <mobileControlDo> command to execute behaviors specific to a

docs/dictionary/command/mobilePick.lcdoc

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Synonyms: iphonepick
44

55
Type: command
66

7-
Syntax: mobilePick <optionList>, <initialIndex> [, <optionList>, <initialIndex>, ...] [, <style> ] [, <button>] [, <view>]
7+
Syntax: mobilePick <optionList1>, <initialIndex1> [, <optionList2>, <initialIndex2> ...] [, <style> ] [, <button>] [, <view>]
88

99
Summary:
1010
Presents the user with a native list picker dialog.
@@ -38,12 +38,15 @@ mobilePick tDays, 2, tMonths, 3, "checkmark"
3838
answer the result with "Okay"
3939

4040
Parameters:
41-
optionList:
41+
optionList1:
4242
A return delimited list of options.
4343

44-
initialIndex:
44+
initialIndex1:
4545
The (1-based) index of the item to be initially highlighted.
4646

47+
optionList2:
48+
initialIndex2:
49+
4750
style:
4851
The type of display used. On the iPad if "checkmark" is specified a
4952
check-mark (tick) is put against the currently selected item. If not

docs/dictionary/command/visual-effect.lcdoc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,7 @@ Name: visual effect
22

33
Type: command
44

5-
Syntax: visual [effect] <effectName> [<speed>] [to <finalImage>]
6-
[with sound <audioClip>] [and <param> <value> and ...]
5+
Syntax: visual [effect] <effectName> [<speed>] [to <finalImage>] [with sound <audioClip>] [and <param> <value> ...]
76

87
Summary:
98
Adds a visual effect transition.

docs/dictionary/control_st/after.lcdoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ Name: after
22

33
Type: control structure
44

5-
Syntax: after <messageName> [<parametersList>] <statementList> end <messageName>
5+
Syntax:
6+
after <messageName> [<parametersList>]
7+
<statementList>
8+
end <messageName>
69

710
Summary:
811
Defines a <message handler>.

docs/dictionary/control_st/before.lcdoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ Name: before
22

33
Type: control structure
44

5-
Syntax: before <messageName> [<parametersList>] <statementList> end <messageName>
5+
Syntax:
6+
before <messageName> [<parametersList>]
7+
<statementList>
8+
end <messageName>
69

710
Summary:
811
Defines a <message handler>.

docs/dictionary/control_st/function.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ Name: function
33
Type: control structure
44

55
Syntax:
6-
function <functionName> [<parametersList>]
7-
<statementList>
6+
[private] function <functionName> [<parametersList>]
7+
<statementList>
88
end <functionName>
99

1010
Summary:

docs/dictionary/control_st/getProp.lcdoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,10 @@ Name: getProp
22

33
Type: control structure
44

5-
Syntax: getProp <propertyName> <statementList> end <propertyName>
5+
Syntax:
6+
getProp <propertyName>
7+
<statementList>
8+
end <propertyName>
69

710
Summary:
811
<handle|Handles> the <message> sent to an <object(glossary)> when you

docs/dictionary/control_st/if.lcdoc

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,12 @@ Name: if
22

33
Type: control structure
44

5-
Syntax: if <condition> then <statementList> [else <elseStatementList>]
5+
Syntax:
6+
if <condition> then
7+
<statementList>
8+
[else
9+
<elseStatementList>]
10+
end if
611

712
Syntax:if <condition> then
813
<statementList>

docs/dictionary/control_st/on.lcdoc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,10 @@ Synonyms: command
44

55
Type: control structure
66

7-
Syntax: on <messageName> [<parametersList>] <statementList> end <messageName>
7+
Syntax:
8+
[private] on <messageName> [<parametersList>]
9+
<statementList>
10+
end <messageName>
811

912
Summary:
1013
Defines a <message handler>.

0 commit comments

Comments
 (0)