Hello everybody,
Is it possible to link to swc library with as3compile.
For example, I have the following class:
----------
package
{
import flash.display.*;
import com.blabla.Layer;
public class Kk extends com.blabla.Layer
{
public function Kk()
{
super();
return;
}
}
}
----------
where com.blabla.Layer is already compiled in a swc file (let's say
Blabla.swc).
With mxmlc, I would compile this with the following command:
"mxmlc.exe" Kk.as -output Kk.swf -target-player "10.0.0"
-compiler.as3 -compiler.library-path Blabla.swc"
Is it possible to achieve such a thing with as3compile ?
Thank you,
Mathieu