View Single Post
You could open the script in Applescript Editor, comment out the display dialog and set the clipboard lines, and replace them with a choose from list approach, as in the following extract:

Code:
tell application id "sevs"
		activate
		-- 		if button returned of (display dialog strList buttons {pToClipboard, "OK"} default button "OK" with title pTitle & " Ver. " & pVersion) ¬
		-- 			is pToClipboard then tell application id "com.apple.finder" to set the clipboard to strList
		
		set lstStats to paragraphs of strList
		set varChoice to choose from list lstStats with prompt "" default items {first item of lstStats} OK button name pToClipboard with title pTitle & "Ver. " & pVersion
		if varChoice is not false then tell application id "MACS" to set the clipboard to strList
end tell
If you want to delete the blank lines in the listing, you can do a search and replace through the script to remove each line of the form:
select null;