mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Feb 2013
Posts: 10
P
Paul Offline OP
Pikka bird
OP Offline
Pikka bird
P
Joined: Feb 2013
Posts: 10
I have been using this program for years, and the other day I wanted to copy and paste a list of things he said but the list was so long and I could only scroll down so far by click and dragging to highlight everything. I figured there was a highlight all type shortcut so I can copy it easier. Let me know.

Joined: Jul 2006
Posts: 4,145
W
Hoopy frood
Offline
Hoopy frood
W
Joined: Jul 2006
Posts: 4,145
Unfortunately there is not as far as I know


#mircscripting @ irc.swiftirc.net == the best mIRC help channel
Joined: Feb 2013
Posts: 10
P
Paul Offline OP
Pikka bird
OP Offline
Pikka bird
P
Joined: Feb 2013
Posts: 10
ok thanks frown

Joined: Feb 2003
Posts: 2,812
Hoopy frood
Offline
Hoopy frood
Joined: Feb 2003
Posts: 2,812
You will have to Save Buffer (/savebuf) and then open in notepad.

Yes, mIRC doesn't let you scroll while selecting. smirk


Well. At least I won lunch.
Good philosophy, see good in bad, I like!
Joined: Feb 2011
Posts: 448
K
Pan-dimensional mouse
Offline
Pan-dimensional mouse
K
Joined: Feb 2011
Posts: 448
I use this to copy/paste entire channel/query/status buffers. Just put this into the alias tab and run "/chancopy" in whatever channel/query you want to copy, then paste the output into notepad or whatever.

Code:
; Copy entire Channel/query/status buffer.. 
; Created by: Wiz126 
; Date: Dec 25, 2012
; Original:
; //var %l = 1, %s = $line(#, 0) | clipboard | while (%l <= %s) { clipboard -an $line(#, %l) | inc %l }
; Copy for alias tab 

chancopy { 
  var %l = 1, %s = $line($active, 0) 
  clipboard 
  while (%l <= %s) { 
    clipboard -an $line($active, %l) 
    inc %l 
  }
}


Link Copied to Clipboard