Plex Forums: miniharmony unofficial discussion - Plex Forums

Jump to content

  • 9 Pages +
  • « First
  • 3
  • 4
  • 5
  • 6
  • 7
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

miniharmony unofficial discussion Getting harmony and plex to work with channel buttons

#81 User is offline   PlexUser-P 

  • Member
  • PipPip
  • Group: Members
  • Posts: 24
  • Joined: 28-September 10

Posted 14 October 2010 - 03:52 AM

View Postmichielm, on 13 October 2010 - 06:31 AM, said:

Wow! Thanks!!! This will be a thing for the weekend now:) Will report back later!
Bdw... it does not matter that the number of channels go beyond the F14 hotkey? Maybe I am confused, will try it out and report back later! Thx!!


When you watch Nuno's video and he's showing the short cuts to watch tv, start google, and play hulu he's using the "Favorite Channels" function of the harmony remote. If you go through his blog he shows you how to set it up on the harmony side. Once that's set up you use remote buddy, the script, and keyboard.xml to get it to work. If you look at my spreadsheet you'll see a heading called "Remote Buddy Number Keypad Mapping." On the right hand side of those boxes is a number 011, 012, 013 ..... those are the channel numbers that you'll use on your harmony remotes "Favorite Channels" function. they can be any 3 number combination that you want, or you can use mine.
0

#82 User is offline   michielm 

  • Member
  • PipPip
  • Group: Members
  • Posts: 23
  • Joined: 10-January 10

Posted 14 October 2010 - 11:20 AM

View PostPlexUser-P, on 14 October 2010 - 03:52 AM, said:

When you watch Nuno's video and he's showing the short cuts to watch tv, start google, and play hulu he's using the "Favorite Channels" function of the harmony remote. If you go through his blog he shows you how to set it up on the harmony side. Once that's set up you use remote buddy, the script, and keyboard.xml to get it to work. If you look at my spreadsheet you'll see a heading called "Remote Buddy Number Keypad Mapping." On the right hand side of those boxes is a number 011, 012, 013 ..... those are the channel numbers that you'll use on your harmony remotes "Favorite Channels" function. they can be any 3 number combination that you want, or you can use mine.



Hi! Yes, I get that part. I think I am somehow stuck in my head with the following:
- I have 20 channels I'd like to map
- but there are only 14 function keys to map the channels to in keyboard.xml file
So how do I go beyond 14? Is that possible at all?

I was thinking to somehow bypass the whole keyboard.xml file/ functionkey limit if it would be possible to launch e.g. "ActivateWindow(10024,plex://yourmachine.local./video/netflix/,return)" directly from Remote Buddy with e.g. apple script (no idea if possible...), so:
Channel 012 = Netflix
in Remote Buddy behind the 2 key I would add:
- open plex,
- wait a little,
- activatewindow with Apple Sctipt (no idea if possible and maybe that is too far fetched:)

That way I could go beyond the 14 function keys... but like I said maybe I am just thinking this the wrong way?
0

#83 User is offline   PlexUser-P 

  • Member
  • PipPip
  • Group: Members
  • Posts: 24
  • Joined: 28-September 10

Posted 14 October 2010 - 04:51 PM

View Postmichielm, on 14 October 2010 - 11:20 AM, said:

Hi! Yes, I get that part. I think I am somehow stuck in my head with the following:
- I have 20 channels I'd like to map
- but there are only 14 function keys to map the channels to in keyboard.xml file
So how do I go beyond 14? Is that possible at all?

I was thinking to somehow bypass the whole keyboard.xml file/ functionkey limit if it would be possible to launch e.g. "ActivateWindow(10024,plex://yourmachine.local./video/netflix/,return)" directly from Remote Buddy with e.g. apple script (no idea if possible...), so:
Channel 012 = Netflix
in Remote Buddy behind the 2 key I would add:
- open plex,
- wait a little,
- activatewindow with Apple Sctipt (no idea if possible and maybe that is too far fetched:)

That way I could go beyond the 14 function keys... but like I said maybe I am just thinking this the wrong way?



Your looking at it wrong, got to http://miniharmony.b...-one-to-be.html and read it all the way through, then come back and read my last post, that should give you an idea as to what you need to do. Remember you're not using the function keys, your using the "Favorite Channels" on the harmony remote.
0

#84 User is offline   PlexUser-P 

  • Member
  • PipPip
  • Group: Members
  • Posts: 24
  • Joined: 28-September 10

