在 Flashdevelop 中运行 swf 时,我可以使用项目属性指定 flashplayer 将打开的尺寸。
我想在 IntelliJ 中指定这些尺寸。我认为这可以在运行配置的某个地方完成?
这可能吗?
谢谢!
在 Flashdevelop 中运行 swf 时,我可以使用项目属性指定 flashplayer 将打开的尺寸。
我想在 IntelliJ 中指定这些尺寸。我认为这可以在运行配置的某个地方完成?
这可能吗?
谢谢!
您需要将 [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>