actionscript 3 - Problems with compiling multiple AS3 packages w/ant and mxmlc -
i'm trying extend bigbluebutton client proprietary classes. phone module, added file own code. when write own package name (org.mydomain.module.test ...) within file, compiler fails because can't find class mxml file. when use original package name (org.bigbluebutton.module.phone ...) compiles fine. when use different package name, file not included in compilation. how can change this?
this fails:
package org.mydomain.module.test { public class mytestclass { // code here } }
but works:
package org.bigbluebutton.modules.phone.test { public class mytestclass { // code here } }
fyi: bigbluebutton uses ant compile client.
you didn't put files on disk, package name should match file's path in project. case in both examples?
so when package name is: org.mydomain.module.test
the class file should saved in path:
my_project_path/src/org/mydomain/module/test
Comments
Post a Comment