Use Active Desktop but still with IE 8 and 120 dpi? [Fix]

Ask other users about problems encountered with portable apps or help by posting solutions to existing problems.
Post Reply
Message
Author
castman
Posts: 179
Joined: Sat Jun 28, 2008 5:41 am
Location: Brazil, Sao Paulo
Contact:

Use Active Desktop but still with IE 8 and 120 dpi? [Fix]

#1 Post by castman »

Code: Select all

<!----
***** This file is automatically generated by Microsoft Windows *****
-------->
<HTML>
<head>
<script language="JavaScript" type="text/javascript">
// ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
// ? Copperfield Publishing ?(www.copperfieldpub.com)
// This copyright notice must stay intact if using this script
// Zoom in & Zoom out
//~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
function zoomin(){
if(parent.parent.document.body.style.zoom!=0)
parent.parent.document.body.style.zoom*=1.2;
else
parent.parent.document.body.style.zoom=1.2;
}
function zoomout(){
if(parent.parent.document.body.style.zoom!=0)
parent.parent.document.body.style.zoom*=0.80;
else
parent.parent.document.body.style.zoom=0.80;
}
function zoomrest(){
if(parent.parent.document.body.style.zoom!=0)
parent.parent.document.body.style.zoom*=0;
else
parent.parent.document.body.style.zoom=0;
}

</script>
</head>
<BODY bgcolor=#000000>
<DIV style="position:absolute; LEFT: 0; TOP: 0; WIDTH: 1280; HEIGHT: 928; background-repeat:no-repeat; background:URL(file:///C:/Documents%20and%20Settings/Nos/Configura%E7%F5es%20locais/Dados%20de%20aplicativos/Microsoft/Wallpaper1.bmp) 50% 50% no-repeat"></DIV>
	<IFRAME id=2 MARGINWIDTH=0 MARGINHEIGHT=0 name="DeskMovrW" src="file:///C:/Something/ab" 
		resizeable="XY"
		subscribed_url="C:\Something\ab"
		frameborder=0 style="BACKGROUND: transparent; position:absolute; LEFT:280; TOP:408; WIDTH:280; HEIGHT:269; Z-INDEX:1004"> </IFRAME>


<OBJECT
	classid="clsid:72267F6A-A6F9-11D0-BC94-00C04FB67863"
	id=ActiveDesktopMover
    STYLE="position:absolute; container:positioned; LEFT: 0;TOP: 0; WIDTH: 0; HEIGHT: 0;zIndex: 5"
>
<param name="Interval" value=500>
<param name="SizerID" value="ActiveDesktopMover">
<param name="Enabled" value="True">
<param name="TargetName" value="DeskMovr">
<param name="WindowOnly" value="False">
</OBJECT>

<OBJECT
	classid="clsid:72267F6A-A6F9-11D0-BC94-00C04FB67863"
	id=ActiveDesktopMoverW
    STYLE="position:absolute; container:positioned; LEFT: 0;TOP: 0; WIDTH: 0; HEIGHT: 0;zIndex 19"
>
<param name="Interval" value=500>
<param name="SizerID" value="ActiveDesktopMoverW">
<param name="Enabled" value="True">
<param name="TargetName" value="DeskMovrW">
<param name="WindowOnly" value="True">
</OBJECT>
<input type="button" value="Zoom +" ONCLICK="zoomin();">
<input type="button" value="Zoom -" ONCLICK="zoomout();">
<input type="button" class="butzoom" value="Restore" ONCLICK="zoomrest();">

&nbsp</BODY> </HTML>

Post Reply