Hi all,
An Applescript novice here I'm afraid. I'm looking to create a basic script that I can run at login that move all documents (.pds/jpeg/mov etc etc) from the desktop to a folder within Documents.
What happens is that the students constantly save work onto the desktop rather than Documents, meaning keeping tabs on thier work, and general state of the macs is a nightmare.
I have previously tried locking the desktop but this causes problems mounting disks and dvd burning so want to avoid this if possible.
I have tried the following scipt but get a "Handler can't handle objects of this class" Applescript error.
Thanks for any help guys
An Applescript novice here I'm afraid. I'm looking to create a basic script that I can run at login that move all documents (.pds/jpeg/mov etc etc) from the desktop to a folder within Documents.
What happens is that the students constantly save work onto the desktop rather than Documents, meaning keeping tabs on thier work, and general state of the macs is a nightmare.
I have previously tried locking the desktop but this causes problems mounting disks and dvd burning so want to avoid this if possible.
I have tried the following scipt but get a "Handler can't handle objects of this class" Applescript error.
PHP:
tell application "Finder"
move every file of folder "New Mac HD:Users:college:Desktop:mac scripts"
move to folder "New Mac HD:Users:college:Desktop:testmove"
end tell
Thanks for any help guys