Shoutbox

[Solved] CreateWnd - 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: [Solved] CreateWnd (/showthread.php?tid=78374)

[Solved] CreateWnd by waynewilson2 on 10-22-2007 at 04:31 AM

hi people, my name is wayne, i'm from canada, i only know english, and i need your help...

im having problems with messenger plus live's createwnd feature, i just tried the tutorial or w.e you want to call it, and i did exactly as the tutorial said, but the window did not open, at the end i will add the stuff i put...

what i was hoping you guys could help me with is to figure out why it wont work, the code for the files is as follows...

This Is The XML file, it's named 'InterfaceTest.xml'

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>


This Is How I'm Calling It From My Script
code:
function OnEvent_Initialize(MessengerStart)
{
var Wnd = MsgPlus.CreateWnd("InterfaceTest.xml", "WndTest");
}


some help ASAP would be nice, im not 100% sure what i'm doing, but im trying to learn new stuf...

Thanks in advanced
RE: [problem] CreateWnd by roflmao456 on 10-22-2007 at 04:48 AM

it has to be saved encoded Unicode ;)


RE: [problem] CreateWnd by waynewilson2 on 10-22-2007 at 04:52 AM

uhhhh... and how exactly would i do that?? im new to scripting so stuff like

it has to be saved encoded Unicode

is no good to me, i know right now tho that it is UTF-8 but i dont know how to change encoding...


RE: [problem] CreateWnd by roflmao456 on 10-22-2007 at 04:55 AM

open in notepad > save as > encoding.

i am on my psp so i cant really help fully =[


RE: [Solved] CreateWnd by vikke on 10-22-2007 at 01:12 PM

Look at the attached screenshot if you don't understand.


RE: [Solved] CreateWnd by waynewilson2 on 10-22-2007 at 08:34 PM

quote:
Originally posted by vikke
Look at the attached screenshot if you don't understand.

yea, i understood, and thanks for the help, but like the title said b4 u posted, its solved...

thank ya all