Hey All
I’m trying to setup this auto accept script for iChat to auto accept files from a specific buddy. But what once worked now gives an error -1708
Script
using terms from application "iChat"
on received text invitation theText from theBuddy for theChat
accept theChat
end received text invitation
on received audio invitation theText from theBuddy for theChat
if (screen sharing of theChat is none) then
accept theChat
end if
end received audio invitation
on received video invitation theText from theBuddy for theChat
if (screen sharing of theChat is none) then
accept theChat
end if
end received video invitation
on received file transfer invitation theFileTransfer
accept theFileTransfer
end received file transfer invitation
end using terms from
Issue:
script gives -1708 error
setup: drop script in library > scripts > ichat
- select a buddy
- command I
- alerts > Invitation to Share My screen
- run applescript > name of script above
Any help would be appreciated.