I'm trying to make some adjustments to the Matrix of a gradient (fill object) thought JSFL.

So the only thing I'm able to do is changing the rotation, and I am only able to do this when I first set the fill to a solid color, and then back to the gradient settings.

I really have no idea what to do for making this work properly, so if you have any idea of what to do here, please let me know!

PS: I am using radians, and I'm aware of the thing with a = (width / (32768/20) )

Edit:

(I think I said only changes to b/c had an effect, that's not completely true).

I've copied some sample code here. Make a 100x100 square at (0,0), and give that a gradient fill. This code should make the gradient have a rotation of 180 deg, mset the width to 50, and set the center of the gradient to (100,50).

Doing this have NO effect:

var fill = fl.getDocumentDOM().getCustomFill();

fill.matrix = new Object ( ) ;

fill.matrix.a = -50 / (32768/20);
fill.matrix.b = 0;
fill.matrix.c = 0;
fill.matrix.d = 100 / (32768/20);
fill.matrix.tx = 100;
fill.matrix.ty = 50;

fl.getDocumentDOM ( ) .setCustomFill ( fill ) ;

To make it work just a litte, one needs to make it a solid color first. And this will ONLY effect the rotation:

// copy data and set to solid
var fill = fl.getDocumentDOM().getCustomFill();

var fillStyle = fill.style;
var fillPosArray = fill.posArray;
var fillColorArray = fill.colorArray;
var fillLinearRGB = fill.linearRGB;
var fillOverflow = fill.overflow;

fill.style = "solid"

fl.getDocumentDOM().setCustomFill(fill);

// paste data and set matrix
fill = fl.getDocumentDOM().getCustomFill();

fill.style = fillStyle;
fill.posArray = fillPosArray;
fill.colorArray = fillColorArray;
fill.linearRGB = fillLinearRGB;
fill.overflow = fillOverflow;


fill.matrix = new Object ( ) ;

fill.matrix.a = -50 / (32768/20);
fill.matrix.b = 0;
fill.matrix.c = 0;
fill.matrix.d = 100 / (32768/20);
fill.matrix.tx = 100;
fill.matrix.ty = 50;

fl.getDocumentDOM().setCustomFill(fill);
link|improve this question

75% accept rate
Hmm...Tested in CS3 and CS5 with both radial and linear gradients. It doesn't appear that the tx or ty properties are used by the JSFL interpreter. – Justin Putney Apr 18 '11 at 22:41
I'm using cs4, and I can trace the correct tx/ty values for matrices. Settings them to something different just doesn't change a thing! But maybe that's also what you're saying? Anyway, did the scaling work for you? – RasmusWriedtLarsen Apr 19 '11 at 16:54
I believe the scaling did work. I had problems setting tx/ty as well, no visible changes observed. – Justin Putney Apr 25 '11 at 18:40
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.