Skip to content
This repository was archived by the owner on Aug 31, 2021. It is now read-only.

Commit aad5023

Browse files
Merge pull request #6898 from livecodesam/dictionary_2_batch_3
[Dictionary] child node to Database library
2 parents 9af01e9 + c03bb16 commit aad5023

16 files changed

+55
-68
lines changed

docs/dictionary/command/click.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ Any expression that evaluates to a point--a vertical and horizontal
4242
distance from the top left of the current stack, separated by a comma.
4343

4444
key:
45-
One of,,, or. You can specify up to three keys, separated by commas. (On
46-
Windows and Unix,indicates the Control key.)
45+
One of shiftKey, commandKey, optionKey, altKey or controlKey. You can
46+
specify up to three keys, separated by commas.
4747

4848
Description:
4949
Use the <click> <command> to simulate the action of a click, instead of

docs/dictionary/function/cipherNames.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,5 +33,5 @@ is the default, others have fixed sized key lengths.
3333

3434
References: encrypt (command), Standalone Application Settings (glossary),
3535
function (glossary), LiveCode custom library (glossary),
36-
SSL & Encryption library (library)
36+
standalone application (glossary), SSL & Encryption library (library)
3737

docs/dictionary/function/clickCharChunk.lcdoc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,11 @@ released does not affect the <value> <return|returned> by the
4444

4545
The first and second character numbers in the return value are always
4646
identical, unless the click was on a field but there was no text under
47-
it. In this case, the <clickCharChunk> <return|returns> a <chunk
48-
expression> of the form char charNumber to charNumber - 1 of field
49-
fieldNumber indicating the start of the clickLine. For example, if the
50-
mouse is over an empty <field>, the <clickCharChunk> <return|returns>
51-
char 1 to 0 of field fieldNumber.
47+
it. In this case, the <clickCharChunk> <return|returns> a
48+
<chunk expression> of the form char charNumber to charNumber - 1 of
49+
field fieldNumber indicating the start of the clickLine. For example,
50+
if the mouse is over an empty <field>, the <clickCharChunk>
51+
<return|returns> char 1 to 0 of field fieldNumber.
5252

5353
If the field is locked, the <clickCharChunk> <function> is most useful
5454
within a <handler> (such as <mouseDown> or <mouseUp>) that is

docs/dictionary/function/controlKey.lcdoc

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -24,18 +24,17 @@ Example:
2424
if controlKey() is down then go back
2525

2626
Returns:
27-
The <controlKey> <function(control structure)> <return|returns> <down>
27+
The <controlKey> <function> <return|returns> <down>
2828
if the key is pressed and <up> if it's not. On Unix and Windows systems,
29-
the commandKey function <return|returns> the same value as the
30-
<controlKey> <function(control structure)>: the two
31-
<function(glossary)|functions> are synonyms.
29+
the <commandKey> <function> <return|returns> the same value as the
30+
<controlKey> <function>: the two <function|functions> are synonyms.
3231

3332
Description:
3433
Use the <controlKey> <function> to check whether the user is pressing
3534
the Control key.
3635

3736
References: down (constant), left (constant), up (constant),
38-
function (control structure), keysDown (function), return (glossary),
37+
commandKey (function), keysDown (function), return (glossary),
3938
function (glossary), commandKeyDown (message)
4039

4140
Tags: ui

docs/dictionary/function/cos.lcdoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ provide an angle in <degree|degrees>, use the following
4848
end cosInDegrees
4949

5050

51-
References: pi (constant), function (control structure),
51+
References: pi (constant), function (glossary),
5252
radian (glossary), custom function (glossary), return (glossary),
5353
degree (glossary)
5454

docs/dictionary/function/date.lcdoc

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ month, a space, the day of the month, a comma, and the year.
4949

5050
The internet date form returns the following parts, separated by spaces:
5151

52-
* the day of the week followed by a comma
53-
* the day of the month
54-
* the three-letter abbreviation for the month name
55-
* the four-digit year
56-
* the time in 24-hour format, including seconds, delimited by
57-
colons
58-
* the four-digit time zone relative to UTC (Greenwich) time.
52+
* the day of the week followed by a comma
53+
* the day of the month
54+
* the three-letter abbreviation for the month name
55+
* the four-digit year
56+
* the time in 24-hour format, including seconds, delimited by
57+
colons
58+
* the four-digit time zone relative to UTC (Greenwich) time.
5959

6060

6161
Description:

docs/dictionary/property/colorMap.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@ while running the <application>.
4545
If you leave a line blank when setting the <colorMap>, the color
4646
corresponding to that <line> is left unchanged.
4747

48-
>*Cross-platform note:* On <Windows|Windows systems>, colors 1–10 and
49-
> 246–256 cannot be changed.
48+
>*Cross-platform note:* On <Windows|Windows systems>, colors 1-10 and
49+
> 246-256 cannot be changed.
5050

5151
On Unix systems, setting the <colorMap> <property> sets the
5252
<privateColors> <property> to true.

docs/dictionary/property/coloroverlay.lcdoc

Lines changed: 7 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -32,31 +32,21 @@ Graphic Effects card of the property inspector which has full control
3232
over each parameter. To control the effect by script use the
3333
following properties:
3434

35-
colorOverlay["color"]
36-
37-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;The color of the overlay, in the format
35+
- colorOverlay["color"] : The color of the overlay, in the format
3836
red,green,blue where each value is between 0 and 255.
3937

40-
colorOverlay["blendMode"]
41-
42-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;How the overlay is blended with the
38+
- colorOverlay["blendMode"] : How the overlay is blended with the
4339
object. This is one of the following values:
4440

45-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- "normal" :
46-
the glow is laid directly over the object.
47-
48-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- "multiply"
49-
: this results in a darkening effect
41+
- "normal" : the glow is laid directly over the object.
42+
- "multiply" : this results in a darkening effect
43+
- "colorDodge" : this results in a lightening effect
5044

51-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;-
52-
"colorDodge" : this results in a lightening effect
53-
54-
colorOverlay["opacity"]
55-
56-
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;How opaque the overlay is. The value is
45+
colorOverlay["opacity"] : How opaque the overlay is. The value is
5746
between 0 (fully transparent) and 255 (fully opaque).
5847

5948
References: innerShadow (property), innerGlow (property),
6049
dropShadow (property), outerGlow (property), blendLevel (property),
6150
ink (property)
6251

52+

docs/dictionary/property/constantMask.lcdoc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ By default, the <constantMask> <property> of newly created
2525
<image(object)|images> is set to false.
2626

2727
Description:
28-
Use the <constantMask> <property> to enable display of certain <animated
29-
GIF> <image(object)|images>.
28+
Use the <constantMask> <property> to enable display of certain
29+
<animated GIF> <image(object)|images>.
3030

3131
Some animated GIF images use an optimization technique in which the mask
3232
data is used to hold information about differences between successive

docs/dictionary/property/constraints.lcdoc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -26,12 +26,12 @@ set the pan of me to item 2 of line 1 of the constraints of me
2626
Value (enum):
2727
The <constraints> is a list consisting of three lines:
2828

29-
- The minimum and maximum <pan>, separated by commas.
30-
- The minimum and maximum <tilt>, separated by commas.
31-
- The minimum and maximum <zoom>, separated by commas.
29+
- The minimum and maximum <pan>, separated by commas.
30+
- The minimum and maximum <tilt>, separated by commas.
31+
- The minimum and maximum <zoom>, separated by commas.
3232

3333
Each value is a number.
34-
This property is read:only and cannot be set
34+
This property is read-only and cannot be set
3535

3636

3737
Description:

0 commit comments

Comments
 (0)