BMR
July 5th, 2007, 10:41 AM
My X10 Remote sends a left double click event if press the button repeatedly...
I mapped my remote buttons with the Add Remote Wizard, but the left double click wasn't working...
I edited the mousecontrol.lua script, found in \Program Files\Promixis\Girder\luascript,
I identified 2 errors
line166 { "MOUSEBUTTON LEFT DOUBLECLICK" } should be { "MOUSEBUTTON LEFT DOUBLE CLICK" } (missing space)
line167 { win.MouseClick (win.LeftButton,50) } should be { win.MouseClick (win.LeftButton,20) win.MouseClick (win.LeftButton,20) } (two clicks, not one)
if event == "MOUSEBUTTON LEFT DOUBLE CLICK" or (self.UseArrowKeys and (event == "OK" or event =="ENTER")) then
win.MouseClick (win.LeftButton,20)
win.MouseClick (win.LeftButton,20)
self.LeftButtonHold = false;
return false
end
Using G4.0.15
I mapped my remote buttons with the Add Remote Wizard, but the left double click wasn't working...
I edited the mousecontrol.lua script, found in \Program Files\Promixis\Girder\luascript,
I identified 2 errors
line166 { "MOUSEBUTTON LEFT DOUBLECLICK" } should be { "MOUSEBUTTON LEFT DOUBLE CLICK" } (missing space)
line167 { win.MouseClick (win.LeftButton,50) } should be { win.MouseClick (win.LeftButton,20) win.MouseClick (win.LeftButton,20) } (two clicks, not one)
if event == "MOUSEBUTTON LEFT DOUBLE CLICK" or (self.UseArrowKeys and (event == "OK" or event =="ENTER")) then
win.MouseClick (win.LeftButton,20)
win.MouseClick (win.LeftButton,20)
self.LeftButtonHold = false;
return false
end
Using G4.0.15