Home » Questions » Computers [ Ask a new question ]

How to select text then convert with html tag?

How to select text then convert with html tag?

LIke

Asked by: Guest | Views: 258
Total answers/comments: 1
Guest [Entry]

"You could use a similar approach that I used in your other question, use the clipboard buffer:

!p::
ClipSaved := ClipboardAll
Send ^c
clipwait
Clipboard = <p>%Clipboard%</p>
Send ^v
Clipboard := ClipSaved
ClipSaved=
return

give it a test run for me!"