Skip to content

Commit 7cd57bb

Browse files
committed
Cleanup user-interface-tools
1 parent 6615556 commit 7cd57bb

20 files changed

Lines changed: 3046 additions & 1112 deletions

docs/user-interface-tools/automatic-layout.md

Lines changed: 53 additions & 41 deletions
Large diffs are not rendered by default.

docs/user-interface-tools/code-examples-for-scriptui.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22

33
The sample code distributed with the [Adobe ExtendScript SDK](https://github.com/Adobe-CEP/CEP-Resources/tree/master/ExtendScript-Toolkit) includes code examples that specifically demonstrate different ways of building and populating a ScriptUI dialog.
44

5-
| **Building ScriptUI dialogs** | |
6-
|-------------------------------------------------------------------------------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
5+
| Building ScriptUI dialogs | Description |
6+
| ----------------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
77
| [SnpCreateDialog.jsx](https://github.com/Adobe-CEP/CEP-Resources/blob/master/ExtendScript-Toolkit/Samples/javascript/SnpCreateDialog.jsx) | Creates a very simple, modeless dialog (a palette) with OK and Cancel button behavior. |
88
| [SnpCreateUIAddMethod.jsx](https://github.com/Adobe-CEP/CEP-Resources/blob/master/ExtendScript-Toolkit/Samples/javascript/SnpCreateUIAddMethod.jsx) | Shows how to add controls to a dialog using the add method. |
99
| [SnpCreateUIResourceSpec.jsx](https://github.com/Adobe-CEP/CEP-Resources/blob/master/ExtendScript-Toolkit/Samples/javascript/SnpCreateUIResourceSpec.jsx) | Shows how to define a resource string that creates the control hierarchy in a dialog. |

docs/user-interface-tools/common-properties.md

Lines changed: 54 additions & 54 deletions
Large diffs are not rendered by default.

docs/user-interface-tools/communicating-with-the-flash-application.md

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,13 @@ To open a Flash Player, add a control of type [FlashPlayer](types-of-controls.md
66

77
A limited set of data types can be passed between the two scripting environments:
88

9-
- `Number`
10-
- `String`
11-
- `Boolean`
12-
- `Null`
9+
- Number
10+
- String
11+
- Boolean
12+
- `null`
1313
- `undefined`
14-
- `Object`
15-
- `Array`
14+
- Object
15+
- Array
1616

1717
The ActionScript `class` and `date` objects are not supported as parameter values.
1818

@@ -68,6 +68,7 @@ ExternalInterface.addCallback( "getActionScriptArray", this, getActionScriptArra
6868

6969
These examples in the [Adobe ExtendScript SDK](https://github.com/Adobe-CEP/CEP-Resources/tree/master/ExtendScript-Toolkit) demonstrate how to use the Flash Player:
7070

71-
| [UsingFlashPlayer.jsx](https://github.com/Adobe-CEP/CEP-Resources/blob/master/ExtendScript-Toolkit/Samples/javascript/UsingFlashPlayer.jsx) | Shows how to create a Flash® Player, and use it to load a play back a movie defined in an SWF file. |
72-
|-----------------------------------------------------------------------------------------------------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------|
73-
| [ActionScriptDemo.jsx](https://github.com/Adobe-CEP/CEP-Resources/blob/master/ExtendScript-Toolkit/Samples/javascript/ActionScriptDemo.jsx) | Shows how to communicate between the Adobe application scripting environment and the ActionScript™ scripting environment of the Flash Player. |
71+
| Example | Description |
72+
| ------------------------------------------------------------------------------------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------- |
73+
| [UsingFlashPlayer.jsx](https://github.com/Adobe-CEP/CEP-Resources/blob/master/ExtendScript-Toolkit/Samples/javascript/UsingFlashPlayer.jsx) | Shows how to create a Flash® Player, and use it to load a play back a movie defined in an SWF file. |
74+
| [ActionScriptDemo.jsx](https://github.com/Adobe-CEP/CEP-Resources/blob/master/ExtendScript-Toolkit/Samples/javascript/ActionScriptDemo.jsx) | Shows how to communicate between the Adobe application scripting environment and the ActionScript™ scripting environment of the Flash Player. |

0 commit comments

Comments
 (0)