Statistics: Posted by SeraphimLeftNut — 10 Feb 2015, 22:15
Statistics: Posted by SeraphimLeftNut — 07 Feb 2015, 10:24
Statistics: Posted by SeraphimLeftNut — 03 Feb 2015, 03:06
TrixX wrote:SeraphimLeftNut wrote:Yes MarkC acceleration fix seems to help. I have been using it over the past month.
The really important part is to keep Windows settings at 6 and use the DPI changes on the mouse to suit. Otherwise it fails to use all the data from the mouse, which can result in glitchy movement.
Statistics: Posted by TrixX — 01 Feb 2015, 19:20
SeraphimLeftNut wrote:Yes MarkC acceleration fix seems to help. I have been using it over the past month.
Statistics: Posted by SeraphimLeftNut — 31 Jan 2015, 15:53
Statistics: Posted by TrixX — 31 Jan 2015, 13:39
--custom function to handle the single click behaviour of the mouse.
function CustomHandleEvent(self, event)
local eventHandled = false
if event.Type == 'MouseEnter' then
if self.mAltToggledFlag then
self:SetTexture(self.mAltHighlight)
else
self:SetTexture(self.mHighlight)
end
self:OnRolloverEvent('enter')
self:Play()
if self.mRolloverCue then
local sound = Sound({Cue = self.mRolloverCue, Bank = "Interface",})
PlaySound(sound)
end
self.mMouseOver = true
eventHandled = true
elseif event.Type == 'MouseExit' then
if self.mAltToggledFlag then
self:SetTexture(self.mAltNormal)
else
self:SetTexture(self.mNormal)
end
self:OnRolloverEvent('exit')
self:Play()
self.mMouseOver = false
eventHandled = true
elseif event.Type == 'ButtonPress' or event.Type == 'ButtonDClick' then
self:OnClick(event.Modifiers)
if self.mClickCue then
local sound = Sound({Cue = self.mClickCue, Bank = "Interface",})
PlaySound(sound)
end
self:Play()
eventHandled = true
end
return eventHandled
end
Statistics: Posted by Resin_Smoker — 31 Jan 2015, 11:56
Statistics: Posted by SeraphimLeftNut — 31 Jan 2015, 10:52
Statistics: Posted by TrixX — 29 Jan 2015, 09:32
Statistics: Posted by SeraphimLeftNut — 26 Jan 2015, 23:36
Statistics: Posted by SeraphimLeftNut — 16 Nov 2014, 08:02
SeraphimLeftNut wrote: Please don't refrain from replying with something like "you are just wasting power"
Statistics: Posted by SeraphimLeftNut — 04 Nov 2014, 07:25
Statistics: Posted by Aulex — 04 Nov 2014, 06:24