What I miss:
Make changes to the currently selected record while the alert box is shown, like change the given tags or some other field.
My setup:
- A script shows a window for a record
- A display alert shows some meta information about the record
- Using the buttons of the dialog box I chose how to handle the document
The code for the display alert:
set theAlertResponse to display alert "DNtp" message "File: " & theName & "
Company: " & theCompany & "
Tags: " & my convertListToString(theResultTags, ", ") & "
Targent path: " & theTargetPath & "
Database: " & theDatabaseName buttons {"Abort", "Ignore", "Move"} default button 2 as warning giving up after 30
The code for the window:
local theWindow
set theWindow to open tab for record theRecord
That’s my current workaround for DT4 - show window to review changes - #11 by MarvinMarvelouis.
