Hello,
Lets say i have this code:
_root.createEmptyMovieClip(“one”,1);
with(one){
lineStyle(0,0x000000,100);
lineTo(100,100);
}
So this code basically makes a clip with a line drawn from (0,0) to (100,100).
What i want to know is how the line is being drawn?
what is between the two points? colored pixles?
If so how do i color them?
If you know the code behind this please show me if you can…
thanx in advance…