Similar to a topic that was posted a year ago, but never resolved.
I’m trying to send some commands to iTunes on a local network computer. For some reason this works:
tell application "iTunes" of machine "eppc://user:pass@computer.local"
playpause
end tell
But this does not:
set remoteMachine to "eppc://user:pass@computer.local"
tell application "iTunes" of machine remoteMachine
playpause
end tell
I get the error “Can’t find remote machine.” Any ideas?