tfwall112 wrote:
fragman wrote:
You're supplying the name of the g-label, not the hwnd.
Greetings fragman,
I am new to this, so can you tell me, where do I find the needed hwnd.
As you can see, I was able to get it going by upgrading, but a little info can go a long ways

Thanks
The first parameter of the AddToolip function is
CtrlHwnd which represents the hWnd (handle) of the control.
fragman was just pointing out that instead of supplying the handle to the control (Picture_Hwnd) to the function, you entered the g-label (Item1) instead. The correct code might look something like this:
Code:
Gui, Add, Picture, x219 y105 w50 h50 Background Trans HwndPicture_Hwnd gItem1, C:\!-Gui\Pirate GUI\coin2.png
AddTooltip(Picture_Hwnd,"AHK Read Me file")
I hope this helps.