What I'm looking to do is make a dock, and when you put your cursor over an icon, it will display the name of the application.
Now, Ive got everything set up, and when i hover over the icon, it will display the application name, however when I take the cursor off, the name stays there for about 3 seconds, and is acting very glitchy =/.
heres the relevant code for my problem:
Code: Select all
[Icon1]
Meter=IMAGE
X=30
Y=52
w=50
h=50
AntiAlias=1
ImageName=opera.png
LeftMouseDownAction=!Execute ["C:\Program Files (x86)\Opera\opera.exe"]
MouseOverAction=!execute [!RainmeterShowMeter OperaTitle]
MouseLeaveAction=!execute [!RainmeterHideMeter OperaTitle]
[OperaTitle]
Meter=String
StringAlign=Left
StringStyle=normal
FontColor=255, 255, 255, 150
FontFace=Stonehenge
FontSize=28
AntiAlias=1
X=0
Y=0
Text="opera"
hidden = 1
So what im asking is, is this the right way to do it? or is there a better way?
Thanks in advance