Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Last revisionBoth sides next revision
transform [2017/12/17 04:07] – [How does it work] o2admintransform [2023/10/28 23:49] – [Release Notes] o2admin
Line 110: Line 110:
     * To eliminate any colour under 1% C:[ max(1, C) ]  - Using 'C' as shortcut for fill.cyan     * To eliminate any colour under 1% C:[ max(1, C) ]  - Using 'C' as shortcut for fill.cyan
     * To gamma adjust an RGB color R:[  255 * (R / 255) ^ gamma ]  or R:[  255 * (R / 255) ^ (1/gamma) ]      * To gamma adjust an RGB color R:[  255 * (R / 255) ^ gamma ]  or R:[  255 * (R / 255) ^ (1/gamma) ] 
-    + 
 +=== Extendscript === 
 +{{::transfrom_js.png?400|}} 
 +This will run Javascript code on each shape being transformed, giving you extra control on modifying the shape. 
 + 
 +These are the variables passed to the code 
 +  shape {object}: The current shape  
 +  * previousShape {null|object}: The previous shape 
 +  * index {number}: current selection index 
 +  * values {object}: object containing the values 
 +  * source {null|object} : source shape if duplicating 
 +  * copyCount {number}: copy count if duplicated or 0 
 +  * copies {number}: Number to be duplicated 
 === Delete === === Delete ===
 {{::transform-delete.png|}} \\ {{::transform-delete.png|}} \\
Line 258: Line 271:
  
 ==== Release Notes ==== ==== Release Notes ====
 +  * **1.4.0** - October 2023
 +    * Added open for Extendscript code
 +
   * **1.3.1** - 17 December 2017   * **1.3.1** - 17 December 2017
     * Requires PowerScripts 3.4.2     * Requires PowerScripts 3.4.2