使用Adobe AIR中的参数向Startup文件夹添加快捷方式

时间:2008-08-20 13:38:54

标签: air adobe

我试图在Startup文件夹中包含一个指向我的应用程序的链接,并带有一个传递给程序的参数。

我认为如果我在本地创建快捷方式然后将其添加到我的源代码就行了。之后我可以在第一次运行时将其复制到Startup文件夹。

File.userDirectory.resolvePath("Start Menu\\Programs\\Startup\\startup.lnk");

但是,我试图在安装过程中发生这种情况。我看到在app.xml中有一些与安装相关的设置,但没有任何东西可以让我将它安装到两个文件夹,或者使用参数。

<!-- The subpath of the standard default installation location to use. Optional. -->
<!-- <installFolder></installFolder> -->

<!-- The subpath of the Windows Start/Programs menu to use. Optional. -->
<!-- <programMenuFolder></programMenuFolder> -->

1 个答案:

答案 0 :(得分:2)

我是Air的新手,但也没有找到任何方法来自定义安装过程。您似乎只限于应用程序代码。 (更新似乎更灵活。)

从您的示例中,您似乎希望每次Windows启动时都使用参数常量运行应用程序。所以你可能已经意识到你可以设置:

NativeApplication.nativeApplication.startAtLogin=true

当您的应用首次运行时您可以将它与您的参数结合在应用程序或用户目录的设置文件中,并完成您的需要吗?