Skip to main content
Participant
February 27, 2013
Question

Print ready vector graphics

  • February 27, 2013
  • 1 reply
  • 424 views

Is it possible to create a print ready vector graphic of a game screen using ActionScript?

This topic has been closed for replies.

1 reply

kglad
Community Expert
Community Expert
February 27, 2013

yes, check the graphics class:

var sp:Sprite=new Sprite();

with(sp.graphics){

beginFill(0xaa0000);

drawRectangle(0,0,100,30);

endFill();

}

addChild(sp);