RE: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files

2006-07-07 Thread Tom Versweyveld | VERSO
:[EMAIL PROTECTED] On Behalf Of Mike Chambers Sent: woensdag 5 juli 2006 22:54 To: Flashcoders mailing list Subject: Re: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files There is not support for using the Flex Framework in an AS only project. While it is theoretically possible, you

Re: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files

2006-07-06 Thread Zárate
Hi again, I was asking for a little bit more info on: you would have to manually bootstrap a lot of the application initialization code that Flex handles (something which would be rather complex) Are you talking about initializing something to allow Events to work or stuff like that? Thanks

Re: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files

2006-07-05 Thread Beverly Guillermo
Hello, I think it's infinitely more complicated but you could look at the generated actionscript files that get generated after compiling the mxml code. Use the -keep as an argument to mxmlc. For simpler examples, in the Actionscript 3.0 Language Reference document (or the LiveDocs) there are

RE: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files

2006-07-05 Thread Mark Lapasa
] Compiling just from AS3 code, no mxml files Hello, I think it's infinitely more complicated but you could look at the generated actionscript files that get generated after compiling the mxml code. Use the -keep as an argument to mxmlc. For simpler examples, in the Actionscript 3.0 Language

Re: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files

2006-07-05 Thread Zárate
Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Beverly Guillermo Sent: Wednesday, July 05, 2006 3:22 PM To: Flashcoders mailing list Subject: Re: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files Hello, I think it's infinitely more complicated but you could look

Re: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files

2006-07-05 Thread Mike Chambers
There is not support for using the Flex Framework in an AS only project. While it is theoretically possible, you would have to manually bootstrap a lot of the application initialization code that Flex handles (something which would be rather complex). If you want to play with the

Re: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files

2006-07-05 Thread Zárate
Hi again, Thanks Mike for the info but could you explain it a little bit more or point us to some place describing the process? I´m fairly sure I won´t be the only one trying to create swfs without the Flex Framework. I haven´t done the test yet (I will, sure) but, which is the less size

Re: [Flashcoders] [AS3] Compiling just from AS3 code, no mxml files

2006-07-05 Thread Mike Chambers
If you want to create a SWF that doesnt use the Flex Framework: --HelloWorld.as-- package { import flash.display.Sprite; public class HelloWorld extends Sprite; { public funciton HelloWorld() { trace(Hello World);