我寫了兩個applescripts,以便我的妻子可以輕鬆地啓動mt-daapd並關閉它。它們在腳本編輯器應用程序中運行良好,但是當我將它們編譯爲獨立應用程序時,這些應用程序會在我第一次測試它們時運行。然後他們讓我難堪,因爲我驕傲地向我的妻子炫耀他們。我看到「開放」動畫,然後他們就坐在那裏。我之前創建了其他獨立應用程序,但這並未發生。如何診斷在啓動時退出的已編譯Applescript?
我試着將應用程序類型更改爲一個包(同樣的問題)。我甚至嘗試通過gdb附加到可執行文件,以查看是否可以打破某些魔術來告訴我發生了什麼。我查看了控制檯的一些信息。沒有什麼是這些劇本笑了我的臉。
我該如何解決這個問題?
我已經包含下面的一個腳本;第二個幾乎是一樣的。我正在運行10.5.8。
property userpassword : ""
if userpassword is "" then
display dialog "Please enter your user password:" default answer "" with hidden answer
set userpassword to text returned of result
set the_password to "Undefined"
repeat until the_password is "Correct"
try
do shell script "/opt/local/sbin/mt-daapd -c /etc/mt-daapd.conf" password userpassword with administrator privileges
set the_password to "Correct"
on error
display dialog "Sorry, the password entered was not correct. Please try again:" default answer "" with hidden answer
set userpassword to text returned of result
end try
end repeat
if the_password is "Correct" then
display dialog "Your music is being shared!" buttons {"Done"} default button "Done"
end if
end if
在正規的AppleScript,所有的全局變量都保存與腳本。 – 2011-12-08 02:40:20