AS3
How can I remove the stroke across the top of the rectangle so that it fits nicely against the button that calls it? I just want the stroke on left, right, and bottom.
This is why I draw and "small code" most projects. I'd rather draw the complicated things but I'm determined to code more stuff.
This the bg rect for my custom drop down menu. Is it possible to remove the stroke on the top side?
var bgRectW:uint = 118; var bgRectH:uint = 140; var square:Shape = new Shape(); square.graphics.lineStyle(1, 0xCCCCCC); square.graphics.beginFill(0x000000, 1); square.graphics.drawRect(0, 0, bgRectW, bgRectH); square.graphics.endFill(); this.addChild(square); square.x = 6; square.y = 20;
[edit] never mind, I just gave up and drew it. Way easier.
That's definitely what I would do, too.

the more as3 I do, the more I just want to draw and make everything come together with as2.

glad we're still agreeing!
the world didn't end! hahaha