mIRC Home    About    Download    Register    News    Help

Print Thread
Joined: Jan 2010
Posts: 11
E
Pikka bird
OP Offline
Pikka bird
E
Joined: Jan 2010
Posts: 11
I do not want to call this a bug because I get odd functionality..

I had a simple script that loaded a new window with a listbox and tab positions..

Code:
window -aCdok0l120 -t1,4,9,22,25,30 @access -1 -1 860 400 


In 6.35 I could easily use the tab stops using $chr(9) and the text would conform to the tabs.

Now w 7.xx, the text does not conform to the tabstops using $chr(9). Any suggestions?

Last edited by extremity; 16/02/11 12:18 AM.
Joined: Sep 2005
Posts: 2,881
H
Hoopy frood
Offline
Hoopy frood
H
Joined: Sep 2005
Posts: 2,881
This works fine for me?

Code:
alias test {
  var %t = $chr(9)
  window -aCdok0l120 -t10,20,30,40,50,60 @access -1 -1 860 400 
  aline -l @access $+(a,%t,b,%t,c,%t,d,%t,e,%t,f)
}


/test


Link Copied to Clipboard