<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><div>Thank you very much for the quick reply.<br></div><div><br> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Yes.  The modifier specified with interpret is not related to the<br>
status, but with to modifier map.  So F5+Exactly(Super) kicks if you<br>
</blockquote><div></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">enter keysym F5 on a key with has Super in its modifier map.<br>
<span class=""><br></span></blockquote><div>Thanks for this information. I understand much better now.<br></div><div> <br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">
</span>What you have to do is to refine your ACXMONADFN, so that you accesss<br>
different levels when you press Super and when you do not.  When you<br>
want to keep F25 on Level1, let's say that are Level2 and Level3, and<br>
Level4 is for XF86_Switch_VT_5.  Then, you do something like:<br>
<span class=""><br>
    key <FK05> {<br>
        type = "ACXMONADFN",<br>
</span>        symbols[Group1] = [ F25, F25, F25, XF86_Switch_VT_5 ],<br>
        actions[Group1] = [ NoAction(), RedirectKey(keycode=<FK15>, mods=Super), RedirectKey(keycode=<FK15>, clearmods=Super), SwitchScreen(screen=5,!same) ]<br>
    };<br>
    key <FK15> {<br>
        type = "ONE_LEVEL",<br>
        symbols[Group1] = [ F5 ]<br>
    };<br>
<br></blockquote><div>I tried this and it works. There is only one minor glitch though.<br></div><div>The first redirect "RedirectKey(keycode=<FK15>, mods=Super)"  redirects to <FK15> but it does not set the mod key(Super). I have tried "modifiers=Super" instead of "mods=Super" and I have also tried real modifiers like Shift, Control and virtual modifiers like Alt. <br><br>But, the second redirect works fine. clearmods/clearModifiers clears the appropriate modifier.<br><br></div><div>Regards,<br></div><div>Rocky<br></div></div><br></div></div>