Chris Site Admin
Joined: 02 Mar 2004 Posts: 10480
|
Posted: Sat Sep 25, 2004 8:26 pm Post subject: |
|
|
If the selected text is in a compatible control (e.g. an Edit), you can do this:
ControlGet, RetrievedString, Selected,, Edit1, Untitled - Notepad
The above is an example for Notepad.
You can then use something like this to replace the selection:
StringUpper, RetrievedString, RetrievedString
Control, EditPaste, %RetrievedString%, Edit1, Untitled - Notepad |
|