Submit Hint Search The Forums LinksStatsPollsHeadlinesRSS
14,000 hints and counting!


Click here to return to the 'Set desktop pictures using AppleScript' hint
The following comments are owned by whoever posted them. This site is not responsible for what they say.
Set desktop pictures using AppleScript
Authored by: wallybear on Jul 24, '09 08:17:06AM

It is sufficient to change one of the parameters.
I use the following script that change and then reset the random order parameter:

tell application "System Events"
tell current desktop
set random order to false
set random order to true
end tell
end tell

the only drawback is that it changes the desktop picture twice (one for the "false" setting and one for the "true"); at the moment I've not found other tricks that fix this glitch.



[ Reply to This | # ]