Voglio avere un avviso / finestra di dialogo per attivare periodicamente in foreground .
Ho provato una combinazione di AppleScript e launchd
e sono riuscito a far scattare periodicamente lo script (effettivamente convertito in un'app) tramite launchd. Tuttavia, la finestra di avviso non viene visualizzata di fronte a tutte le altre finestre (piuttosto completamente nascosta finché non registro la scheda, anche se viene avviata tramite launchd
). Come posso averlo davanti?
Il mio script è il seguente:
on run
activate me --> tried to get alert in foreground
--> didn't help, though
display alert "Should show up in foreground..."
end run
Il mio launch.plist è (in /Users/bernhard/Library/LaunchAgents/
):
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>bernhard.sitstraight.plist</string>
<key>Program</key>
<string>/Users/bernhard/programming/periodic.app/Contents/MacOS/applet</string>
<key>RunAtLoad</key>
<true/>
<key>StartInterval</key>
<integer>1200</integer>
</dict>
</plist>