mIRC Homepage
Posted By: Paul is there a select all text shortcut? - 08/01/15 05:12 PM
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.
Posted By: Wims Re: is there a select all text shortcut? - 08/01/15 05:56 PM
Unfortunately there is not as far as I know
Posted By: Paul Re: is there a select all text shortcut? - 08/01/15 08:19 PM
ok thanks frown
Posted By: Raccoon Re: is there a select all text shortcut? - 09/01/15 08:32 AM
You will have to Save Buffer (/savebuf) and then open in notepad.

Yes, mIRC doesn't let you scroll while selecting. smirk
Posted By: KindOne Re: is there a select all text shortcut? - 11/01/15 03:09 AM
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 
  }
}
© mIRC Discussion Forums