mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Mar 2004
Posts: 1
3
3d5 Offline OP
Mostly harmless
OP Offline
Mostly harmless
3
Joined: Mar 2004
Posts: 1
I have lots of URLs in my URL List but since I updated my mIRC I haven't been able to find any text with Find-command on URL Catcher.

Joined: Sep 2003
Posts: 7
J
jdp Offline
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
J
Joined: Sep 2003
Posts: 7
This was also reported a couple days ago:

https://forums.mirc.com/showflat.php?Cat=...amp;amp;fpart=1

I do hope it gets fixed soon as it's one of the most invaluable features that I use all the time and love. =x

Joined: Sep 2003
Posts: 7
J
jdp Offline
Nutrimatic drinks dispenser
Offline
Nutrimatic drinks dispenser
J
Joined: Sep 2003
Posts: 7
By the way I made a simple URL list search script that I'm using until this bug is fixed. It's quite a bit slower than the built-in URL search that's currently broke, but eh, it does the job for now. I figured I might as well post it for those that don't know how to script and really love and need this feature as badly as I do.

Load into remotes, usage is: /findurl

Code:
alias findurl {
  if ($1-) { var %findurl = $1- }
  else { var %findurl = $?="Enter URL match text" }
  if (%findurl) {
    window -al @FindURL 
    clear @FindURL
    var %urlleft = $url(0)
    while (%urlleft > 0) {
      if (%findurl isin $url(%urlleft)) { aline @FindURL $url(%urlleft) }
      dec %urlleft
    }
  }
}
menu @FindURL {
  dclick:run $line(@FindURL,$1)
  View:run $sline(@FindURL,1)
  Copy to clipboard:clipboard $sline(@FindURL,1)
}
  


Link Copied to Clipboard