scroll - Scrollbar in mIRC window -


is possible remove or hide (hide allow mouse wheeling) scroll bar within custom mirc window. verticle scrollbar specific.

if right of picture see scrollbar.

is there way remove it?

enter image description here

yes, can removed.

i put ahk script hide scrollbar in mirc, , keep hidden after resizing window, minimizing , restoring window.

load in autohotkey , start working once click on channel or in switchbar.

~lbutton:: mousegetpos, , , , outputvarcontrol if (outputvarcontrol = "mirc_switchbar1" or outputvarcontrol = "scrollbar1") { winwait, ahk_class mirc control, style, hide, scrollbar1 controlgetpos, x,, width,, mirc_channel1 controlmove, mirc_channel1, ,, (width + 18) controlgetpos, x,, width,, mirc_query1 controlmove, mirc_query1, ,, (width + 18) controlgetpos, x,, width,, mirc_status1 controlmove, mirc_status1, ,, (width + 18) controlgetpos, x,y, width,height, listbox1 controlmove, listbox1, (x - 18),, , } else if (outputvarcontrol = "mstasklistwclass1") { sleep, 500 if winactive("ahk_class mirc"){ winwait, ahk_class mirc control, style, hide, scrollbar1 wingetpos, x, y, w, h, ahk_class mirc winmove, ahk_class mirc, , , , (w + 18),, wingetpos, x, y, w, h, ahk_class mirc winmove, ahk_class mirc, , , , (w - 18),, controlgetpos, x,, width,, mirc_channel1 controlmove, mirc_channel1, ,, (width + 18) controlgetpos, x,, width,, mirc_query1 controlmove, mirc_query1, ,, (width + 18) controlgetpos, x,, width,, mirc_status1 controlmove, mirc_status1, ,, (width + 18) controlgetpos, x,y, width,height, listbox1 controlmove, listbox1, (x - 18),, , } } return 

assumes use mirc 1 window maximized @ time inside mirc client this. can have many channels/query windows open, script can handle switching between them.

mirc no scrollbar


Comments

Popular posts from this blog

image - ClassNotFoundException when add a prebuilt apk into system.img in android -

I need to import mysql 5.1 to 5.5? -

Java, Hibernate, MySQL - store UTC date-time -