minimize, maximize script just like on microsoft.com 
Author Message
 minimize, maximize script just like on microsoft.com

You can set the visibility of a <DIV></DIV> tag from script.

e.g.:

<html>
<head>

<script language="VBScript">
<!--

Function ShowWaiting(pblnValue)

 If pblnValue = 1 Then
  document.all("div_waiting").style.visibility = "visible"
 Else
  document.all("div_waiting").style.visibility = "hidden"
 End If

End Function

-->
</script>

</head>
<body>

Show the DIV

<script Language="VBScript">ShowWaiting(1)</script>

Do Something Here.

Now hide the DIV.

<script Language="VBScript">ShowWaiting(0)</script>

Done.

<div id="div_waiting" name="div_waiting" style="VISIBILITY: hidden">
<p><h1> Retrieving information, please wait ...</h1></p>
</div>

</body>
</html>

Of course, most people want to use JavaScript so hack it at your leisure
(I've now converted to JavaScript but I ripped this from an old demo page).

Chrs Barber



Hello everybody,

Does somebody have a script what can do the same as seen om
www.microsoft.com.
I mean the section where you can minimize and maximize and move some content
(see
attached screendump). Please send an example to my email adres or respond to
this
newsgroup.

Thanks in advance,
Patrick



Fri, 26 Sep 2003 05:35:16 GMT  
 
 [ 1 post ] 

 Relevant Pages 

1. Minimize/Maximize

2. disabling minimize, maximize, restore buttons of an html popup window

3. Stopping another process and minimizing/maximizing/restoring

4. Using VBScript to minimize, restore/maximize, close window

5. Using VBScript to minimize, restore/maximize or close a window

6. Disabled Minimize, Maximize button from a window

7. Maximizing a Minimized Application

8. Maximize, minimize as shell commands

9. Maximizing a minimized application

10. maximized minimized close

11. link that can maximize/minimize browser window

12. Microsoft Script Control as a COM object?

 

 
Powered by phpBB® Forum Software