up vote 1 down vote favorite
share [g+] share [fb]

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

link|improve this question

70% accept rate
feedback

2 Answers

up vote 1 down vote accepted

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|improve this answer
feedback

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|improve this answer
Unfortunaly you're wrong. It based on webkit but no svg will be drawn. Maybe it will come with Air2 – Andreas Köberle Oct 26 '09 at 11:18
feedback

Your Answer

 
or
required, but never shown

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