Add options in explorer context menu when some text is selected


  1. Posts : 24
    windows 10
       #1

    Add options in explorer context menu when some text is selected


    Hi, how to add an option in this context menu ?
    Imgur: The magic of the Internet

    How to add UPPERCASE and lowercase like in Notepad++ ? and other options
    Imgur: The magic of the Internet

    I'm already doing it by pressing hotkeys with an autohotkey script but I would prefer directly from the menu like notepad++ without looking for keys on the keyboard. Any help would be appreciated.
    This is the script I'm using:

    Code:
    !x::
    
    store := clipboard
    send ^x
    clipwait
    sendraw, [
    send, ^v
    sendraw, ]
    clipboard := store
    store =
    return
    
    !z::
    
    store := clipboard
    send ^x
    clipwait
    sendraw, (
    send, ^v
    sendraw, )
    clipboard := store
    store =
    return
    
    !l:: 
    send ^c                                                               
    StringLower Clipboard, Clipboard, L
    Send %Clipboard%
    RETURN
    
    !u:: 
    send ^c                                                               
    StringUpper Clipboard, Clipboard, U
    Send %Clipboard%
    RETURN
    
    
    !t:: 
    send ^c                                                               
    StringUpper Clipboard, Clipboard, T
    Send %Clipboard%
    RETURN
      My Computer


  2. Posts : 14,006
    Win10 Pro and Home, Win11 Pro and Home, Win7, Linux Mint
       #2

    Notepad++ is a text editor, File Explorer is a file manager, Internet Explorer is a Browser, all 3 are quite different from the others. Notepad++ is a third-party software intended to provide things that the Windows Notepad doesn't have. An intention of Notepad as a plain text editor is for not including hidden formatting in a document like occurs with a word processor program. A text editor is useful for coding in creating programs and basic HTML/Hyper Text Markup Language or Web pages.
      My Computers


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 10 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 10" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 13:45.
Find Us




Windows 10 Forums