AppleScript Editor (Result Window)
AppleScript Editor (Result Window)
- Subject: AppleScript Editor (Result Window)
- From: Dave Moen <email@hidden>
- Date: Wed, 03 Jan 2001 04:17:56 -0700
Hello,
Is is possible to get the text out of the result window?
Thanks in advance for your assistance.
tell application "Microsoft Word"
activate
set vNumChar to 0
repeat
set vNumChar to (vNumChar + 1)
do Visual Basic "Selection.MoveLeft Unit:=wdCharacter, Count:=1,
Extend:=wdExtend"
-- do Visual Basic "selection.copy"
get selection
if (the clipboard as text) contains "?" then exit repeat
end repeat
end tell