Differences

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

Link to this comparison view

Both sides previous revisionPrevious revision
Next revisionBoth sides next revision
transform [2017/12/17 04:07] – [How does it work] o2admintransform [2023/10/28 23:48] – [Interface] 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|}} \\