Scripting the Scheduler
Start the Scheduler
Start the Scheduler queuing and performing Events.
tell application "Power Manager Scripting"
tell scheduler to set enabled to true
end tell
Stop the Scheduler
Stop the Scheduler. Stops Events being queued and performed.
tell application "Power Manager Scripting"
tell scheduler to set enabled to false
end tell
Toggle the Scheduler’s State
Toggle the Scheduler’s start/stop state.
- If the Scheduler is running, stop performing Events.
- If the Scheduler is stopped, start performing Events.
tell application "Power Manager Scripting"
tell scheduler to set enabled to (not enabled)
end tell