Jump to content

KWP

Level 1
  • Posts

    6
  • Joined

  • Last visited

Posts posted by KWP

  1. As mentioned above, it can all be solved with AutoHotkey script. Both alt+s and alt+n is fixed by running a following script in AutoHotkey:

    Not sure, who is the original author. but credit goes to him/her. I've just added the alt+n workaraound.

    RAlt & s::
    If GetKeyState("Shift","P")
       Send {Text}Ś
    else
       Send {Text}ś
    return
    
    RAlt & n::
    If GetKeyState("Shift","P")
       Send {Text}Ń
    else
       Send {Text}ń
    return

     

  2. 12 minutes ago, koralfx said:

    Zapisz plik z kodowaniem ANSI

    Thank you, it worked :)

    On 11/3/2020 at 10:11 AM, Michał Kuczek said:

    Maybe you have AltGr instead of RAlt on your keyboard, try replacing RAlt with AltGr in the script.

    You can read more about RAlt and AltGr here: https://www.autohotkey.com/docs/Hotkeys.htm#AltGr

    AltGr didn't. AHK says it's not a correct command or sth.

    Thnakfully ANSI fixed the problem.

  3. 12 hours ago, Michał Kuczek said:

    For everyone looking for a temporary solution and knowing AutoHotkey, add this to your script:

    
    RAlt & s::
        Send {Text}ś
    return

    This will solve the problem by disabling the Evernote shortcut and writing ś. ❤🤎💜

    And you evernote team solve this quick........... thats insane .....

    Unfortunately this effects in sending "Ĺ›" and not ś. Maybe I'm doing something wrong :)

×
×
  • Create New...