我想使用编译器常量来修改一些嵌入文件的路径,对于不同的项目(共享相同的源代码)是不同的
IE。转换这个:
[嵌入(source = 'mypath/myfile.png')] public static const myimage:Class;
变成类似的东西:
[嵌入(source = CONFIG::gfx_path+'myfile.png')] public static const myimage:Class;
其中 CONFIG::gfx_path 是 'mypath/'
问题是它没有编译它(错误:无效的元数据)。事实上,你甚至不能这样做:“mypath/”+“myfile.png”,因为它会给出同样的错误。
谢谢!