Page 1 of 1
Auvisio plugin mouse functions
Posted: Fri Jul 22, 2011 4:46 pm
by tunayx
Hi, first of all thanks for this great application. I have vrc-1100 remote. I installed Auvisio plugin & driver successfully, keys work except mouse functions. Any solution about it?
Re: Auvisio plugin mouse functions
Posted: Tue Jul 26, 2011 5:38 am
by skat
Have a look here:
http://www.eventghost.org/forum/viewtop ... f=9&t=3316
You could then copy and paste the following macros into your EventGhost tree:
Code: Select all
<?xml version="1.0" encoding="UTF-8" ?>
<EventGhost Version="1534">
<Macro Name="Start mouse movement" Expanded="True">
<Event Name="Auvisio.MouseDir" />
<Action>
EventGhost.PythonCommand(u'eg.plugins.Mouse.GoDirection(eg.event.payload)')
</Action>
</Macro>
<Macro Name="Left mouse button" Expanded="True">
<Event Name="Auvisio.LeftClick" />
<Action>
Mouse.LeftButton()
</Action>
</Macro>
<Macro Name="Right mouse button" Expanded="True">
<Event Name="Auvisio.RightClickInfo" />
<Action>
Mouse.RightButton()
</Action>
</Macro>
</EventGhost>