mIRC Home    About    Download    Register    News    Help

Print Thread
S
spamgirl
spamgirl
S
I have windows which open at a certain place and size by using this code in my remotes:

window @nameofwindow 959 0 959 467

I'd like to do the same for all private messages. Is this possible?

Thanks for your help!

Last edited by spamgirl; 19/09/14 02:34 AM.
S
Scakk
Scakk
S
I use something similar to this. You will need to alter the location numbers.

Code:
on *:open:?: { window -zf $window($query($nick)) 260 211 669 135 }
on *:input:?: { .timerQUERYINPUT 1 1 window -fz $window($query($target)) 260 211 669 135 }


The first is when someone starts a PM/Query with you. The second is when you initiate the PM.

Last edited by Scakk; 19/09/14 01:36 AM.
S
spamgirl
spamgirl
S
Originally Posted By: Scakk
I use something similar to this. You will need to alter the location numbers.

Code:
on *:open:?: { window -zf $window($query($nick)) 260 211 669 135 }
on *:input:?: { .timerQUERYINPUT 1 1 window -fz $window($query($target)) 260 211 669 135 }


The first is when someone starts a PM/Query with you. The second is when you initiate the PM.


Thanks so much! It works perfectly smile


Link Copied to Clipboard