Notice: This forum has been recovered from an old backup, so some content, links, and dates may be outdated. The forum is currently read-only while we restore sign-in and registration functionality. Details
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
If you find this forum valuable and would like to help keep it online, donations to help cover hosting and domain costs are greatly appreciated, but never expected. You can support the forum through Buy Me a Coffee or Ko-fi. Thank you for helping preserve the EventGhost community.
Auvisio plugin mouse functions
Auvisio plugin mouse functions
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
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:
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>