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

06.03.2010 18:10:43
How to easily switch between EyeTV and Plex?
View

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

Without RemoteBuddy installed, EyeTV offers a simple way to get into Front Row easily by just holding down the menu button. 
I would like to get this feature to work with Plex instead. What would I have to do to in RemoteBuddy fix it? 

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

Hardware - Apple® Remote
Hardware - EyeTV Receiver
User

07.03.2010 18:47:41
Re: How to easily switch between EyeTV and Plex?
View

This posting is older than 6 months and can contain outdated information.
You can easily switch between applications using Remote Buddy out of the box.

If you want to dedicate a button on your remote to switch to another application B while being in application A: 
1) go to Prefs > Mapping > [Application A] 
2) select the action "Behaviour > Activate Behaviour [Application B]" for the button of your choice

Best regards, 
Felix Schwarz 

User

08.03.2010 18:49:24
Re: How to easily switch between EyeTV and Plex?
View

This posting is older than 6 months and can contain outdated information.
Thanks for your reply.

Yeah, it's amazing how much you can do with RB. Best 20 euros ever spent.

I currently switch by bringing up the RB menu. I'm trying to simplify this a bit. 
The problem is that I have to quit Plex (because it is in fullscreen mode and always on top) and then start EyeTV so I need at least two button presses, and it takes time. The other way around is the same; I need to pause or quit EyeTV to save resources and then start Plex again.

I understand this is not a functionality of RB but the programs themselves, but I can imagine that more people want to use RB for the same purpose so I thought I'd ask. I am trying to write an AppleScript to hide Plex and open EyeTV and another one to pause EyeTV and bring Plex back up. There might be easier solutions though. And nicer ones too - AS is quite an ugly workaround.

Any ideas are welcome :-)

EDIT: if anyone's interested, this is my AppleScript solution so far. I think it works pretty well: 
http://forums.plexapp.com/index.php?/topic/13392-an-easy-way-to-switch-between-plex-and-eyetv/

Last edited: 08.03.2010 20:45:50

Last edited: 08.03.2010 20:46:03 

User

17.03.2010 15:39:46
Re: Re: How to easily switch between EyeTV and Plex?
View

This posting is older than 6 months and can contain outdated information.
Thanks for your explanations.

You can create custom actions in Remote Buddy to achieve what you want to do.

For pausing EyeTV and launching Plex, you can use this AppleScript snippet:

tell application "EyeTV" to pause 
tell application "Plex" to activate

Similiarly, for quitting EyeTV and launching Plex:

tell application "EyeTV" to quit 
tell application "Plex" to activate

... and vice versa:

tell application "Plex" to quit 
tell application "EyeTV" to activate

Best regards, 
Felix Schwarz