mIRC Home    About    Download    Register    News    Help

Print Thread
Page 2 of 3 1 2 3
W
WideOpenSpace
WideOpenSpace
W
nah, nothing on both .20 and .21

#183506 20/08/07 03:55 PM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
Have you tried 6.3? Maybe a bug was fixed..

I'm not using 6.21 so I can't try it on that one.

W
WideOpenSpace
WideOpenSpace
W
nope, i avoid 6.3 in large radius :P

#183508 20/08/07 04:02 PM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
Fail.

W
WideOpenSpace
WideOpenSpace
W
what ?

#183510 20/08/07 04:04 PM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
Whatever your issues with 6.3 are, I'm sure that dozens of bug fixes and new features outweigh them. It makes helping you more difficult because the majority of people will be using the most up to date version of the software, and that's the one that's more commonly supported.

Joined: Apr 2006
Posts: 464
O
Fjord artisan
Offline
Fjord artisan
O
Joined: Apr 2006
Posts: 464
Try viewing the icon when the window is not maximised.
When the window is maximised you dont see it or only in the menu bar.

W
WideOpenSpace
WideOpenSpace
W
it seems that it cant read icon libraries
i tried with single icon and it loads it ok.

W
WideOpenSpace
WideOpenSpace
W
Originally Posted By: Riamus2
Code:
menu @Window { 
  dclick { 
    if ($line(@Window,1,1) != $null) { 
      do some stuff
    }
  }
}


Unless you always have "0" in line 1 if it has lines, use $null. Also, no need to halt something like this. If it's $null, it won't have another other commands to do anyhow. If you DO want to halt something, use RETURN unless you're halting mIRC's commands/outputs rather than the script.


not to make NEW post, but just to add to this one...

so i use for same window this:

Code:
  lbclick {
    if ($line(@window),1,1) != $null) { 
do some things
    }
    else { return }
}


the problem is that when i load this window
and when window loads contents on side listbox
and when i DONT click on valid item but on the bottom (below all items) in blank space
i get errors

shouldnt this: else { return }
supposed to halt it ?

#184688 31/08/07 03:01 PM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
That code is saying "if there are lines in the side listbox, then do this" - it doesn't matter where abouts you click. In any event, nothing there would generate an error and you don't need the "else { return }" part at all.

What commands are you trying to execute in the "do some things" part?

W
WideOpenSpace
WideOpenSpace
W
this ones:
Code:
menu @Log*viewer { 
  lbclick {
    if ($line($logwin(@Log viewer),1,1) != $null) { 
      .clear $logwin(@Log viewer)
      .loadbuf $logwin(@Log viewer) $qt($+($logsdir,$sline($logwin(@Log viewer),1),.log))
    }
}


(i use it for loading and displaying logs)

but when i click on non showed item i get error:
* /loadbuf: unable to open 'C:\mirc\logs\.log'

Last edited by WideOpenSpace; 31/08/07 03:16 PM.
#184691 31/08/07 03:19 PM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
That's because in the if statement you're checking that lines exist in the listbox, but you're not checking that a line is selected.

Code:
menu @Log*viewer { 
  lbclick {
    if ($sline($logwin(@Log viewer),1)) { 
      .clear $logwin(@Log viewer)
      .loadbuf $logwin(@Log viewer) $qt($+($logsdir,$sline($logwin(@Log viewer),1),.log))
    }
  }
}


Use $sline() instead of $line() in your if statement.

W
WideOpenSpace
WideOpenSpace
W
ah sweet !
thank you very much laugh

#184709 31/08/07 05:41 PM
W
WideOpenSpace
WideOpenSpace
W
bleh another question...

when i loadbuff log into window
i get some too long lines out of border
and i cant find in help file anywhere a switch that
makes hsbar to be enabled.

is there solution for this ?

#184715 31/08/07 06:32 PM
Joined: Sep 2005
Posts: 2,630
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,630
After you've finished adding data to the listbox, make a call to window -b $logwin(@Log viewer)

W
WideOpenSpace
WideOpenSpace
W
sorry

i didnt mean on listbox where i select log names, but on window where all text from log is loaded

#184734 31/08/07 10:48 PM
D
deegee
deegee
D
Try /loadbuf -pi @win file
(/help /loadbuf)

#184744 01/09/07 03:12 AM
W
WideOpenSpace
WideOpenSpace
W
thank you, it worked smile

#187566 08/10/07 02:56 AM
W
WideOpenSpace
WideOpenSpace
W
yet another revive of the same :P

i dont see this in help file but just to ask here...
since i have side listbox in @window
can that listbox have popup menu (with right click)
like you create for normal @window ?

Last edited by WideOpenSpace; 08/10/07 02:56 AM.
#187591 08/10/07 08:16 PM
L
Lpfix5
Lpfix5
L
Originally Posted By: WideOpenSpace
yet another revive of the same :P

i dont see this in help file but just to ask here...
since i have side listbox in @window
can that listbox have popup menu (with right click)
like you create for normal @window ?


Depending on your @window size etc... you can do something like this...

Code:
menu @window {
rclick:{
;The inrect would be in rectangle where you have to 
;make an 
;hidden rectangle to which the mouse events can occur
if ($inrect(x,y,x,y,w,h)) { do stuff here }
}
}


or if you have trouble finding the rectangle of your @window in the listbox do... this..

Code:
menu @window {
rclick:{ echo -a The X of my mouse click is $mouse.x and the Y of my mouse is $mouse.y }
}


the way the inrect works is you need a point which is point left top corner to bottom right corner... then the height and width total of your rectangle.

Page 2 of 3 1 2 3

Link Copied to Clipboard