Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如果我使用 FlashDevelop 工具在纯 AS3 中进行开发,如何设置初始阶段大小(高度/宽度)?
您可以右键单击您的项目并转到属性以在那里设置尺寸,或者您可以将以下内容放在您的主类声明中:
[SWF(width="1280", height="800", backgroundColor="#000000", frameRate="30")] public class Main extends Sprite { ... }