Hey, I've just implemented your code and it works great for the most part, but I had to rehash some of it to get it to work perfectly =P
Is there any reason the following condition wouldn't be detected properly?
code:
if(typeof(GlobalScope[EventName]) == "function"){
GlobalScope[EventName](PlusWnd, SliderControlArray[lParam], NewPosition);
}
It returns that the type of this event is undefined =\. I replaced that bit and based on the code I threw together, I know that its there and works:
code:
eval (EventName + "(PlusWnd, SliderControlArray[lParam],NewPosition);")
Anyone know the reason this could be?