Feb 14, '07 07:30:02AM • Contributed by: Anonymous
tell application "iTunes"
set pl to (some playlist whose special kind is Podcasts)
set ofi to fixed indexing
set fixed indexing to true
repeat with t from 1 to (count of file tracks of pl)
set tr to file track t of pl
try
if tr's played count is 0 then
set tr's played count to 1
end if
end try
end repeat
set fixed indexing to ofi
end tell
Just save this to a file, create an iCal event that repeats daily, and in the event's Alarm field, choose Run Script and select the script file you just created.