Posted 16 October 2010 - 06:16 PM

View PostPlexUser-P, on 14 October 2010 - 04:51 PM, said:

Your looking at it wrong, got to http://miniharmony.b...-one-to-be.html and read it all the way through, then come back and read my last post, that should give you an idea as to what you need to do. Remember you're not using the function keys, your using the "Favorite Channels" on the harmony remote.



Michielm,

I was rereading your last post and I realized I interpreted it wrong myself. You're asking how to assign hotkeys to your shortcuts past the F14 key. So all you have to do is pick a letter a-z and assign it in the keyboard.xml file.

For instance I use the "T" key to launch netflix in plex.

<keymap>
<global>
<keyboard>
<F2>ActivateWindow(10024,plex://Patrick.local./library/sections/2/all/,return)</F2>
<F3>ActivateWindow(10024,plex://Patrick.local./library/sections/1/all/,return)</F3>
<t>ActivateWindow(10024,plex://Patrick.local./video/netflix/,return)</t>
<F5>ActivateWindow(10501,plex://Lola.local./music/iTunes/,return)</F5>
</keyboard>
</global>
</keymap>

Then like before you use your remote buddy action to send the "T" keystroke to plex

FYI the keyboard.xml file overrides the built in keymappings that come with plex.
0

#85 User is offline   michielm 

  • Member
  • PipPip
  • Group: Members
  • Posts: 23
  • Joined: 10-January 10

Posted 17 October 2010 - 08:18 AM

View PostPlexUser-P, on 16 October 2010 - 06:16 PM, said:

Michielm,

I was rereading your last post and I realized I interpreted it wrong myself. You're asking how to assign hotkeys to your shortcuts past the F14 key. So all you have to do is pick a letter a-z and assign it in the keyboard.xml file.

For instance I use the "T" key to launch netflix in plex.

<keymap>
<global>
<keyboard>
<F2>ActivateWindow(10024,plex://Patrick.local./library/sections/2/all/,return)</F2>
<F3>ActivateWindow(10024,plex://Patrick.local./library/sections/1/all/,return)</F3>
<t>ActivateWindow(10024,plex://Patrick.local./video/netflix/,return)</t>
<F5>ActivateWindow(10501,plex://Lola.local./music/iTunes/,return)</F5>
</keyboard>
</global>
</keymap>

Then like before you use your remote buddy action to send the "T" keystroke to plex

FYI the keyboard.xml file overrides the built in keymappings that come with plex.



It is that simple:) WOW! Thanks a bunch!!!!! Now I will be in plex-harmony glory soon:)!

Michiel
0

#86 User is offline   thegreatgumbino 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 06-August 10

Posted 17 October 2010 - 01:09 PM

I've been away from the forum for a while & just wanted to say thanks to PlexUser-P for the additional information / clarifications. I'm stoked to go through these in detail on my machine in the next week. Can't wait to take my setup to the next level.

I see you mentioned trying to put together on single how to that details the setup. I've seen several people mention the possibility of doing so, but none that have followed through. I know it's a time consuming task, but I think many folks (myself included) would greatly benefit from this.

Kudos and thanks for your help.
0

#87 User is offline   PlexUser-P 

  • Member
  • PipPip
  • Group: Members
  • Posts: 24
  • Joined: 28-September 10

Posted 19 October 2010 - 09:30 PM

View Postthegreatgumbino, on 17 October 2010 - 01:09 PM, said:

I've been away from the forum for a while & just wanted to say thanks to PlexUser-P for the additional information / clarifications. I'm stoked to go through these in detail on my machine in the next week. Can't wait to take my setup to the next level.

I see you mentioned trying to put together on single how to that details the setup. I've seen several people mention the possibility of doing so, but none that have followed through. I know it's a time consuming task, but I think many folks (myself included) would greatly benefit from this.

Kudos and thanks for your help.


Thanks.

I've got some time now and I should start taking screen shots. That said has anyone had any luck with kylo and remote buddy?
0

#88 User is offline   irishv 

  • Member
  • PipPip
  • Group: Members
  • Posts: 61
  • Joined: 28-June 10

Posted 25 October 2010 - 02:13 AM

View Postthegreatgumbino, on 17 October 2010 - 01:09 PM, said:

I see you mentioned trying to put together on single how to that details the setup. I've seen several people mention the possibility of doing so, but none that have followed through. I know it's a time consuming task, but I think many folks (myself included) would greatly benefit from this.



After over a month I finally had some time to sit down and update my Harmony settings to work properly with my Mac Mini. It isn't perfect yet, but the primary shortcuts are in place. I don't have time for a full guide yet, but thought I would pass on solutions to a couple of the issues I faced.

My setup is slightly different from what Nuno outlined. While I initially programmed favorites in the Logitech software and planned to use the custom behaviors in RemoteBuddy, I found using the regular activity buttons on the Harmony 880 much easier. You cannot use images and are limited to 3 pages, which totals 24 buttons (more than I am currently using). I found this method easier because all that is required from the RemoteBuddy side of things is creating a custom global action (Behavior Construction Kit -> Action Factory). I think the advantage for Nuno's method is more possible buttons. I imagine the implementation of favorites on the One is better than on the 880, so that might play a factor as well.

I created a custom action for each shortcut (Open EyeTV, Open Hulu Desktop, Open Plex - All Movies, Open Plex - TV Shows, Open Plex - ESPN3, Open Plex - Youtube, etc). Each action starts with "Behaviour Action: Quite currently controlled application" and then "Behaviour Action: Activate 'program' Behaviour". For the Plex shortcuts, a 2 second delay and then a keystroke with a function key (F1, F2, F3, etc) follows. The only tricks here were ensuring each action is globally available (Metadata tab, check Action globally available) and changing the Keystrock operation to "Single key press on button press". My mini opens Plex on boot, so from there clicking any of these links will close the current application and launch the new one.

In the Remote Buddy preferences it is now just a matter of selecting the correct action in the Global mapping section. All the custom actions should be available under Miscellaneous. Over the next week or two I will look into Applescript to keep from closing Plex and reopening if moving in between sections and also to keep EyeTV from quitting if a show is being recorded.

Without Remote Buddy, the Harmony remote works perfectly with Plex. All you need to do is update the harmony.xml keymap file. It took me a while to realize I needed to use the regular keyboard.xml keymap file to pass the function keys to Plex. You don't need to map things exactly, but I chose to use F1 in the Logitech software = F1 in the Remote Buddy action = F1 in the keyboard.xml file. The keyboard.xml file is where you need to have the shortcuts to open specific folders or plugins in Plex. Changing the harmony.xml file will do nothing when you are using RB.

The hardest part is making sure you have the right keys identified because Remote Buddy relies on virtual Apple remotes for all the Logitech hardware.
0

#89 User is offline   purdueu02 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 2
  • Joined: 25-October 10

Posted 25 October 2010 - 06:57 PM

Hello in the episode 3 around step 8 its talks about "Press each button of the Harmony until you see 10 entries in the "Pair with selected remote" panel."

My question is what are the buttons I press on the harmony to get the 10 apple remotes to display.
0

#90 User is offline   thegreatgumbino 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 06-August 10

Posted 26 October 2010 - 03:07 PM

View Postpurdueu02, on 25 October 2010 - 06:57 PM, said:

Hello in the episode 3 around step 8 its talks about "Press each button of the Harmony until you see 10 entries in the "Pair with selected remote" panel."

My question is what are the buttons I press on the harmony to get the 10 apple remotes to display.


Just start at the top with "activities" and work your way down the remote making sure to press each button. It will capture all 10 apple remotes.
0

#91 User is offline   PlexUser-P 

  • Member
  • PipPip
  • Group: Members
  • Posts: 24
  • Joined: 28-September 10

Posted 26 October 2010 - 08:05 PM

View Postmichielm, on 17 October 2010 - 08:18 AM, said:

It is that simple:) WOW! Thanks a bunch!!!!! Now I will be in plex-harmony glory soon:)!

Michiel


Michiel,

Have you had a chance to set up your harmony and if so how did it go?
0

#92 User is offline   PlexUser-P 

  • Member
  • PipPip
  • Group: Members
  • Posts: 24
  • Joined: 28-September 10

Posted 27 October 2010 - 01:30 AM

View Postthegreatgumbino, on 17 October 2010 - 01:09 PM, said:

I've been away from the forum for a while & just wanted to say thanks to PlexUser-P for the additional information / clarifications. I'm stoked to go through these in detail on my machine in the next week. Can't wait to take my setup to the next level.

I see you mentioned trying to put together on single how to that details the setup. I've seen several people mention the possibility of doing so, but none that have followed through. I know it's a time consuming task, but I think many folks (myself included) would greatly benefit from this.

Kudos and thanks for your help.


thegreatgumbino,

How do you feel about doing some proof reading for me, I've almost completed the how to.
0

#93 User is offline   thegreatgumbino 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 6
  • Joined: 06-August 10

Posted 27 October 2010 - 02:38 AM

View PostPlexUser-P, on 27 October 2010 - 01:30 AM, said:

thegreatgumbino,

How do you feel about doing some proof reading for me, I've almost completed the how to.


I'd love to help, PM sent.
0

#94 User is offline   SkuiD87 

  • Dedicated Member
  • PipPipPip
  • Group: Members
  • Posts: 212
  • Joined: 06-June 10
  • Gender:Male

Posted 27 October 2010 - 09:34 AM

View PostPlexUser-P, on 27 October 2010 - 01:30 AM, said:

thegreatgumbino,

How do you feel about doing some proof reading for me, I've almost completed the how to.


I'd be happy to help proof read and also put forward suggestions for the guide itself. I managed to learn the hard way by collating bits and pieces of informations from different sources, but I think I have a fairly good understanding of the process. I was even thinking of putting together a basic guide myself!

Probably makes more sense to collaborate.

Drop me a PM & I'll help...
ATV2 : iOS 4.4.4 (Jailbroken)
PLEX : 0.10b3

Hardware:
iMac 27" 2.8GHz i7 (Quadcore) 8GB RAM
Storage:
4TB External HDD (WD MyBook) Firewire 800
2TB External HDD (WD MyBook) Firewire 800 (Daisy-chained)
Network:
Time Capsule (Airport) Wireless N network
0

#95 User is offline   purdueu02 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 2
  • Joined: 25-October 10

Posted 28 October 2010 - 01:00 AM

I setup my harmony remote everything works great except when I am in hulu desktop I press the navigational up and down button and it skip over the first item then goes to the second item. So basically when I press up or down instead of moving one selection it moves 2 selections. When I am in plex and boxee the buttons work correctly. Only messing up in hulu desktop. Any help will be greatly appreciated. Last I setup my system using the miniharmony method.
0

#96 User is offline   michielm 

  • Member
  • PipPip
  • Group: Members
  • Posts: 23
  • Joined: 10-January 10

Posted 28 October 2010 - 04:45 PM

View PostPlexUser-P, on 26 October 2010 - 08:05 PM, said:

Michiel,

Have you had a chance to set up your harmony and if so how did it go?



Not to the full extend yet, just a time issue ....
0

#97 User is offline   pisosse 

  • Newbie
  • Pip
  • Group: Members
  • Posts: 3
  • Joined: 23-October 10

Posted 04 December 2010 - 09:48 AM

Since christmas up soon, I will put a harmoney tut on my wishlist...
0

#98 User is offline   PlexUser-P 

  • Member
  • PipPip
  • Group: Members
  • Posts: 24
  • Joined: 28-September 10

Posted 12 December 2010 - 09:55 PM

I've finished a how to for installing favorite shows on the harmony remote. I've upload all the pertinent files to this replay and if anyone need help or has a comment please post a reply.

Attached File(s)


0

#99 User is offline   Jono 

  • Member
  • PipPip
  • Group: Members
  • Posts: 69
  • Joined: 30-July 09

Posted 13 December 2010 - 08:26 PM

View PostPlexUser-P, on 12 December 2010 - 09:55 PM, said:

I've finished a how to for installing favorite shows on the harmony remote. I've upload all the pertinent files to this replay and if anyone need help or has a comment please post a reply.


Thanks a lot for doing this, I've been waiting for a tutorial on the next part. I'll give this a try when I have some free time :)
0

#100 User is offline   michielm 

  • Member
  • PipPip
  • Group: Members
  • Posts: 23
  • Joined: 10-January 10

Posted 17 December 2010 - 03:15 PM

View PostPlexUser-P, on 12 December 2010 - 09:55 PM, said:

I've finished a how to for installing favorite shows on the harmony remote. I've upload all the pertinent files to this replay and if anyone need help or has a comment please post a reply.


This is really A-W-E-S-O-M-E !!!

Thank you!!!
0

Share this topic:


  • 9 Pages +
  • « First
  • 3
  • 4
  • 5
  • 6
  • 7
  • Last »
  • You cannot start a new topic
  • You cannot reply to this topic

1 User(s) are reading this topic
0 members, 1 guests, 0 anonymous users