| |||||||
| Plugins Plugins developed and maintained by users. Want to create your own plugin? Start a thread in here. |
![]() |
| | Thread Tools | Display Modes |
| | #21 (permalink) |
| Portal Developer Join Date: Sep 2006 Location: Italy - Padova Age: 34
Posts: 1,338
Thanks: 73
Thanked 73 Times in 58 Posts
Country: | Hi Mophat, I'm wrong or CTRL and SHIFT keys are not handled actually by the plugin ? Simone BTW, I have now compiled the sources, it was a reference to the core.dll and utils.dll in a different path from my to your pc... |
| | |
| | #22 (permalink) | |
| MP Donator ![]() Join Date: Jun 2007 Location: Berg, Switzerland Age: 35
Posts: 696
Thanks: 6
Thanked 54 Times in 13 Posts
Country: | Quote:
good night MoPhat | |
| | |
| | #24 (permalink) |
| Portal Member Join Date: Jun 2007
Posts: 66
Thanks: 2
Thanked 0 Times in 0 Posts
Country: | I have a media centre type of remote control with lots of assignable buttons which are redundant in MP which I would like to assign to shortcuts like this plugin is doing - Music - Videos - Pictures etc etc. Is there anyway I can see what is transmitted by the remote control and put that into the shortcut plugin as the key press or something? |
| | |
| | #26 (permalink) |
| Portal Developer Join Date: Mar 2005 Location: Melbourne Age: 27
Posts: 2,251
Thanks: 30
Thanked 145 Times in 88 Posts
Country: | Hey MoPhat, To get Ctrl, Alt, Shift mapping you should use something like this: Code: string keys = String.Empty; if ((Control.ModifierKeys & Keys.Shift) == Keys.Shift) keys += "Shift + "; if ((Control.ModifierKeys & Keys.Control) == Keys.Control) keys += "Ctrl + "; if ((Control.ModifierKeys & Keys.Alt) == Keys.Alt) keys += "Alt + "; keys += keyChar.ToString(); If you have any trouble with it let me know and I'll take a look at the source code for you and see if I can sort it out. Cheers,
__________________ - Aaron. IR Server Suite - Version 1.0.4.1 MCE Replacement Plugin - Version 1.0.4.1 You don't need the MCE Replacement Driver Last edited by and-81; 2008-03-04 at 02:01. Reason: formatting |
| | |
| | #28 (permalink) |
| Portal Member Join Date: Jan 2007 Location: Auckland
Posts: 46
Thanks: 1
Thanked 0 Times in 0 Posts
Country: | MoPhat, check this out MEDIAPORTAL - free MediaCenter HTPC Software - KeyBoardInputPlugin this plugin does the whole Ctrl + Alt + Shift + X thing. I've also needed to empty the keyboard.xml file to prevent double keying. Regards mckzoo |
| | |
![]() |
| Bookmarks |
| Tags |
| plugin, sections, shortcuter, shortcuts |
| Thread Tools | |
| Display Modes | |
| |
Similar Threads | ||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| My Keys Plugin | mPod | Plugins | 69 | 2008-02-07 15:13 |
| How to send keys keys to media portal? | Blitzbat | Plugins | 1 | 2007-05-21 11:34 |
| Plugin strings and keys... | TesterBoy | Plugins | 3 | 2007-02-05 07:23 |
| Home-Plugin, Shortcuts | Jaques-Ludwig | Plugins/Erweiterungen | 1 | 2005-11-19 11:38 |
| Home plugin and menu shortcuts | igalan | Plugins | 0 | 2005-07-27 18:25 |