On 8/20/06, tanja pislar <[EMAIL PROTECTED]> wrote: > neither can i :( > > On 8/20/06, Marcelo de Moraes Serpa <[EMAIL PROTECTED]> wrote: > > I can“t read french :( > >
For non french speaker, a very 'quick' translation. (It's been a long time since I wrote english) ____ the beginning of the post is about the fact that he discovered the AS3 compiler with the alpha version, named asc.jar Then he has just discovered an AS3 compiler named asc_authoring.jar in Flash9 and this compiler can be found here : C:\Program Files\Adobe\Flash 9 Public Alpha\en\Configuration\ActionScript 3.0 then it's just about the options of the compiler which can be obtained by java -jar asc_authoring.jar -h, I presume... Then comes the interesting part : java -jar asc_authoring.jar -import global.abc -import playerglobal.abc -swf TestGlobal,550,400 TestGlobal.as To compile you need two files with .abc extension. These files are like pre-compiled files for natives classes in the player. If you want to know the structure of these .abc files you can ask the compiler, with -m option, to make a file with extension ".il". It's a file which translate your code in an intermediate language (=> .il). You can do this: java -jar asc_authoring.jar -import global.abc -import playerglobal.abc -m -swf TestGlobal,550,400 TestGlobal.as you will obtain a TestGlobal.il file. An example can be found at http://iteratif.free.fr/archives/TestGlobal.il ----------- ++Stef -- (\__/) (='.'=) This is Bunny. Copy and paste Bunny into your (")_(") signature to help him gain world domination. _______________________________________________ osflash mailing list [email protected] http://osflash.org/mailman/listinfo/osflash_osflash.org
