I’m trying to get a Max scene to attach xrefs that are listed in a text file (so that file can change externally and the maxscript can be run to update everything)
This is my code, it seems to read the text file but throws up and error and doesn’t attach anything:
xrefPath = "c:\\users\\jaime\\desktop\\x\\"
ext = ".max"
listArray = #()
file = openFile "c:\\users\\jaime\\desktop\\x\\xrefs.txt" mode:"r"
while not eof file do
(
lineInfo = readLine file
append listArray lineInfo
)
close file
for i in listArray do
(
xrefs.addNewXrefFile (xrefPath + i + ext) i
)
Is the listArray empty or has wrong filenames? You could try a print i in the for loop and see what it outputs. Other than that maybe the XRef window needs to be closed and reopened. You could also try a doesFileExist on the newly constructed filename.
I think you’ve made it more complicated than it needs to be…
You don’t need the ext variable at all… as in your text file you have them listed as “temp.max”
xrefPath = "c:\\users\\jaime\\desktop\\x\\"
listArray = #()
file = openFile "c:\\users\\jaime\\desktop\\x\\xrefs.txt" mode:"r"
while not eof file do
(
lineInfo = readLine file
append listArray lineInfo
)
close file
for i in listArray do
(
xrefs.addNewXrefFile (xrefPath + i)
)