我有一个Silverlight应用程序(“file1.xap” - 不是“.app”,它是“.xap”)。如何在MAC OS X上使用AppleScript安装和运行它?
答案 0 :(得分:1)
除了您的applet可能无权在Mac OS X 10.7及更高版本上安装任何内容之外,您应该能够将应用程序包从任何位置复制到应用程序文件夹:
tell application "Finder"
copy file "Your Application Name.app" of disk "Your Application Name" to the application folder of the startup disk
open file "TextEdit.app" of the application folder of the startup disk
end tell
如果这对您不起作用,那么您需要解释更多。
答案 1 :(得分:1)
您需要确保.xap文件已启用Out-Of-Browser(我怀疑它是)。然后,不是直接运行.xap文件,而是在浏览器中打开.xap并右键单击它以“安装”.xap文件。然后Silverlight将下载一个可以在OSX上运行的.app文件。