Skip to content

Commit 88ec7bd

Browse files
committed
Swap <br in tables with grid tables
1 parent 0220a7e commit 88ec7bd

File tree

5 files changed

+115
-46
lines changed

5 files changed

+115
-46
lines changed

docs/general/application.md

+30-8
Original file line numberDiff line numberDiff line change
@@ -721,14 +721,36 @@ Loads color swatch data from an Adobe Swatch Exchange (ASE) file.
721721

722722
The swatch data, in this format:
723723

724-
| Property | Description |
725-
| ------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ |
726-
| `data.majorVersion`<br/>`data.minorVersion` | The ASE version number. |
727-
| `data.values` | An array of Swatch Value. |
728-
| `SwatchValue.type` | One of "RGB", "CMYK", "LAB", "Gray" |
729-
| `SwatchValue.r`<br/>`SwatchValue.g`<br/>`SwatchValue.b` | When `type = "RGB"`, the color values in the range `[0.0..1.0]`.<br/><br/>`[0, 0, 0]` is Black. |
730-
| `SwatchValue.c`<br/>`SwatchValue.m`<br/>`SwatchValue.y`<br/>`SwatchValue.k` | When `type` = "CMYK", the color values in the range `[0.0..1.0]`.<br/>`[0, 0, 0, 0]` is White. |
731-
| `SwatchValue.L`<br/>`SwatchValue.a`<br/>`SwatchValue.b`<br/>`SwatchValue.value` | When `type = "LAB"`, the color values.<br/>`L` is in the range `[0.0..1.0]`.<br/>`a` and `b`are in the range `[-128.0..+128.0]`.<br/>`[0, 0, 0]` is Black.<br/><br/>When `type = "Gray"`, the `value` range is `[0.0..1.0]`.<br/>`0.0` is Black. |
724+
+---------------------+-------------------------------------------------------------------+
725+
| Property | Description |
726+
+=====================+===================================================================+
727+
| `data.majorVersion` | The ASE version number. |
728+
| `data.minorVersion` | |
729+
+---------------------+-------------------------------------------------------------------+
730+
| `data.values` | An array of Swatch Value. |
731+
+---------------------+-------------------------------------------------------------------+
732+
| `SwatchValue.type` | One of "RGB", "CMYK", "LAB", "Gray" |
733+
+---------------------+-------------------------------------------------------------------+
734+
| `SwatchValue.r` | When `type = "RGB"`, the color values in the range `[0.0..1.0]`. |
735+
| `SwatchValue.g` | |
736+
| `SwatchValue.b` | `[0, 0, 0]` is Black. |
737+
+---------------------+-------------------------------------------------------------------+
738+
| `SwatchValue.c` | When `type = "CMYK"`, the color values in the range `[0.0..1.0]`. |
739+
| `SwatchValue.m` | |
740+
| `SwatchValue.y` | `[0, 0, 0, 0]` is White. |
741+
| `SwatchValue.k` | |
742+
+---------------------+-------------------------------------------------------------------+
743+
| `SwatchValue.L` | When `type = "LAB"`, the color values. |
744+
| `SwatchValue.a` | |
745+
| `SwatchValue.b` | - `L` is in the range `[0.0..1.0]` |
746+
| | - `a` and `b`are in the range `[-128.0..+128.0]` |
747+
| | |
748+
| | `[0, 0, 0]` is Black. |
749+
+---------------------+-------------------------------------------------------------------+
750+
| `SwatchValue.value` | When `type = "Gray"`, the `value` range is `[0.0..1.0]`. |
751+
| | |
752+
| | `0.0` is Black. |
753+
+---------------------+-------------------------------------------------------------------+
732754

733755
---
734756

docs/layer/avlayer.md

+13-7
Original file line numberDiff line numberDiff line change
@@ -792,20 +792,26 @@ alert(myLayer.trackMatteType);
792792

793793
Replaces the source for this layer.
794794

795+
!!! warning
796+
If this method is performed on a null layer, the layers `isNull` attribute is not changed from `true`. This causes the layer not to be visible in comp viewer and renders.
797+
795798
#### Parameters
796799

797-
| Parameter | Type | Description |
798-
| ---------------- | ----------------------------------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
799-
| `newSource` | [AVItem object](../item/avitem.md) | The new source AVItem object. |
800-
| `fixExpressions` | Boolean | `true` to adjust expressions for the new source, otherwise `false`.<br/>Note that this feature can be resource-intensive; if replacing a large amount of footage, do this only at the end of the operation. See also [Project.autoFixExpressions()](../general/project.md#projectautofixexpressions). |
800+
+------------------+------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
801+
| Parameter | Type | Description |
802+
+==================+====================================+==========================================================================================================================================================================================================================+
803+
| `newSource` | [AVItem object](../item/avitem.md) | The new source AVItem object. |
804+
+------------------+------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
805+
| `fixExpressions` | Boolean | `true` to adjust expressions for the new source, otherwise `false`. |
806+
| | | |
807+
| | | !!! warning |
808+
| | | This feature can be resource-intensive; if replacing a large amount of footage, do this only at the end of the operation. See also [Project.autoFixExpressions()](../general/project.md#projectautofixexpressions). |
809+
+------------------+------------------------------------+--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
801810

802811
#### Returns
803812

804813
Nothing.
805814

806-
!!! warning
807-
If this method is performed on a null layer, the layers `isNull` attribute is not changed from `true`. This causes the layer not to be visible in comp viewer and renders.
808-
809815
---
810816

811817
### AVLayer.setTrackMatte()

0 commit comments

Comments
 (0)