site_archiver@lists.apple.com Delivered-To: darwin-dev@lists.apple.com -Ethan On Jul 22, 2008, at 2:45 PM, Shayne Wissler wrote: Thanks again Ethan for your help. This code has the "kicking" effect I was after for *display sleep*, but has no effect on the screensaver: I can probably get by with just this by disabling the screensaver, but it'd be nice if the screensaver could be "kicked" as well. Any ideas? Shayne It's described in the 10.5 Darwin release notes here: http://developer.apple.com/releasenotes/Darwin/RN-IOKitPowerManagment/index.... And discussed in practice here on a cocoa mailing list: http://www.cocoabuilder.com/archive/message/cocoa/2008/6/19/210697 -Ethan On Jul 18, 2008, at 4:24 PM, Shayne Wissler wrote: Hello, Any pointers to a relevant API would be appreciated. Shayne _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (Darwin-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-dev/ebold%40apple.com _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-dev mailing list (Darwin-dev@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-dev/site_archiver%40lists.appl... Correct - IOPMAssertionTypeNoDisplaySleep, as written today, will not keep the ScreenSaver off. This is a bug & an oversight. You can expect a future release of OS X to also keep the ScreenSaver off when NoDisplaySleep is asserted. IOPMAssertionID assertionID; IOReturn err = IOPMAssertionCreate(kIOPMAssertionTypeNoDisplaySleep, kIOPMAssertionLevelOn, &assertionID); err = IOPMAssertionRelease(assertionID); On Fri, Jul 18, 2008 at 5:49 PM, Ethan Bold <ebold@apple.com> wrote: Check out IOPMAssertionCreate() with type kIOPMAssertionTypeNoDisplaySleep. This is new in 10.5. I need an API call/approach for "kicking" the the display-sleep/screensaver timers, as if the user had moved the mouse or pressed a key. I need a program to be able to wake up the display and/or stop the screensaver, without having the user interact with the mouse or keyboard. (E.g., for an app used in a classroom situation to broadcast a message to a Mac hanging on a wall that happened to be in sleep mode). This email sent to ebold@apple.com This email sent to site_archiver@lists.apple.com
participants (1)
-
Ethan Bold