iCal to iPod manually, hope this help until iSync comes along.
Will try to write a small app to automate this once I figured out how to check if iPod is mounted, anyone with any idea?
[ 09-12-2002: 留言編輯者: oeyvind ]
iCal to iPod manually
版主: ross_tt、bryanchang、digdog、chester
iCal to iPod manually
oeyvind,
>> how to check if iPod is mounted
Unix way, write a daemon to monitor /Volumes.
Applescript way, attach a folder action script to /Volumes; or use an idle handler.
However, using folder action script, System Events crashes when the firewire disk is disconnected (well, I don't have an iPod).
Anyway, below is the relevant applescript to your shell script in your homepage, have fun [img]images/smiles/icon_smile.gif[/img]
-- script starts
-- change the following line to match the name of your iPod
set iPodName to "iPod"
set sourceFolder to (((path to current user folder) as string) & "Library:calendars:")
tell application "Finder" to duplicate alias sourceFolder to disk iPodName with replacing
-- script ends
>> how to check if iPod is mounted
Unix way, write a daemon to monitor /Volumes.
Applescript way, attach a folder action script to /Volumes; or use an idle handler.
However, using folder action script, System Events crashes when the firewire disk is disconnected (well, I don't have an iPod).
Anyway, below is the relevant applescript to your shell script in your homepage, have fun [img]images/smiles/icon_smile.gif[/img]
-- script starts
-- change the following line to match the name of your iPod
set iPodName to "iPod"
set sourceFolder to (((path to current user folder) as string) & "Library:calendars:")
tell application "Finder" to duplicate alias sourceFolder to disk iPodName with replacing
-- script ends
iCal to iPod manually
stupid me, forgotten that Script Menu.menu does UNIX shell scripts as well... ^^
Updated now with a way to automate the iCal to iPod syncing.
See here for more info.
Updated now with a way to automate the iCal to iPod syncing.
See here for more info.