Hi my problem is that I want to check the mouseposition for a mouseover event so I searched the forum and found something but it didn't work for me. My script:
code:
function gwTemplateCalc(Template, Message)
{
gw = new gwTemplate(Template);
gw.load();
GwSkillbar = MsgPlus.CreateWnd("gwSkillbar.xml", "GwSkillbar");
GwSkillbar.RegisterMessageNotification(0x200);
...
}
function OnGwSkillbarEvent_MessageNotification(PlusWnd,wMessage,wParam,lParam)
{
Debug.Trace("1");
}
But now the Event is never called..
hope anyone could help me