vote up 0 vote down star

Does Air supports SVG and if it not possible is there another way to event sensitive graphics draw via JavaScript.

flag

60% accept rate

2 Answers

vote up 0 vote down check

But I found a way to draw vector graphics, using flash, over the html

air.Shape = window.runtime.flash.display.Shape;
this.shape = new air.Shape();
this.shape = new air.Shape();     
this.shape.graphics.lineStyle(1,0); 
this.shape.graphics.drawCircle(0,0,200); 
this.shape.graphics.endFill(); 
window.nativeWindow.stage.addChild(this.shape);
link|flag
vote up -1 vote down

Adobe Air has an embedded WebKit which partially supports SVG 1.1 As an alternative rendering engine in Adobe Air application you can use Flash, which is much based on vector graphics.

link|flag
Unfortunaly you're wrong. It based on webkit but no svg will be drawn. Maybe it will come with Air2 – eskimoblood Oct 26 at 11:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.