Hi all,
Im basically doing some line art using drawRect, just to draw various 1px lines, whether it be 1px high and 100% wide or 1px wide and 100% high.
The complete flash movie is resizable (a requirement). At the moment as you’ll see in my pic attached, not all lines are being rendered the same. Now i know because im making the movie scale, the lines cannot remain at 1px, but what i dont understand is why some go to 2px while some are still 1px, then resize it, most go to 3px but some are 4px?
Like i said im drawing them with drawRect:
var line4 = new Sprite();
line4.graphics.beginFill(0x000000);
line4.graphics.drawRect(introPanel.width/4, 636, 1, 636/2);
line4.graphics.endFill();
Is there a better was to draw them? or is there some setting to not smooth them into a blured 2px instead of one?