Hi,
I'm using
http://www.weberdesignlabs.com and I need to have the icons fade out in the beginning 100px
Meaning I only want to see them starting from 100px in
CODE
var mc:MovieClip = loader.createEmptyMovieClip("gradient_mc", loader.getNextHighestDepth());
matrix = new Matrix();
matrix.createGradientBox(loader._width+500,loader._height,reflectionRotation / 180 * Math.PI,0,0);
mc.beginGradientFill& #40;reflectionFillType,reflectionColors,reflectionAlphas,reflectionRatios,matrix
,reflectionSpreadMethod,reflectionInterpolationMethod,reflectionFocalPointRatio);
mc.moveTo(100,0);
mc.lineTo(0,loader._height);
mc.lineTo(loader._width,loader._height);
mc.lineTo(loader._width,0);
mc.lineTo(0,0);
mc.endFill();
Is this the right thing? or am I off by a long shot?
Thanks,