I found an iPod sync applescript on the web and I tried adapting it to automatically sync the iPod every minute. I don't think it works, I was wondering if someone could help me. Thanks!
property minutesBetweensync : 1
tell application "iTunes"
repeat with s in sources
if (kind of s is iPod) then update s
return minutesBetweensync * 60
end repeat
end tell
property minutesBetweensync : 1
tell application "iTunes"
repeat with s in sources
if (kind of s is iPod) then update s
return minutesBetweensync * 60
end repeat
end tell