Mike,

Just to ease my confused mind:

> Of course, I am writing things along the same lines as the AS visitors BUT
> there is a semantic difference that we are not exactly translating MXML AST
> to js, so I need a bit more time figuring out the abstractions.

"not EXACTLY translating", what does that mean? To what else but js
will we be translating MXML? Won't I be able to emit this:

<s:Button id="myButton" x="25" y="100" label="Click me" />

to:

var myButton = new Button();
myButton.x = 25;
myButton.y = 100;
myButton.label = "Click me";

(overly simplified example, but you get my drift)

EdB



--
Ix Multimedia Software

Jan Luykenstraat 27
3521 VB Utrecht

T. 06-51952295
I. www.ixsoftware.nl

Reply via email to