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.

Auvisio plugin mouse functions

Questions and comments specific to a particular plugin should go here.
Post Reply
tunayx
Posts: 9
Joined: Fri Jul 22, 2011 4:02 pm

Auvisio plugin mouse functions

Post 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?
skat
Posts: 48
Joined: Thu Jun 23, 2011 10:11 am

Re: Auvisio plugin mouse functions

Post 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>
Post Reply