I have a script. Script works fine only problem is I need to bring up the “selector” to choose where I should put the item.
“set theGroup to display group selector
end tell” ?
What do I need to put in. I tried a few lines but hasn’t work.
on run argv
if (count of argv) is greater than 0 then
repeat with theItem in argv
tell application id "DNtp" to launch
try
set thePath to theItem as text
tell application id "DNtp"
set theRecord to ocr file thePath to incoming group
end tell
end tell
end try
end repeat
end if
end run