2

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

在此处输入图像描述

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

这可能吗?

谢谢!

4

1 回答 1

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>
于 2012-07-04T08:11:27.723 回答