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);