Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Print ready vector graphics

Community Beginner ,
Feb 27, 2013 Feb 27, 2013

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

TOPICS
ActionScript
415
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Community Expert ,
Feb 27, 2013 Feb 27, 2013
LATEST

yes, check the graphics class:

var sp:Sprite=new Sprite();

with(sp.graphics){

beginFill(0xaa0000);

drawRectangle(0,0,100,30);

endFill();

}

addChild(sp);

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines