Automation: Difference between revisions

From Medien Wiki
Line 26: Line 26:
=== ScreenUtil ===
=== ScreenUtil ===
[http://www.osxsoft.net ScreenUtil] lets you set the screen resolution over the command line.
[http://www.osxsoft.net ScreenUtil] lets you set the screen resolution over the command line.
== AppleScript ==
Unfortunately on can't use the control panel to only switch on the computer at certain days of the week. What you can do is check the day of the week and then shut the computer down again if it isn't the right day.
<source lang="applescript">
-- wenn nicht Mittwoch, Samstag oder Sonntag it, dann schalte den rechner wieder aus.
set closed_Days to {Monday, Tuesday, Thursday, Friday}
if closed_Days contains ((current date)'s weekday) then
tell application "System Events"
shut down
end tell
return
end if
-- Systemlautstärke voll
set volume 5
-- QuickTime starten
tell application "Finder"
activate
open application file "QuickTime Player.app" of folder "Applications" of startup disk
end tell
tell application "QuickTime Player"
activate
open file "Macintosh HD:Users:name:Documents:Folder:subfolder:my_sound.wav"
set looping of document "my_sound.wav" to true
set audio volume of document "my_sound.wav" to 0.5
play document "my_sound.wav"
end tell
</source>
== Automator ==