使用Intellij启动“Flash App”运行配置,如何添加参数以使Flash播放器启动指定大小?

时间:2012-07-03 02:15:09

标签: flash intellij-idea

在Flashdevelop中运行swf时,我可以使用项目属性指定flashplayer将打开的尺寸。

enter image description here

我想在IntelliJ中指定这些尺寸。我想这可以在运行配置的某个地方完成吗?

这可能吗?

谢谢!

1 个答案:

答案 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>