mIRC Home    About    Download    Register    News    Help

Print Thread
T
Taggnostr
Taggnostr
T
These are 4 function i'd like to see in the next version
1. the possibilities of editing the popups that appears when right-click on the name of a #chan (the one with join channel, list users and show topic) and on a link
2. a command for open the script editor (it can be useful when i want to open the script editor by clicking on a custom button on the toolbar) and the other dialog like the color dialog...
3. open the links in chan with a single click instead than a double click
4. drag/drop a file over a nick (in chan or nicklist) to dcc send the file (now i usually open a query and drag/drop the file in the query)

Joined: Dec 2002
Posts: 1,536
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,536
1) has been suggested beore and is slowly becoming a hotly requested feature

4) Can already be done. It has always worked for me when I tried it.


Those who fail history are doomed to repeat it
Joined: Jan 2003
Posts: 2,973
K
Hoopy frood
Offline
Hoopy frood
K
Joined: Jan 2003
Posts: 2,973
2. /editor
Code:
alias editor { /sendkeys $+(%,r) }
alias sendkeys {
  var %a = sendkeys $+ $ticks 
  .comopen %a WScript.Shell 
  if !$comerr { .comclose %a $com(%a,sendkeys,3,bstr,$1-) }
}

Joined: Dec 2002
Posts: 1,536
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Dec 2002
Posts: 1,536
4) I have never tried dropping it onto a nickname in the channel window - I've only dropped it successfully in the nicknlist (too late to edit the post but I felt clarification was a good thing)


Those who fail history are doomed to repeat it
Joined: Dec 2002
Posts: 580
N
Fjord artisan
Offline
Fjord artisan
N
Joined: Dec 2002
Posts: 580
#2

Not negating your suggestion in anyway. This is so simple with a DLL. Just send the same WM_COMMAND message that occurs when selecting the menu item, which as of mirc 6.17 is/was...

wParam values (base 10)...
200 - mIRC Script Editor (Aliases)
202 - mIRC Script Editor (Popups)
203 - mIRC Script Editor (Remotes)

SendMessage(hApp, WM_COMMAND, wParam, 0);


Link Copied to Clipboard