I've create several (more then 1) rectangle (~50x50 px) and set MouseOver-function for them:
Code: Select all
main(bool enter)
{
DebugN(this.name+enter);
}WCCOAui3:["excelTRUE"]
WCCOAui3:["excelFALSE"]
WCCOAui3:["trendTRUE"]
WCCOAui3:["trendFALSE"]
WCCOAui3:["taskTRUE"]
WCCOAui3:["infoTRUE"]
WCCOAui3:["taskFALSE"]
WCCOAui3:["infoFALSE"]
WCCOAui3:["infoTRUE"]
WCCOAui3:["infoFALSE"]
Not so good, because line 6 (WCCOAui3:["infoTRUE"]) is coming before line 7 (WCCOAui3:["taskFALSE"]), but nevertheless it works always (all leaving-events are coming after coming-events).
If I run it in browser by WebClient, I saw next thing: some of leaveing-events are coming before coming-events:
WCCOAui2:["infoTRUE"]
WCCOAui2:["infoFALSE"]
WCCOAui2:["taskFALSE"]
WCCOAui2:["taskTRUE"]
WCCOAui2:["excelTRUE"]
WCCOAui2:["excelFALSE"]
WCCOAui2:["infoTRUE"]
WCCOAui2:["infoFALSE"]
WCCOAui2:["trendTRUE"]
WCCOAui2:["trendFALSE"]
There's a big trouble for me, because leaving-event trigered before enter-event.
How to fix it?