mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Apr 2014
Posts: 14
S
Pikka bird
OP Offline
Pikka bird
S
Joined: Apr 2014
Posts: 14
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.
Joined: Oct 2009
Posts: 24
Ameglian cow
Offline
Ameglian cow
Joined: Oct 2009
Posts: 24
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.
Joined: Apr 2014
Posts: 14
S
Pikka bird
OP Offline
Pikka bird
S
Joined: Apr 2014
Posts: 14
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