[Solved] Xml windows with Frame - 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] Xml windows with Frame (/showthread.php?tid=83369) [Solved] Xml windows with Frame by Tiller on 04-24-2008 at 02:54 PM
quote: quote: Thanks again for all answer, it's all done ;o RE: [Question] Xml windows with Frame by MeEtc on 04-24-2008 at 03:06 PM
I'm not quite sure what you mean by a frame in your XML, I can think of 2 possible explanations. RE: [Question] Xml windows with Frame by Tiller on 04-24-2008 at 03:55 PM
Huum, i think it's that but i don't see how i can use it :/ RE: [Question] Xml windows with Frame by matty on 04-24-2008 at 03:58 PM You need to create a browser control in your XML and use the Browser_GetInterface() function to control it. RE: [Question] Xml windows with Frame by Tiller on 04-24-2008 at 04:07 PM
Yes it's that, i would like to know how put this control ^^ code: RE: [Question] Xml windows with Frame by matty on 04-24-2008 at 04:20 PM
quote:Did you read the Scripting Documentation? RE: [Question] Xml windows with Frame by Tiller on 04-24-2008 at 04:27 PM
Yes... http://mpscripts.net/docs/ that? RE: [Question] Xml windows with Frame by matty on 04-24-2008 at 04:29 PM
Look over the attachment. RE: [Question] Xml windows with Frame by Matti on 04-24-2008 at 04:33 PM
In your XML, you can use something like this: code:where Nav is the desired control ID, and use the following JScript to make it do something useful: code:or shorter: code:where PlusWnd is the PlusWnd object containing the Nav browser control. For more information about what you can do with this BrowserInterface object, go to the MSDN InternetExplorer Object reference. ALTHOUGH I HIGHLY RECOMMEND YOU TO TRY FIRST BEFORE ASKING, AS TRYING SOMETHING IS THE ONLY WAY TO LEARN IT!!! RE: [Question] Xml windows with Frame by Tiller on 04-24-2008 at 04:46 PM Thanks you a lot all! ^_^ RE: [Solved] Xml windows with Frame by MeEtc on 04-24-2008 at 07:49 PM Here's a script created by roflmao456 that may help you out a lot, its a web browser script. RE: [Solved] Xml windows with Frame by Tiller on 04-25-2008 at 05:44 PM
Thanks a lot for your answers! RE: [Question] Xml windows with Frame by roflmao456 on 04-26-2008 at 12:27 AM here's a more clearer example of the BrowserControl RE: [Question] Xml windows with Frame by Tiller on 04-26-2008 at 07:32 AM
Thanks you but I don't see inside how I can remove the scrolling ^^ RE: [Question] Xml windows with Frame by felipEx on 04-26-2008 at 10:13 AM
@Tiller: the easiest and dodgiest way: set the "scroll" attribute for the "body" tag in your html code code: RE: [Question] Xml windows with Frame by Tiller on 04-26-2008 at 10:42 AM
...Thanks ^^ RE: [Solved] Xml windows with Frame by Matti on 04-26-2008 at 11:40 AM
Or, by using the more standardised method using CSS: code:It's more recommended to use the above method, as <body scroll="no"> is deprecated and only recognised by Internet Explorer. This might not sound as a problem, as Plus! uses an InternetExplorer object, but it's better to use standards to make your web page validate the W3C (X)HTML standards, to make it compatible with other browsers and to make it "future-proof". |