What happened to the Messenger Plus! forums on msghelp.net?
Shoutbox » MsgHelp Archive » Messenger Plus! for Live Messenger » Scripting » [Solved] Xml windows with Frame

Pages: (2): « First « 1 [ 2 ] Last »
[Solved] Xml windows with Frame
Author: Message:
MeEtc
Patchou's look-alike
*****

Avatar
In the Shadow Gallery once again

Posts: 2200
Reputation: 60
38 / Male / Flag
Joined: Nov 2004
Status: Away
RE: [Solved] Xml windows with Frame
Here's a script created by roflmao456 that may help you out a lot, its a web browser script.

.plsc File Attachment: QuickWebBrowser(2).plsc (2.98 KB)
This file has been downloaded 181 time(s).
[Image: signature/]     [Image: sharing.png]
I cannot hear you. There is a banana in my ear.
04-24-2008 07:49 PM
Profile PM Web Find Quote Report
Tiller
New Member
*

Avatar

Posts: 8
Joined: Apr 2008
O.P. RE: [Solved] Xml windows with Frame
Thanks a lot for your answers!

I congrated!

But i've got an other question ^^

How can I remove the Right scrolling of the BrowserControl?

Thanks!
04-25-2008 05:44 PM
Profile E-Mail PM Find Quote Report
roflmao456
Skinning Contest Winner
****

Avatar

Posts: 955
Reputation: 24
29 / Male / Flag
Joined: Nov 2006
Status: Away
RE: [Question] Xml windows with Frame
here's a more clearer example of the BrowserControl :)

.plsc File Attachment: BrowserControl.plsc (1.85 KB)
This file has been downloaded 241 time(s).
[quote]
Ultimatess6
: What a noob mod
04-26-2008 12:27 AM
Profile PM Web Find Quote Report
Tiller
New Member
*

Avatar

Posts: 8
Joined: Apr 2008
O.P. RE: [Question] Xml windows with Frame
Thanks you but I don't see inside how I can remove the scrolling ^^

I think you wanna answer to my first post ^^
04-26-2008 07:32 AM
Profile E-Mail PM Find Quote Report
felipEx
Scripting Contest Winner
***


Posts: 378
Reputation: 24
35 / Male / Flag
Joined: Jun 2006
RE: [Question] Xml windows with Frame
@Tiller: the easiest and dodgiest way: set the "scroll" attribute for the "body" tag in your html code  :P

code:
...
<body scroll="no">
...
04-26-2008 10:13 AM
Profile E-Mail PM Find Quote Report
Tiller
New Member
*

Avatar

Posts: 8
Joined: Apr 2008
O.P. RE: [Question] Xml windows with Frame
...Thanks ^^
   
I never thought it was the HTML, I thought it depended on the object ^^
04-26-2008 10:42 AM
Profile E-Mail PM Find Quote Report
Matti
Elite Member
*****

Avatar
Script Developer and Helper

Posts: 1646
Reputation: 39
31 / Male / Flag
Joined: Apr 2004
RE: [Solved] Xml windows with Frame
Or, by using the more standardised method using CSS:
code:
<head>
...
<style type="text/css">
html, body {
   overflow: hidden;
}
</style>
...
</head>
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". ;)

This post was edited on 04-26-2008 at 11:40 AM by Matti.
Plus! Script Developer | Plus! Beta Tester | Creator of Countdown Live | Co-developer of Screenshot Sender 5

Found my post useful? Rate me!
04-26-2008 11:40 AM
Profile E-Mail PM Web Find Quote Report
Pages: (2): « First « 1 [ 2 ] Last »
« Next Oldest Return to Top Next Newest »


Threaded Mode | Linear Mode
View a Printable Version
Send this Thread to a Friend
Subscribe | Add to Favorites
Rate This Thread:

Forum Jump:

Forum Rules:
You cannot post new threads
You cannot post replies
You cannot post attachments
You can edit your posts
HTML is Off
myCode is On
Smilies are On
[img] Code is On