Sorry Roxor, what do you mean by inputservice?
Hey does any one know how t fix the Focus problem in mediaportal.. No matter what I do with AutoHotkey it just doesn't loose focus, I have all the currect settings and when I manually flip windows there is no problems at all... Any ideas guys.. Thanks...
Wich Resolution did you set up there?First Post said:....
the switch to 24p mode is done by CTRL+SHIFT+4 back to 50hz mode is CTRL+SHIFT+5!
You should define this profiles in you ATI Catalyst Manager, for NVidia i dont know how to do that
...
Hi,
@MoPhat: thanx for the great plugin, it works super for me.
But:
I use MP, HD-Starter Plugin, PDVD7, Antec Fusion case with iMon IR Receiver with iMon software with a MCE remote control. The MP and PowerDVD keyboard shortcuts are mapped to the RC buttons in iMon Manager. Everything works fine besides:
I can map "H" for PDVD to toggle available audio streams playing Bluray to a MCE RC button but it does not toggle audio. Instead a context menü comes up. This happens only with PDVD started from MP. If I start PDVD manually, audio stream toggle works fine. Subtitle toggle with "U" works always fine. I tried PDVD8 before, I did not have this weird issue with it (abandoned because of lack of HDDVD and annoying resume nag screen).
I assume this is a problem of an active "HD_STARTER" in the tray. I guess it tries to send / translate MP control imputs for PDVD. But I don´t need this, iMon takes care of it already. Anyone an idea? Help/comments appreciated.
Edit:
I found the solution. I edited the hd_starter source code, deleted all the shortcut translation stuff at the end and recomplied it. This did the trick. For Antec and iMon users this can be very useful. If someone wants the modified hd_starter.exe, just ask.
Edit:
I attached this edited HD-Starter.exe file (source from post Nr. 1 of this thread, remote translation section simply removed and new compiled) for other iMon users.
using System;
using System.Collections.Generic;
using System.Text;
using System.Windows.Forms;
using System.Drawing;
namespace Hide_Mouse
{
class Program
{
static void Main(string[] args)
{
System.Windows.Forms.Cursor.Position
= new System.Drawing.Point(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height);
}
}
}
Guys,
I noticed that on my system, when PowerDVD loads, the mouse stays center and never goes away.I dont know if anyone else got this problem, but it annoyed me. I wrote a simple c# app to get rid of the mouse. It's so simple infact, here is the source:
Code:using System; using System.Collections.Generic; using System.Text; using System.Windows.Forms; using System.Drawing; namespace Hide_Mouse { class Program { static void Main(string[] args) { System.Windows.Forms.Cursor.Position = new System.Drawing.Point(Screen.PrimaryScreen.Bounds.Width, Screen.PrimaryScreen.Bounds.Height); } } }
I've also attached a rared up exe of the app. All you need to do is set it to run at logon
Hi,
@MoPhat: thanx for the great plugin, it works super for me.
But:
I use MP, HD-Starter Plugin, PDVD7, Antec Fusion case with iMon IR Receiver with iMon software with a MCE remote control. The MP and PowerDVD keyboard shortcuts are mapped to the RC buttons in iMon Manager. Everything works fine besides:
I can map "H" for PDVD to toggle available audio streams playing Bluray to a MCE RC button but it does not toggle audio. Instead a context menü comes up. This happens only with PDVD started from MP. If I start PDVD manually, audio stream toggle works fine. Subtitle toggle with "U" works always fine. I tried PDVD8 before, I did not have this weird issue with it (abandoned because of lack of HDDVD and annoying resume nag screen).
I assume this is a problem of an active "HD_STARTER" in the tray. I guess it tries to send / translate MP control imputs for PDVD. But I don´t need this, iMon takes care of it already. Anyone an idea? Help/comments appreciated.
Edit:
I found the solution. I edited the hd_starter source code, deleted all the shortcut translation stuff at the end and recomplied it. This did the trick. For Antec and iMon users this can be very useful. If someone wants the modified hd_starter.exe, just ask.
Edit:
I attached this edited HD-Starter.exe file (source from post Nr. 1 of this thread, remote translation section simply removed and new compiled) for other iMon users.