mIRC Home    About    Download    Register    News    Help

Print Thread
#201098 19/06/08 03:25 PM
K
Kerst
Kerst
K
hi,

in mIRC 6.3 there was the undocumentated feature, /setlayer N [@window]
now i tried using this in 6.32 and it doesnt seem to work for a @window, is this command completely removed or is the syntax changed, cause i want a transparent window smile :P
i currently have;

Code:
alias imgpreview {
  window -p @preview 100 100 $mouse.x $mouse.y
  setlayer 100 @preview
}


which doesnt seem to work, i also tried;
Code:
  setlayer 100 preview
  setlayer @preview 100


Thanks.

#201099 19/06/08 03:42 PM
Joined: Dec 2002
Posts: 2,884
S
Hoopy frood
Offline
Hoopy frood
S
Joined: Dec 2002
Posts: 2,884
/setlayer only works on the main mIRC window and desktop windows. Individual MDI windows (windows within the main mIRC window) can't be made translucent, Windows simply doesn't support it.

Just add the -d switch to your /window command to see it work on a desktop window:
Code:
alias imgpreview {
  window -pd @preview 100 100 $mouse.x $mouse.y
  setlayer 100 @preview
}

K
Kerst
Kerst
K
thanks it worked smile


Link Copied to Clipboard