在Flashdevelop中运行swf时,我可以使用项目属性指定flashplayer将打开的尺寸。
我想在IntelliJ中指定这些尺寸。我想这可以在运行配置的某个地方完成吗?
这可能吗?
谢谢!
答案 0 :(得分:4)
您需要将[SWF]元数据添加到主类:
[SWF(width="512", height="512")]
public class MySprite extends Sprite {
...
}
或
<s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">
<fx:Metadata>
[SWF(width="512", height="512")]
</fx:Metadata>
...
</s:Application>