<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Batch maxscript to read .csv files run a script and save .max files in 3ds Max Programming Forum</title>
    <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008299#M2511</link>
    <description>&lt;P&gt;Yes same name same folder, the max file can be saved in the same folder or the 3dsmax/scenes is okay. Ideally I just want to process the csv data which also has the names to create objects. I created the csv.txt with names only in the first script to&amp;nbsp; generate spheres. I had to use notepad++ to manually add |10|0|0|0|12 it's tedious&lt;/P&gt;</description>
    <pubDate>Sat, 03 Jun 2023 00:16:38 GMT</pubDate>
    <dc:creator>system-core</dc:creator>
    <dc:date>2023-06-03T00:16:38Z</dc:date>
    <item>
      <title>Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12007709#M2509</link>
      <description>&lt;P&gt;create sphere from names in text file with this format&lt;/P&gt;&lt;P&gt;PlayerHouse_Shower01001|10|0|0|0|12&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;clearlistener()

adata = (dotnetClass "System.IO.File").ReadAllLines @"C:\test.txt"

for i = 1 to adata.count do
(
pInfo = (filterString adata[i] "|")
print pInfo
s = sphere segments:(pInfo[6] as integer)
s.radius = pInfo[2] as integer
s.pos = [pInfo[3] as integer,pInfo[4] as integer, pInfo[5] as integer]
s.name = pInfo[1]
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;move/rotate/scale objects from csv with this format&lt;/P&gt;&lt;P&gt;Name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Position&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Rotation&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Scale&lt;BR /&gt;PlayerHouse_Shower01001,-80331.0938,90976.4297,7857.2979,0.0000,-0.0000,230.8562,1.0000&lt;BR /&gt;TreeMaplePreWar01Gr001,-99744.5547,77048.9453,10398.3457,0.6550,-0.6280,269.8729,0.9100&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;(
    file = memStreamMgr.openFile @"C:\test.csv"

    while NOT file.eos() do
    (
        local line = filterString (file.readLine()) ","
        if line.count == 8 AND isValidNode (local obj = getNodeByName line[1]) do
            obj.pos = [line[2] as float, line[3] as float, line[4] as float]
			
		if line.count == 8 AND isValidNode (local obj = getNodeByName line[1]) do
			obj.rotation = eulerAngles (line[5] as float) (line[6] as float) (line[7] as float)
			
        if line.count == 8 AND isValidNode (local obj = getNodeByName line[1]) do
            obj.scale = [line[8] as float, line[8] as float, line[8] as float]
	)
    memStreamMgr.close file
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I wanted to modify the scripts above to save a max file, based on a csv file name that the script reads.&lt;/P&gt;&lt;P&gt;I've got hundreds of files with different names test.csv for example. the code should do the following&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;read file test.csv&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;create one object per name from the csv file, PlayerHouse_Shower01001 TreeMaplePreWar01Gr001...etc (can be a sphere/dummy/box)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;run the script code position/rotation/scale&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;save test.max (Based on read csv filename)&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;reset&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;read next csv file&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;repeat until end of files&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;If anybody can help give me some examples or help me figure out how to do this I would appreciate it. Thankyou&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 17:10:12 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12007709#M2509</guid>
      <dc:creator>system-core</dc:creator>
      <dc:date>2023-06-02T17:10:12Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008248#M2510</link>
      <description>&lt;P&gt;lt is true that you always have a pair of .txt and .csv files with the same name in the same directory, and you need to create a max file with the same name in the same directory as the original pair?&lt;/P&gt;</description>
      <pubDate>Fri, 02 Jun 2023 23:14:02 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008248#M2510</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-06-02T23:14:02Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008299#M2511</link>
      <description>&lt;P&gt;Yes same name same folder, the max file can be saved in the same folder or the 3dsmax/scenes is okay. Ideally I just want to process the csv data which also has the names to create objects. I created the csv.txt with names only in the first script to&amp;nbsp; generate spheres. I had to use notepad++ to manually add |10|0|0|0|12 it's tedious&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 00:16:38 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008299#M2511</guid>
      <dc:creator>system-core</dc:creator>
      <dc:date>2023-06-03T00:16:38Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008338#M2512</link>
      <description>&lt;P&gt;It sounds like you don't need TXT file at all. The CSV already tells you the name of object and its matrix3.&lt;/P&gt;&lt;P&gt;The type of the object could be any (dummy for example) with predefined size.&lt;/P&gt;&lt;P&gt;&amp;nbsp; &amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 01:17:49 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008338#M2512</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-06-03T01:17:49Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008344#M2513</link>
      <description>&lt;P&gt;Yes thats right, I have searched all over the internet for some code I could use, I don't have much knowledge to write code.&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 01:24:48 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008344#M2513</guid>
      <dc:creator>system-core</dc:creator>
      <dc:date>2023-06-03T01:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008348#M2514</link>
      <description>&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="general"&gt;struct TheCSVBatchStruct 
(
private

	caption = "Choose a Folder for CSV Batch...",
	
	read_all_lines = (dotnetClass "System.IO.File").ReadAllLines,
	
public
	dummy_size = 100,
	last_dir, 
	
	fn make_matrix data =
	(
		if data.count == 8 then 
		(
			pos = [execute data[2], execute data[3], execute data[4]]
			rot = (eulerangles (execute data[5]) (execute data[6]) (execute data[7])) as quat
			scl = execute data[8] * [1,1,1]
			translate (rotate (scalematrix scl) (inverse rot)) pos
		)
		else (matrix3 1)
	),	

	fn process dir: saveCheck:on = 
	(
		if not saveCheck or checkforsave() do
		(
			if dir == unsupplied do dir = getSavePath caption:caption
			
			if iskindof dir String and doesfileexist dir do
			(
				pattern = pathConfig.appendPath dir @"*.csv"
				csvs = getfiles pattern
				
				format "directory: %\n" dir
				format "\tprocess CSV files:\n"
				
				for c in csvs do
				(
					resetmaxfile #noPrompt
					setSaveRequired off

					format "\t\tCSV: %\n" (filenamefrompath c)
					format "\t\t\tnodes:\n"
					
					ss = read_all_lines c
					for s in ss do
					(
						data = filterstring s ",;" 
						if data.count == 8 do
						(
							name = data[1]
							tm = make_matrix data

							node = dummy name:name boxsize:(dummy_size * [1,1,1]) transform:tm
							if isvalidnode node do
							(
								setSaveRequired on
								format "\t\t\t\t%\n" name
							)
						)
					)
					if getSaveRequired() do
					(
						m = replace c (c.count-2) 3 "max"
						format "\t\t\tMAX: %\n" (filenamefrompath m)
						
						res = savemaxfile m clearNeedSaveFlag:true useNewFile:false quiet:true
						format "\t\t\t\t%\n" ((if res then "SUCCEEDED" else "FAILED")	)							
					)
				)
			)
		)
	),
	
	on create do
	(
	)
)

csv_batch = TheCSVBatchStruct()

/*

-- default run:
csv_batch.process()

-- expert run if you exactly know what to do:
csv_batch.process savecheck:off dir:@"C:\temp\Tests"

*/&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;buy me a beer if it works&amp;nbsp;&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":winking_face:"&gt;😉&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;PS. some bug was fixed&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 01:34:05 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008348#M2514</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-06-03T01:34:05Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008362#M2515</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://forums.autodesk.com/t5/user/viewprofilepage/user-id/5208077"&gt;@system-core&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;&lt;P&gt;... I have searched all over the internet for some code I could use, I don't have much knowledge to write code.&lt;/P&gt;&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;It's very hard to find something that works for a specific task... ChatGPT is not yet developed enough in this area to be trusted... so for now all that's left is to learn how to code on your own.&lt;/P&gt;&lt;P&gt;And yes... You could also ask someone who knows how to do it.&amp;nbsp;&lt;span class="lia-unicode-emoji" title=":smiling_face_with_sunglasses:"&gt;😎&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 01:42:36 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008362#M2515</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-06-03T01:42:36Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008376#M2516</link>
      <description>&lt;P&gt;In reality, of course, batch tools are much more complex if you want to do it right. The main challenge is to make the batch robust and stable enough to complete the job, and informative enough to tell you about the process (track progress and statistics, log warnings and errors, etc.).&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 01:48:59 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008376#M2516</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-06-03T01:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008388#M2517</link>
      <description>&lt;P&gt;I've tried the script and got the following in the listener&lt;/P&gt;&lt;LI-CODE lang="general"&gt;#Struct:TheCSVBatchStruct(
  last_dir:&amp;lt;data&amp;gt;; Public,
  make_matrix:&amp;lt;fn&amp;gt;; Public,
  read_all_lines:&amp;lt;data&amp;gt;; Private,
  dummy_size:&amp;lt;data&amp;gt;; Public,
  caption:&amp;lt;data&amp;gt;; Private,
  process:&amp;lt;fn&amp;gt;; Public)
(TheCSVBatchStruct dummy_size:100 last_dir:undefined)
OK&lt;/LI-CODE&gt;&lt;P&gt;Am I supposed to add a folder path to "Choose a Folder for CSV Batch..." I did and I get the same text as above in the listener. I don't see anything happening and no files are created? Thanks for helping me&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 02:05:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008388#M2517</guid>
      <dc:creator>system-core</dc:creator>
      <dc:date>2023-06-03T02:05:56Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008391#M2518</link>
      <description>&lt;P&gt;do you run:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;csv_batch.process()&lt;/PRE&gt;</description>
      <pubDate>Sat, 03 Jun 2023 02:11:56 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008391#M2518</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-06-03T02:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008392#M2519</link>
      <description>&lt;P&gt;do you run:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;csv_batch.process()&lt;/PRE&gt;&lt;P&gt;?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 02:12:07 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008392#M2519</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-06-03T02:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008416#M2520</link>
      <description>&lt;P&gt;No I just ran 3dsmaxbatch.exe C:\script.ms with cmd prompt. I'm a bit confused how to run it; and if I need to add a directory or does it let me select one What is the csv_batch.process() how would I run that. Thanks&lt;/P&gt;&lt;PRE&gt;csv_batch.process()&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 02:50:50 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008416#M2520</guid>
      <dc:creator>system-core</dc:creator>
      <dc:date>2023-06-03T02:50:50Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008457#M2521</link>
      <description>&lt;P&gt;1. open max&lt;/P&gt;&lt;P&gt;2. run the code I sent&lt;/P&gt;&lt;P&gt;3. run :&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;csv_batch.process()&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 03:24:23 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008457#M2521</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-06-03T03:24:23Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008468#M2522</link>
      <description>&lt;P&gt;I'm not sure what you mean here is a picture of what I have, I ran EvaluateAll&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="image.jpg" style="width: 999px;"&gt;&lt;img src="https://forums.autodesk.com/t5/image/serverpage/image-id/1223177iCAFEA8DC9C6DC0B4/image-size/large?v=v2&amp;amp;px=999" role="button" title="image.jpg" alt="image.jpg" /&gt;&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 03:35:15 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008468#M2522</guid>
      <dc:creator>system-core</dc:creator>
      <dc:date>2023-06-03T03:35:15Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008496#M2523</link>
      <description>&lt;P&gt;Un-comment bottom of the script. And evaluate all again&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 04:07:25 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008496#M2523</guid>
      <dc:creator>denisT.MaxDoctor</dc:creator>
      <dc:date>2023-06-03T04:07:25Z</dc:date>
    </item>
    <item>
      <title>Re: Batch maxscript to read .csv files run a script and save .max files</title>
      <link>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008502#M2524</link>
      <description>&lt;P&gt;Yes it works, Thanks for that how could I donate some money for that beer&lt;/P&gt;</description>
      <pubDate>Sat, 03 Jun 2023 04:17:24 GMT</pubDate>
      <guid>https://forums.autodesk.com/t5/3ds-max-programming-forum/batch-maxscript-to-read-csv-files-run-a-script-and-save-max/m-p/12008502#M2524</guid>
      <dc:creator>system-core</dc:creator>
      <dc:date>2023-06-03T04:17:24Z</dc:date>
    </item>
  </channel>
</rss>

