var s:Sprite = new Sprite(); var g:Graphics = s.graphics; g.beginFill(0xFF0000, 0.1); g.drawRect(0, 0, 800, 800); g.endFill(); s.alpha = 120; addChild(s); trace(s.alpha);