mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: May 2013
Posts: 5
C
Caaron Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
C
Joined: May 2013
Posts: 5
Hello, i search in the forum but didnt find this.

How to open "Log Files" system menu via command like /abook for address book?


Menu's Image;


Joined: Dec 2008
Posts: 1,515
Hoopy frood
Offline
Hoopy frood
Joined: Dec 2008
Posts: 1,515
try to use:

/logview <filename>

Displays a text file in mIRC using the same method as the Log Files dialog.

more informations: /help /logview


Need Online mIRC help or an mIRC Scripting Freelancer? -> https://irc.chathub.org <-
Joined: May 2013
Posts: 5
C
Caaron Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
C
Joined: May 2013
Posts: 5
Originally Posted By: westor
try to use:

/logview <filename>

Displays a text file in mIRC using the same method as the Log Files dialog.

more informations: /help /logview



Thank you but i know that. I want to open that menu via command on the image.

Last edited by Caaron; 11/05/13 04:24 PM.
Joined: May 2013
Posts: 5
C
Caaron Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
C
Joined: May 2013
Posts: 5
Still waiting :P

Last edited by Caaron; 13/05/13 08:57 AM.
Joined: Oct 2012
Posts: 164
D
Vogon poet
Offline
Vogon poet
D
Joined: Oct 2012
Posts: 164
Keep right on waiting, until a command is added that does that crazy

Having said that, you could script one. You need a sendkeys alias to send keystrokes to mIRC...
Code:
alias sendkeys var %a = $ticks | .comopen %a WScript.Shell | if !$comerr { .comclose %a $com(%a,SendKeys,3,bstr,$1-) }
and a command to send the keys needed to open the logview dialog...
Code:
alias viewlogs sendkeys % $+ te

Now you can use /viewlogs

Joined: May 2013
Posts: 5
C
Caaron Offline OP
Nutrimatic drinks dispenser
OP Offline
Nutrimatic drinks dispenser
C
Joined: May 2013
Posts: 5
Thank you but what if I disable Menu Bar?
Try it. smile In my case it doesnt work without Menu Bar.

Joined: Jan 2004
Posts: 1,358
L
Hoopy frood
Offline
Hoopy frood
L
Joined: Jan 2004
Posts: 1,358
When the menubar is turned off mIRC places its items into the window menu (accessed by right clicking the titlebar or taskbar icon). This menu is also accessed with alt+space, so here you go:

Code:
alias viewlogs sendkeys $iif($menubar,% $+ te,% te)


Link Copied to Clipboard