Difference between revisions of "Menu Window Transparent"
From Wiki
(Created page (this command had no doc page!)) |
(→Example) |
||
Line 1: | Line 1: | ||
− | |||
== Synopsis == | == Synopsis == | ||
Line 14: | Line 13: | ||
== Example == | == Example == | ||
+ | |||
;Window will be dark black | ;Window will be dark black | ||
menu window $000000 | menu window $000000 |
Revision as of 10:50, 28 July 2008
Synopsis
menu window transparent [ opacity percentile ]
Description
The menu window transparent sets the transparency of the window ( 0 is almost invisible and 100 is fully opaque ) Note: This command doesn't work under Linux + Wine
Example
- Window will be dark black
menu window $000000
- Shows window
menu show 200 200
- Loops from 0 to 100
for %i 0 100 {
menu window transparent %i ;Sets the transparency of the window wait 5 ;Waits 1/4 second
}
- Terminates the script
halt