max ophuls - 2008-05-21

First, excellent application, and very well documented!

Now my question:
Is it possible to make gizmod to act on simultaneous events? Specifically, I'd like to be able to open or close applications pressing the four shoulder buttons from my joystick. I tried this (for two buttons):

        if Event.Code == GizmoKey.BTN_TR:
            if Event.Code == GizmoKey.BTN_TL:
                Gizmod.Keyboards[0].createEvent(GizmoEventType.EV_KEY, GizmoKey.KEY_S
                   return True
               else:
                return False   
           else:
            return False

But didn't work. Thanks in advance.