diff --git a/docs/dictionary/command/pop.lcdoc b/docs/dictionary/command/pop.lcdoc index 5df23d3ce80..d2c46a70885 100644 --- a/docs/dictionary/command/pop.lcdoc +++ b/docs/dictionary/command/pop.lcdoc @@ -37,10 +37,10 @@ If you specify a container, the long of the is placed in the change. If the list is empty when you use the , LiveCode goes to -the Home . If you are running in the LiveCode , this is the first of the "license.rev" , -which is the splash screen that appears when you start up LiveCode. -(Click this card to close the stack.) If you are running in a +the Home . If you are running in the LiveCode +, this is the first of the "license.rev" +, which is the splash screen that appears when you start up +LiveCode. (Click this card to close the stack.) If you are running in a , the Home is the first of the
. diff --git a/docs/dictionary/command/popup-widget.lcdoc b/docs/dictionary/command/popup-widget.lcdoc index d3a505a494f..d69bdf7c6ee 100644 --- a/docs/dictionary/command/popup-widget.lcdoc +++ b/docs/dictionary/command/popup-widget.lcdoc @@ -34,18 +34,28 @@ end mouseDown Parameters: kind: The unique identifier of the widget to use for the popup. -location: A point or expression that evaluates to a point. Two integers separated by a comma. -properties: An expression that evaluates to an array. For each key of the array, the popup widget will be initialized by setting that property to the value for that key. +location: A point or expression that evaluates to a point. Two integers +separated by a comma. +properties: An expression that evaluates to an array. For each key of the +array, the popup widget will be initialized by setting that property to +the value for that key. -The result: If the user dismisses the popup, the it variable is set to empty, and the result function returns "Cancel". +The result: If the user dismisses the popup, the it variable is set to +empty, and the result function returns "Cancel". -It: The command places the widget return value in the it variable. +It: The command places the widget return value in the it +variable. Description: -Use to display a widget within a popup window, for example as a tooltip or picker dialog. +Use to display a widget within a popup window, for example as a tooltip +or picker dialog. -The popup appears with its top left corner at the . If no is specified, the popup's top left corner is at the . While the popup widget is displayed, the handler pauses. +The popup appears with its top left corner at the . If no + is specified, the popup's top left corner is at the +. While the popup widget is displayed, the +handler pauses. -References: mouseDown (message), mouseDown message (message), mouseUp message (message), popup (keyword), clickLoc (function), mouse location (function), result (function), it (keyword) +References: mouseDown (message), mouseUp (message), popup (keyword), +clickLoc (function), mouseLoc (function), result (function), it (keyword) Tags: widget diff --git a/docs/dictionary/command/popup.lcdoc b/docs/dictionary/command/popup.lcdoc index 022e5e70545..7abc4edc121 100644 --- a/docs/dictionary/command/popup.lcdoc +++ b/docs/dictionary/command/popup.lcdoc @@ -55,7 +55,7 @@ clicked control in the stack (for a stack menu). The button or stack menu handles the menu choice. If you use a button to hold the contents of the menu, the contents of -the button's is displayed in the popup. +the button's is displayed in the popup. **Important:** If you use a button to hold the contents of the menu, the following properties must be set: @@ -82,8 +82,8 @@ parameter of the message, as described above. References: pulldown (command), clickLoc (function), mouseLoc (function), menu item (glossary), popup menu (glossary), button (keyword), menuItem (keyword), popup (keyword), menuPick (message), -mouseDown (message), mouseDown (message), mouseUp (message), message (glossary), -stack (object), button (object), style property (property), +mouseDown (message), mouseDown (message), mouseUp (message), +message (glossary), stack (object), button (object), style (property), toolTip (property), menuMode (property), visible (property), menuMouseButton (property) diff --git a/docs/dictionary/command/post.lcdoc b/docs/dictionary/command/post.lcdoc index fe03fde5e0c..64c6f6d3001 100644 --- a/docs/dictionary/command/post.lcdoc +++ b/docs/dictionary/command/post.lcdoc @@ -5,7 +5,7 @@ Type: command Syntax: post to URL Summary: -Sends data to a using the POST action of . +Sends data to a using the POST action of . Associations: internet library @@ -120,11 +120,13 @@ function (control structure), result (function), URLStatus (function), URLEncode (function), libURLFormData (function), URLDecode (function), libURLMultipartFormAddPart (function), libURLMultipartFormData (function), variable (glossary), command (glossary), -Livecode custom library (glossary), property (glossary), +LiveCode custom library (glossary), property (glossary), standalone application (glossary), blocking (glossary), web server (glossary), command (glossary), expression (glossary), syntax (glossary), server (glossary), upload (glossary), -statement (glossary), handler (glossary), URL (keyword), ftp (keyword), +statement (glossary), handler (glossary), +Standalone Application Settings (glossary), +URL (keyword), ftp (keyword), http (keyword), Internet library (library), urlProgress (message), httpHeaders (property), HTTPProxy (property) diff --git a/docs/dictionary/function/param.lcdoc b/docs/dictionary/function/param.lcdoc index 8b478877c03..7055fc2e8cb 100644 --- a/docs/dictionary/function/param.lcdoc +++ b/docs/dictionary/function/param.lcdoc @@ -62,9 +62,13 @@ to assign it a name: LiveCode evaluates the parameters before passing them. So if you call -myHandler with the following statement: myHandler 1+1,"A","Hello" && -"world" the parameters returned by the are 2, A, -and "Hello World". +myHandler with the following statement: + + myHandler 1+1,"A","Hello" && "world" + +the parameters returned by the are + + 2, A, and "Hello World". References: function (control structure), paramCount (function), pass (glossary), handler (glossary), parameter (glossary), diff --git a/docs/dictionary/function/params.lcdoc b/docs/dictionary/function/params.lcdoc index 097ce2f1e7e..60c9edd51fe 100644 --- a/docs/dictionary/function/params.lcdoc +++ b/docs/dictionary/function/params.lcdoc @@ -75,11 +75,16 @@ If you call "myFunction" with the following statement: get myFunction("red","green","blue") -the value returned by the function is "myFunction("red","green","blue")". +the value returned by the function is + + "myFunction("red","green","blue")". LiveCode evaluates the parameters before passing them. So if you call -myHandler with the following statement: myHandler 1+1,"A","Hello" && -"world" the value returned by the is +myHandler with the following statement: + + myHandler 1+1,"A","Hello" && "world" + +the value returned by the is myHandler "2","A","Hello world" diff --git a/docs/dictionary/message/playerProgressChanged.lcdoc b/docs/dictionary/message/playerProgressChanged.lcdoc index b7faa61a180..f6f8f2b8cc9 100644 --- a/docs/dictionary/message/playerProgressChanged.lcdoc +++ b/docs/dictionary/message/playerProgressChanged.lcdoc @@ -22,8 +22,8 @@ Description: Handle the message when the loadState of the player has changed. -You should query the to determine which of the states have -changed: +You should query the loadState with the function to +determine which of the states have changed: * playable - enough data is available to start playing, but it may run out before playback finishes @@ -35,7 +35,7 @@ changed: Zero or more of these are returned in a comma delimited string value. -References: loadState (function), playerFinished (message), +References: mobileControlGet (function), playerFinished (message), playerError (message), playerLeaveFullscreen (message), playerStopped (message), playerMovieChanged (message), playerPropertyAvailable (message), playerEnterFullscreen (message) diff --git a/docs/dictionary/message/preOpenControl.lcdoc b/docs/dictionary/message/preOpenControl.lcdoc index 198112a2de5..6b4fd14ef64 100644 --- a/docs/dictionary/message/preOpenControl.lcdoc +++ b/docs/dictionary/message/preOpenControl.lcdoc @@ -27,15 +27,11 @@ Description: Handle the message to update a group's appearance before it appears on screen. -  - For groups with their set to true, the message is sent immediately after the is sent to the being opened. For non-background groups, it is sent after the . -  - For nested groups, the message is sent to the parent group first, if it is passed or not handled by the parent group, then it passes through each child group in reverse layer order (i.e from highest diff --git a/docs/dictionary/property/pan.lcdoc b/docs/dictionary/property/pan.lcdoc index 84451ddd0b0..34813d4defb 100644 --- a/docs/dictionary/property/pan.lcdoc +++ b/docs/dictionary/property/pan.lcdoc @@ -27,8 +27,8 @@ Value: The is a number between zero and 360. Description: -Use the to find out where the user is in a movie. +Use the to find out where the user is in a + movie. The user can move the view of a QuickTime VR movie using the navigational controls in the player; a handler can change the view by @@ -42,7 +42,7 @@ zero corresponds to the straight-ahead view of the scene. As the viewer turns clockwise, the increases. If you set the of a player to a number outside the range zero to -360, no results, but the is set tonumber mod 360. For +360, no results, but the is set to number mod 360. For example, if you attempt to set the of a to -20, its is actually set to 340. diff --git a/docs/dictionary/property/penPattern.lcdoc b/docs/dictionary/property/penPattern.lcdoc index 66df06ecc09..b31b9b8e9b5 100644 --- a/docs/dictionary/property/penPattern.lcdoc +++ b/docs/dictionary/property/penPattern.lcdoc @@ -43,12 +43,12 @@ borders of shapes. Pattern images can be color or black-and-white. ->*Cross-platform note:* To be used as a pattern on systems>, an must be 128x128 or less, and both its -> and must be a power of 2. To be used on and -> , and must be divisible by 8. To -> be used as a fully cross-platform pattern, both an image's dimensions -> should be one of 8, 16, 32, 64, or 128. +>*Cross-platform note:* To be used as a pattern on +> , an must be 128x128 or less, +> and both its and must be a power of 2. To be used on +> and , and must be +> divisible by 8. To be used as a fully cross-platform pattern, both an +> image's dimensions should be one of 8, 16, 32, 64, or 128. If the has been set since the last time the was set, the color is used instead of the pattern specified by . diff --git a/docs/dictionary/property/pointerFocus.lcdoc b/docs/dictionary/property/pointerFocus.lcdoc index 3a71d5646c0..e5c073ca532 100644 --- a/docs/dictionary/property/pointerFocus.lcdoc +++ b/docs/dictionary/property/pointerFocus.lcdoc @@ -34,9 +34,9 @@ setup. If the is true, moving the into a window makes it the . Set the to true to work around problems in some window managers -(specifically, "olwm" and "fvwm" ) that prevent applications such as LiveCode from operating -correctly. +(specifically, "olwm" and "fvwm" ) that prevent + applications such as LiveCode from +operating correctly. If the application is started from a Unix command line, this property can be set to true on startup by using the -pointerfocus option. diff --git a/docs/glossary/p/Pointer-tool.lcdoc b/docs/glossary/p/Pointer-tool.lcdoc index 09fd1e16cb8..7dad19a9257 100644 --- a/docs/glossary/p/Pointer-tool.lcdoc +++ b/docs/glossary/p/Pointer-tool.lcdoc @@ -5,7 +5,7 @@ Synonyms: pointer tool, arrow tool Type: glossary Description: - used in the LiveCode to select, move, + used in the LiveCode to select, move, and resize . When the Pointer tool is being used, the is in the shape of an