Re: IDLE 0.10 now running Uniplus

From: gilles <gilles.fetis_at_email.domain.hidden>
Date: Fri, 11 Apr 2008 06:06:13 -0700 (PDT)

>
> I am experiencing that bug under Mac OS X with a US keyboard, too. In
> addition, backslash/pipe and backquote/tilde don't work for me.

backslash and backquote are not mapped for now. the colon problems seems to be a bug in Allegro. Also numeric pad is not mapped.

>
> Also, the mouse button has never worked under OS X (the right mouse
> button works to open the menu, but the left mouse button does not work
> for interacting with the emulated firmware/OS).
maybe the get_mouse_mickeys() always report non 0 values, so mouse button function is never called...
I don't have a macosX machine, so I cannot fix it for now something like:

             get_mouse_mickeys(&l_mouse_x,&l_mouse_y);
             if ((l_mouse_x!=0) || (l_mouse_y!=0)) {
                if (l_mouse_x<-128) l_mouse_x=-128;
                if (l_mouse_x>127) l_mouse_x=127;
                if (l_mouse_y<-128) l_mouse_y=-128;
                if (l_mouse_y>127) l_mouse_y=127;

                via_keyb_update_mouse_pos((int8)l_mouse_x,
(int8)l_mouse_y);
                }
//                else
                    getMouseButton();

may help

--~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "LisaList" group. To post to this group, send email to lisalist_at_email.domain.hidden To unsubscribe from this group, send email to lisalist-unsubscribe_at_email.domain.hidden For more options, visit this group at http://groups.google.com/group/lisalist?hl=en -~----------~----~----~----~------~----~------~--~--- Received on 2008-04-11 06:19:33

This archive was generated by hypermail 2.4.0 : 2020-01-13 12:15:21 EST