yer. i put the _ just for the post.
now i am having problems with the window im trying to make..
code:
function OnEvent_MenuClicked(itemid){
if (itemid == "MnuConfig"){
confwnd = MsgPlus.CreateWnd("ConfigWindow.xml","ConfigWindowID");
}
}
ConfigWindow.xml:
code:
<?xml version="1.0" encoding="UTF-16"?>
<Interfaces xmlns="urn:msgplus:interface" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsichemaLocation="urn:msgplus:interface PlusInterface.xsd" Name="RealPlayer Configuration">
<Window Id="ConfigWindowID" Version="1">
<Attributes>
<TopMost>true</TopMost>
</Attributes>
<Position Width="337" Height="236"/>
<Controls>
<Control xsi:type="StaticControl" Id="lblInterval">
<Position Top="4" Width="50" Height="33" Left="4"/>
<Caption>Update Interval/Caption>
</Control>
<Control xsi:type="EditControl" Id="txtInterval">
<Position Top="4" Width="121" Left="60"/>
</Control>
</Controls>
</Window>
</Interfaces>
i click the button on the menu and nothing happens...
i have looked at the interfaces from MsgPlusLiveRes.dll but i cant find a simple example
thanks