Support
All support resources for our products. Here you can find answers to frequently asked questions, discuss with other users, recover a lost license code or file a support request.
Forum closed
This forum was closed and turned into an archive effective April 21, 2018. It is no longer possible to create new topics or reply to existing topics.

Thanks everyone for all the great questions and contributions over the years.

Please use the Contact form to get in touch.

Remote Buddy Forum

Overview 

AuthorThread
User

28.08.2010 10:43:02
EyeTV Receiver + EyeTV Remote, shut down player window only
View

This posting is older than 6 months and can contain outdated information.
Hi Guys,

I've got a Mac Mini with EyeTV + Plesk. I'm using a small Apple Script to switch between applications via the remote. 
When EyeTV quits, so does the receiver thus it's not possible to use the EyeTV remote anymore. The solution would be to close ONLY the playing window and not the app.

Does anybody know how to close the only the playing window without quiting Plesk?

Best regards, John 

These entries from the FAQ may be relevant to this topic:

Hardware - Apple® Remote
Hardware - EyeTV Receiver
User

29.08.2010 17:20:24
Re: EyeTV Receiver + EyeTV Remote, shut down player window only
View

This posting is older than 6 months and can contain outdated information.
Nevermind, found it. Now using this Apple Script (Stored at the red button)

if appIsRunning("Plex") then 
tell application "Plex" 
activate 
quit 
end tell 
tell application "EyeTV" 
activate 
end tell 
tell application "System Events" 
keystroke "o" using {command down} 
delay 1 
keystroke "0" using {command down} 
end tell 
else 
tell application "EyeTV" 
activate 
close windows 
end tell 
tell application "Plex" 
activate 
end tell 
break 
end if

on appIsRunning(appName) 
tell application "System Events" to (name of processes) contains appName 
end appIsRunning

Last edited: 29.08.2010 17:20:38