通过fscommand打开外部exe文件

时间:2015-07-20 15:12:53

标签: actionscript-3 flash

点击exe中的按钮,打开外部Flash projector文件时出现问题。我看到外部文件必须位于文件夹fscommand下。这就是代码;

private function Fnc(e:MouseEvent):void
{
    fscommand("exec", ".\\fscommand\\externalfile.exe");
    trace("***button pressed***");
}

但是我发现answer,现在我不确定我是否可以通过另一个flash exe打开一个flash exe。

增加: 我可以成功打开其他exe的Windows Media Player。所以答案可能就是这样,但我不知道。

1 个答案:

答案 0 :(得分:1)

我不知道为什么闪光灯投影机无法打开另一台!!当然它可以,它只是一个像任何其他exe文件的exe!

你在打开的exe的路径中只有一点错误,所以你应该写:

private function Fnc(e:MouseEvent):void
{
    // flash knows that the exe is in the fscommand dir
    fscommand("exec", "externalfile.exe");
    trace("***button pressed***");
}

看看这个非常简单的例子:

enter image description here

希望可以提供帮助。