Hi
Is any willing to help me out...
I got the basics of my first plugin and all commands are set up.that workds, but I cant figure out how to access xlobby info.
So can anybody show me how to simply make a dialog box popup with current EPG channel info?If I figure out how to access that I can fix the rest.
Second problem I'm having is sendcommand through a plugin.Trying to just open calc.exe but how do I set that up? It just wont like my commands
case "RecordNow":
SendCommand("command:os:execute file:calc.exe:::");
break;
if I set the full path to calc.exe it wont compile!
I tried to read http://www.xlobby.com/Documentation/PluginInterface but I just cant get it.
pretty please help me out.
public void Execute(string command)
{
IntPtr pInUse = (IntPtr)0;
switch( command )
{
case "xmainmenu":
SendCommand("command:xlobby:goto screen:menu");
break;
case "epgtest":
//sDisplayInfo1= XPluginSDK.Program GetCurrentProgram ( );
// public abstract new XPluginSDK.Program GetCurrentProgram ( )
MessageBox.Show(sDisplayInfo4);
SetDisplayInfo( "EPG test: " , null, 4000 );
break;
}
}
//Lasse