Is it possible to script a palette that interacts live with Illustrator?
i trying script palette window ineracts live illustrator document. have slider changes colors or moves objects in real time.
is possible? there samples of similar scripts have at?
thanks help.
with scriptographer possible .
// values: var values = { positionx: document.selecteditems[0].bounds.x }; // interface: var components = { positionx: { label: 'position x', type: 'slider', range: [-2000, 2000], onchange: function(value) { document.selecteditems[0].bounds.x=value; } } }; var palette = new palette('x move', components, values);
More discussions in Illustrator Scripting
adobe
Comments
Post a Comment