Why my OnWindowidEvent_CtrlClicked is not fired up? - Printable Version
-Shoutbox (https://shoutbox.menthix.net)
+-- Forum: MsgHelp Archive (/forumdisplay.php?fid=58)
+--- Forum: Messenger Plus! for Live Messenger (/forumdisplay.php?fid=4)
+---- Forum: Scripting (/forumdisplay.php?fid=39)
+----- Thread: Why my OnWindowidEvent_CtrlClicked is not fired up? (/showthread.php?tid=74586)
Why my OnWindowidEvent_CtrlClicked is not fired up? by Lobo on 05-21-2007 at 07:31 PM
This is my window xml:
code: <Interfaces xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<Window Id="miVentana" Version="1">
<Attributes>
<Caption>Test Window</Caption>
</Attributes>
<TitleBar>
<Title><Text>Hello!</Text></Title>
</TitleBar>
<Position Width="180" Height="75"/>
<DialogTmpl/>
<Controls>
<Control xsi:type="StaticControl" Id="LblTop">
<Position Left="10" Top="10" Width="150"/>
<Caption>Hello world!</Caption>
</Control>
<Control xsi:type="ButtonControl" Id="BtnClose">
<Position Left="112" Top="25" Width="50"/>
<Caption>Close</Caption>
</Control>
</Controls>
</Window>
</Interfaces>
Now, this is how I call my Window:
code: function OnEvent_MenuClicked(MenuItemId, Location, OriginWnd)
{
if (Location == 2)
{
switch (MenuItemId)
{
case "op1":
{
MsgPlus.DisplayToast("", "Smallville");
break;
}
case "op2":
{
MsgPlus.DisplayToast("", "Superman");
break;
}
case "op":
{
miVentana = MsgPlus.CreateWnd("JoelWnd.xml", "miVentana");
break;
}
}
}
}
Now, why my OnWindowidEvent_CtrlClicked doesn't work
code: function OnWindowidEvent_CtrlClicked(PlusWnd, ControlId)
{
Debug.trace(ControlId);
}
RE: Why my OnWindowidEvent_CtrlClicked is not fired up? by Lobo on 05-21-2007 at 07:49 PM
Nevermind! I read an old post I found my bug =P
RE: Why my OnWindowidEvent_CtrlClicked is not fired up? by joey on 05-21-2007 at 07:52 PM
delete the thread then =p
|