2017-12-12 01:12 AM
CkPlan = REQUEST("NAME_OF_PLAN", "", sRqFileName)
ch1 = OPEN("Data", "ALTO_Database-File Names.txt",
"SEPARATOR = '\t', MODE=WA, DIALOG")
OUTPUT ch1, GLOB_INTGUID, 1, sRqFileName
CLOSE ch1 2017-12-12 06:23 AM
ch1 = OPEN("DATA", "DataFile.txt", "SEPARATOR='\t', MODE=WA, DIALOG")
OUTPUT ch1, GLOB_INTGUID, 1, A
CLOSE ch1
2017-12-12 08:15 AM
2017-12-13 02:14 AM
2017-12-19 11:39 PM
2018-01-10 12:33 AM
2018-02-08 10:11 AM
if bSync then !bSync is a boolean parameter, that is off by default
ch1 = OPEN("DATA", "RecordsFile.txt", "SEPARATOR='\t', MODE=WA, DIALOG")
OUTPUT ch1, GLOB_INTGUID, 1, A
CLOSE ch1
endif
With this, you can place all the objects you want, and then select them all at once, and turn the switch on to write the TXT file (I tried, works perfectly like this). If you happen to find a better/automatic solution for only running this part of the script once the object is already placed, please share with us.2018-02-22 06:09 AM