Copy text and analyze it
Copy text and analyze it
So, how to copy and paste some information and analyze it with "If function"?
Re: Copy text and analyze it
This is a simple macro which finds text "John" in text copied to clipboard:
The %_vClpText% is the text currently in clipboard. If you need something more powerful then use <regex_find> command. You find an example in the program on line help.
Code: Select all
<if>("%_vClpText%~=john")<#>
<msg>(-100,-100,"John found!","",1,0,0,0)<#>
<endif>