Project

General

Profile

Setlayer » History » Version 1

Per Amundsen, 02/14/2014 03:48 PM

1 1 Per Amundsen
_Added in 1.9.0_
2
3
*/setlayer <0-255> [window]*
4
5
change the transparency of a given window. If no window is provided, the transparency setting will apply to the main MDI window. The setlayer works on all windows as long as the full name is provided, for example "Status Window" for the status window. 
6
7
*Parameters*
8
9
<0-255> - Alpha channel value.
10
[window] - The window to apply the transparency to.
11
12
*Example*
13
14
<pre>
15
alias example {
16
  ;Create a new desktop window.
17
  /window -de @Example
18
19
  ;Set @example to 204/255 (%20) transparency.
20
  /setlayer 204 @Example
21
22
  ;A friendly message.
23
  echo @Example 20% Transparency!
24
}
25
</pre>