Re: Table Highlighter (New AHK Script)
[ QUOTE ]
How do you change the bar location, size and color? I couldn't find anything useful on OC.com...maybe I'm just retarded though.
[/ QUOTE ]
; Define width and height of Highlight Bar.
; Bar will be drawn at (x,y) coordinates (0+th_bar_left,0+th_bar_top) of active window.
; Default values 26 and 0 for Height and Top will mimic the window title bar.
; Default values of 65 and 510 will create a larger bar over the chat box area.
; Try wich one suits you best.
th_bar_width = 795
th_bar_height = 26 ;65
th_bar_left = 0
th_bar_top = 0 ;510
; Define color and transparancy of Highlight Bar.
th_bar_color = FF0000
th_bar_trans = 150
|