Copy link to clipboard
Copied
Is it possible to create a print ready vector graphic of a game screen using ActionScript?
Copy link to clipboard
Copied
yes, check the graphics class:
var sp:Sprite=new Sprite();
with(sp.graphics){
beginFill(0xaa0000);
drawRectangle(0,0,100,30);
endFill();
}
addChild(sp);
Find more inspiration, events, and resources on the new Adobe Community
Explore Now