Mire system tray Thread last updated on 2006-10-03 17:35:29

Posted by member 250843 on 2006-10-03 12:20:13

I started using the Mire theme a couple weeks ago, and really like it except for one thing: the tray auto-hide doesn't seem to work quite right. If I have more than 15 things in my tray, it won't let me interact with icons further to the right than 15. I.e. it will auto-hide again if I try to move past the 15 icon. Does anyone have any idea why it's doing that? Here's the code from the tray:

if EnableTray = true
if EnableTaskbar = true
xTrayX 350
xTrayY -49
elseif EnableTaskbar = false
xTrayX 350
xTrayY -27
endif

xTrayDirection .right
xTrayXSpacing 4
xTrayYSpacing 4

xTrayRightBorder 6
xTrayLeftBorder 6
xTrayBottomBorder 5
xTrayTopBorder 6

xTrayImage tray_bg.png
xTrayImageLeftEdge 3
xTrayImageRightEdge 3
xTrayImageBottomEdge 3
xTrayImageTopEdge 0

xTrayIconHueColor 212121
xTrayIconSaturationIntensity 25
xTrayIconHueIntensity 150

xTrayHoverIconHueColor 212121
xTrayHoverIconSaturationIntensity 150
xTrayHoverIconHueIntensity 125

xTrayShowTooltip true
xTrayAutoSize
xTrayAlwaysOnTop true
xTrayAlphaMap

xTrayAlphaFade
xTrayCustomAlphaFade 20 3

if TrayAutoHide = true
xTrayStartHidden
if EnableTaskbar = true
*ckHotspot 350 -49 300 27 !xTrayshow !xTrayhide
elseif EnableTaskbar = false
*ckHotspot 350 -27 300 27 !xTrayshow !xTrayhide
endif
endif
endif

Posted by member 212670 on 2006-10-03 13:11:13 link

Make 300 bigger in '*ckHotspot 350 -49 300 27'. Try +20 per icon you can't hit.

Posted by member 250843 on 2006-10-03 17:35:29 link

That seems to work. Thanks.