中心swf在屏幕上(没有HTML)

时间:2012-06-16 10:24:01

标签: windows actionscript-3 flash actionscript-2

我创建了一个flash动画,我想将其作为.exe文件打开。如何打开屏幕中心的exe?我的项目使用的是AS3,但它也可以是as2。我只需要在Windows操作系统上打开这个exe。

2 个答案:

答案 0 :(得分:1)

我不知道如何在纯闪存中执行此操作,但如果使用AIR,则很容易做到。

以下是一个以窗口为中心的示例:

import flash.system.Capabilities
public function setupWindow():void
{
    var screenX:uint = Capabilities.screenResolutionX
    var screenY:uint = Capabilities.screenResolutionY
    stage.nativeWindow.x = (screenX-stage.nativeWindow.width)/2
    stage.nativeWindow.y = (screenY-stage.nativeWindow.height)/2
}

答案 1 :(得分:0)

闪存窗口具有属性“Startposition”;将其设置为“CenterScreen”