默认情况下使我的项目最大化
我不太精通 flash,我有 ac#、java、c++ 背景,所以编码变得有点自然,
现在我的 flash 项目中正在播放三个 soundlides 项目。该项目具有三个按钮,可加载每个不同的声音幻灯片。
当同学和我的教授打开我的程序时,默认尺寸太小,现在当我单击 ctrl+enter 时,屏幕的底部和右下部分被切断......所以我必须最大化窗口最大化,这样我才能看到播放按钮?
im not too well versed in flash, i have a c#, java, c++ background so coding comes a little naturally
as of right now i have three soundslides projects playing in my flash project. The project has three buttons which load each different soundslide.
when classmates and my professor open my program the default size it too small, right now when i click ctrl+enter the bottom and bottom right portion of the screen are cut off...so i have to maximize the window maximize so i can see the play buttons?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
舞台[“displayState”] =“全屏”;
这将使 SWF 全屏显示,如果您将其放入文档类构造函数中,它将在 swf 加载时发生。
stage["displayState"]="fullScreen";
This will make the SWF go fullscreen, if you put this in your document class constructor it will happen as the swf loads.