In UEStudio, is there an easy way to "linkify" regular text? That is, is there an easy way to select any text and turn it into an HTML link without having to manually type <a href=URL>NAME</a>?
Thanks
Thanks
Code: Select all
InsertMode
ColumnModeOff
HexOff
IfSel
Clipboard 9
Cut
"<a href="">"
Paste
"</a>"
ClearClipboard
Clipboard 0
Else
"<a href=""></a>"
EndIf
Code: Select all
InsertMode
ColumnModeOff
HexOff
IfSel
Clipboard 9
Cut
"<a href=""
GetString "Enter the url:"
"">"
Paste
"</a>"
ClearClipboard
Clipboard 0
Else
"<a href=""
GetString "Enter the url:"
""></a>"
EndIf
Code: Select all
InsertMode
ColumnModeOff
HexOff
IfSel
Clipboard 9
Cut
"<a href=""
GetString "Enter the url:"
"">"
Paste
"</a>"
ClearClipboard
Clipboard 0
Else
"<a href=""
GetString "Enter the url:"
"" target=\rdblquote _blank\rdblquote >""
GetString "Enter the display text:"
""</a>"
EndIf