Shoutbox

Problem with the Interface Tester - 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: Problem with the Interface Tester (/showthread.php?tid=72341)

Problem with the Interface Tester by forty on 03-04-2007 at 10:40 PM

I have a problem with the Interface Tester.
Any file XML that I load, it give me ever the same error: "An error occured while loading the XML file"

This is the code that I want to try:

<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>

Where is the problem?
Thanks


RE: Problem with the Interface Tester by Dempsey on 03-04-2007 at 10:56 PM

Is the file saved in unicode format?


RE: Problem with the Interface Tester by forty on 03-05-2007 at 12:37 PM

No it wasn't. Now it is, and now it works. Thanks.