If opened in Notepad or Wordpad, this file should format just fine with all tabs and no lines split.
Script CaptureURL ()
var
handle hWnd,
string sMessage
Let hWnd = FindDescendantWindow (GetAppMainWindow (GetFocus ()), address_bar4)
If hWnd && IsWindowVisible (hWnd) Then
SaveCursor ()
InvisibleCursor ()
MoveToWindow (hWnd)
If GetChunk () != cscNull Then
Let sMessage = FormatString (msgAddress1_L, GetChunk())
;SayFormattedMessage (ot_user_requested_information, sMessage, GetChunk())
CopyToClipboard(GetChunk())
Else
SayFormattedMessage(ot_user_requested_information, msgAddressBar1_L, cmsgSilent)
EndIf
EndIf
EndScript