Search  

DIRECTIONAL GRADIENT

HomeForumsHelp NeededDirectional Gradient
24717 x360c
221 posts
Sold between 100 and 1 000 dollars Bought between 1 and 9 items

How to I change this code to make the gradient go from left/right to up/down?

var matrix:Matrix = new Matrix();
var stage_bg:MovieClip = new MovieClip();
var type:String = GradientType.LINEAR;
var spread:String = SpreadMethod.PAD;
var interpolation:String = InterpolationMethod.RGB;
var colours:Array = [0x000000,0x000000];
var alphas:Array = [.7,1.0];
var ratios:Array = [0,50];
matrix.createGradientBox (50,200);
stage_bg.graphics.beginGradientFill (type,colours,alphas,ratios,matrix,spread,interpolation);
stage_bg.graphics.drawRect (0.0, 0.0,50,200);
stage_bg.graphics.endFill ();
addChild (stage_bg);

Thanks in advance.

Posted 2 months ago
41362 enhancedmedia
150 posts
Exclusive author Referred at least one person Sold between 1 000 and 5 000 dollars

just rotate stage_bg by 90 degrees

Posted 2 months ago
24717 x360c
221 posts
Sold between 100 and 1 000 dollars Bought between 1 and 9 items

I was wondering if there was a more professional method..

Posted 2 months ago
41362 enhancedmedia
150 posts
Exclusive author Referred at least one person Sold between 1 000 and 5 000 dollars

you can add a third property in the matrix which is rotation by radians so u could have:

you need the extra bit to convert to degrees


matrix.createGradientBox (50,200,(Math.PI/180)*90)

Posted 2 months ago