<div dir="ltr">Dear Andreas,<div><br></div><div>Thank you very much for the help. <span style="font-family:arial,sans-serif;font-size:13px">I tried what you provided but it did't work for me.  I think I need to change other parts of the file.</span> I think I understand the part you are providing.  The part you don't show is the part I can't figure out.  I don't know what to change in the "EIGHT_LEVEL", or "LOCAL_EIGHT_LEVEL" definitions to "<span style="font-size:13px;font-family:arial,sans-serif">make the right Alt key an ISO_Level3_Shift and some other key an </span><span style="font-size:13px;font-family:arial,sans-serif">ISO_Level5_Shift", etc..  I can use any of the three.  I'd prefer what you think is best. </span></div>
<div><span style="font-size:13px;font-family:arial,sans-serif"><br></span></div><div><font face="arial, sans-serif">I would really appreciate it if you could help get me over the hurdle.</font></div><div><span style="font-size:13px;font-family:arial,sans-serif"><br>
</span></div><div><span style="font-size:13px;font-family:arial,sans-serif">Thanks!</span></div><div><span style="font-size:13px;font-family:arial,sans-serif"><br></span></div><div><span style="font-size:13px;font-family:arial,sans-serif">Blake</span></div>
<div><span style="font-size:13px;font-family:arial,sans-serif"> </span></div><div class="gmail_extra"><br><br><div class="gmail_quote">On Thu, Apr 24, 2014 at 11:58 AM,  <span dir="ltr"><<a href="mailto:wettstae@gmail.com" target="_blank">wettstae@gmail.com</a>></span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="">> normal = equal<br>
> shift = plus<br>
> Right-Alt = multiply<br>
> Shift-Right-Alt = division<br>
> Control-Right-Alt = U2339<br>
<br>
</div>One way to achieve it is this:<br>
<br>
    key <AE12> {<br>
        type[Group1] = "LOCAL_EIGHT_LEVEL",<br>
        symbols[Group1]= [ equal, plus, multiply, division, equal, plus, U2339, division ]<br>
    };<br>
<br>
but then you also have to make your right Alt key a ISO_Level3_Shift,<br>
and you will not be able use Control as a real Control key together with<br>
AE12; it will be a level-selection key only (except for application with<br>
poor XKB support).<br>
<br>
Another way is this:<br>
<br>
    key <AE12> {<br>
        type[Group1] = "TWO_LEVEL",<br>
        type[Group2] = "LOCAL_EIGHT_LEVEL",<br>
        symbols[Group1]= [ equal, plus ],<br>
        symbols[Group2]= [ multiply, division, NoSymbol, NoSymbol,  U2339, NoSymbol, NoSymbol, NoSymbol ]<br>
    };<br>
<br>
which allows you to leave your right Alt key as is (Mode_switch), and<br>
allows Control to be used normally unless it is used together with the<br>
right Alt key.  It also has the advantage that for clients that are not<br>
XKB-aware, all symbols except U2339 remain accessible. I guess this is<br>
the easiest way for you.<br>
<br>
I would probably use<br>
<br>
    key <AE12> {<br>
        type[Group1] = "EIGHT_LEVEL",<br>
        symbols[Group1]= [ equal, plus, multiply, division, equal, plus, U2339, division ]<br>
    };<br>
<br>
and make the right Alt key an ISO_Level3_Shift and some other key an<br>
ISO_Level5_Shift.  It has the advantage that Control is not used for<br>
level selection and, therefore, least trouble with applications are to<br>
be expected.<br>
<div class="HOEnZb"><div class="h5"><br>
Andreas<br>
_______________________________________________<br>
<a href="mailto:xorg@lists.x.org">xorg@lists.x.org</a>: X.Org support<br>
Archives: <a href="http://lists.freedesktop.org/archives/xorg" target="_blank">http://lists.freedesktop.org/archives/xorg</a><br>
Info: <a href="http://lists.x.org/mailman/listinfo/xorg" target="_blank">http://lists.x.org/mailman/listinfo/xorg</a><br>
Your subscription address: %(user_address)s<br>
</div></div></blockquote></div><br></div></div>