Shoutbox

Can't creating window. - 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: Can't creating window. (/showthread.php?tid=68376)

Can't creating window. by nekkro-kvlt on 11-12-2006 at 10:05 PM

Hi all, I can't create window, but I'm sure I make it right.
I've created a new script called test.
I've created the file InterfaceTest.xml  in C:\Program Files\Messenger Plus! Live\Scripts\test which contains:

code:
<Interfaces xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">    <Window Id="WndTest" 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, in my script, I've put:
code:
function OnEvent_Initialize(MessengerStart)
{
var Wnd = MsgPlus.CreateWnd("InterfaceTest.xml", "WndTest");
if(Wnd==null)
Debug.trace('null');
}

Exactly as the example said. I've added the null test cause no window open. On the debug, I see null, Which means that my window is not created, but why ?
Does somebody has an idea?  Thanks a lot.
RE: Can't creating window. by Dempsey on 11-12-2006 at 10:08 PM

Is the window xml file saved as Unicode?  It needs to be.


RE: Can't creating window. by nekkro-kvlt on 11-12-2006 at 10:35 PM

Was that, big thanks !