Batch file coding issue


Author
Message
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 110K
angela279 - 8/5/2026
Dave - 8/5/2026
Dave - 8/5/2026
angela279 - 8/5/2026
Dave - 8/4/2026
angela279 - 8/4/2026
angela279 - 8/4/2026
Dave - 8/3/2026
angela279 - 8/3/2026
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI

No, there is no limit. There must be another reason for the exit, a mistake in a script or a triggered script.abort() condition in one or more of the scripts.

Provide the full set of files, including any images etc. needed to run them, then I can take a look.

Appreciate the fast response Dave. I'll try and attach the files in more than one post (since it won't let me post them all in one). Here's all the iqx files first.

Actually, scratch that. It won't let me upload the video file as it's too big, is there an easier way to attach/send files, the total of all files is 112mb.

Put everything in a ZIP, upload it to your Dropbox or similar service, then share the link.

Ah of couse, thank you. Here's the link. https://1drv.ms/f/c/bcf3c6fea15e6af7/IgD0s-ph6y-qS7F9NE9WQfErAR0qmU6PfuB4Y075PuXMFtY?e=IddObU

Thanks, I'll take a look at it tomorrow.

In 12_Demographics.iqx, you have

<summarydata>
/ file = "demodata.iqdat"
/ columns = (inquisit.version, computer.platform,script.startDate, script.startTime, script.subjectId, script.groupId, script.sessionId,
script.elapsedTime, script.completed, textbox.age.response, radiobuttons.gender.response,
radiobuttons.region.response, checkboxes.ethnicity.response, checkboxes.culturalbg.response)
/ labels = ("version", "platform", "date", "time", "subjectId", "groupId", "sessionId",
"elapsed time", "completed", "age", "gender", "region", "ethnicity", "culturalbg")
</summarydata>

There is no <radiobuttons> element called region in that script. You have a <textbox region> element. So, when Inquisit tries to write that data, it can't, and that's a critical error. The batch will terminate at that point.

*audible sigh* wow. It's working after changing radiobuttons to textbox now. Thank you so much for your prompt assistance Dave!

Just to make extra sure, I ran a couple automated test runs through the entire batch over night. All scripts ran to completion after fixing the mistake in 12_Demographics.iqx, so at this time I don't think there's another general issue.

With the mistake present, the batch would terminate at the end of 12_Demographics.iqx -- which is the expected behavior when a critical error is encountered.
angela279
angela279
Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)
Group: Forum Members
Posts: 6, Visits: 25
Dave - 8/5/2026
Dave - 8/5/2026
angela279 - 8/5/2026
Dave - 8/4/2026
angela279 - 8/4/2026
angela279 - 8/4/2026
Dave - 8/3/2026
angela279 - 8/3/2026
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI

No, there is no limit. There must be another reason for the exit, a mistake in a script or a triggered script.abort() condition in one or more of the scripts.

Provide the full set of files, including any images etc. needed to run them, then I can take a look.

Appreciate the fast response Dave. I'll try and attach the files in more than one post (since it won't let me post them all in one). Here's all the iqx files first.

Actually, scratch that. It won't let me upload the video file as it's too big, is there an easier way to attach/send files, the total of all files is 112mb.

Put everything in a ZIP, upload it to your Dropbox or similar service, then share the link.

Ah of couse, thank you. Here's the link. https://1drv.ms/f/c/bcf3c6fea15e6af7/IgD0s-ph6y-qS7F9NE9WQfErAR0qmU6PfuB4Y075PuXMFtY?e=IddObU

Thanks, I'll take a look at it tomorrow.

In 12_Demographics.iqx, you have

<summarydata>
/ file = "demodata.iqdat"
/ columns = (inquisit.version, computer.platform,script.startDate, script.startTime, script.subjectId, script.groupId, script.sessionId,
script.elapsedTime, script.completed, textbox.age.response, radiobuttons.gender.response,
radiobuttons.region.response, checkboxes.ethnicity.response, checkboxes.culturalbg.response)
/ labels = ("version", "platform", "date", "time", "subjectId", "groupId", "sessionId",
"elapsed time", "completed", "age", "gender", "region", "ethnicity", "culturalbg")
</summarydata>

There is no <radiobuttons> element called region in that script. You have a <textbox region> element. So, when Inquisit tries to write that data, it can't, and that's a critical error. The batch will terminate at that point.

*audible sigh* wow. It's working after changing radiobuttons to textbox now. Thank you so much for your prompt assistance Dave!
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 110K
Dave - 8/5/2026
angela279 - 8/5/2026
Dave - 8/4/2026
angela279 - 8/4/2026
angela279 - 8/4/2026
Dave - 8/3/2026
angela279 - 8/3/2026
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI

No, there is no limit. There must be another reason for the exit, a mistake in a script or a triggered script.abort() condition in one or more of the scripts.

Provide the full set of files, including any images etc. needed to run them, then I can take a look.

Appreciate the fast response Dave. I'll try and attach the files in more than one post (since it won't let me post them all in one). Here's all the iqx files first.

Actually, scratch that. It won't let me upload the video file as it's too big, is there an easier way to attach/send files, the total of all files is 112mb.

Put everything in a ZIP, upload it to your Dropbox or similar service, then share the link.

Ah of couse, thank you. Here's the link. https://1drv.ms/f/c/bcf3c6fea15e6af7/IgD0s-ph6y-qS7F9NE9WQfErAR0qmU6PfuB4Y075PuXMFtY?e=IddObU

Thanks, I'll take a look at it tomorrow.

In 12_Demographics.iqx, you have

<summarydata>
/ file = "demodata.iqdat"
/ columns = (inquisit.version, computer.platform,script.startDate, script.startTime, script.subjectId, script.groupId, script.sessionId,
script.elapsedTime, script.completed, textbox.age.response, radiobuttons.gender.response,
radiobuttons.region.response, checkboxes.ethnicity.response, checkboxes.culturalbg.response)
/ labels = ("version", "platform", "date", "time", "subjectId", "groupId", "sessionId",
"elapsed time", "completed", "age", "gender", "region", "ethnicity", "culturalbg")
</summarydata>

There is no <radiobuttons> element called region in that script. You have a <textbox region> element. So, when Inquisit tries to write that data, it can't, and that's a critical error. The batch will terminate at that point.

Note that this is clearly surfaced in the output:


Edited 2 Weeks Ago by Dave
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 110K
angela279 - 8/5/2026
Dave - 8/4/2026
angela279 - 8/4/2026
angela279 - 8/4/2026
Dave - 8/3/2026
angela279 - 8/3/2026
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI

No, there is no limit. There must be another reason for the exit, a mistake in a script or a triggered script.abort() condition in one or more of the scripts.

Provide the full set of files, including any images etc. needed to run them, then I can take a look.

Appreciate the fast response Dave. I'll try and attach the files in more than one post (since it won't let me post them all in one). Here's all the iqx files first.

Actually, scratch that. It won't let me upload the video file as it's too big, is there an easier way to attach/send files, the total of all files is 112mb.

Put everything in a ZIP, upload it to your Dropbox or similar service, then share the link.

Ah of couse, thank you. Here's the link. https://1drv.ms/f/c/bcf3c6fea15e6af7/IgD0s-ph6y-qS7F9NE9WQfErAR0qmU6PfuB4Y075PuXMFtY?e=IddObU

Thanks, I'll take a look at it tomorrow.
angela279
angela279
Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)
Group: Forum Members
Posts: 6, Visits: 25
Dave - 8/4/2026
angela279 - 8/4/2026
angela279 - 8/4/2026
Dave - 8/3/2026
angela279 - 8/3/2026
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI

No, there is no limit. There must be another reason for the exit, a mistake in a script or a triggered script.abort() condition in one or more of the scripts.

Provide the full set of files, including any images etc. needed to run them, then I can take a look.

Appreciate the fast response Dave. I'll try and attach the files in more than one post (since it won't let me post them all in one). Here's all the iqx files first.

Actually, scratch that. It won't let me upload the video file as it's too big, is there an easier way to attach/send files, the total of all files is 112mb.

Put everything in a ZIP, upload it to your Dropbox or similar service, then share the link.

Ah of couse, thank you. Here's the link. https://1drv.ms/f/c/bcf3c6fea15e6af7/IgD0s-ph6y-qS7F9NE9WQfErAR0qmU6PfuB4Y075PuXMFtY?e=IddObU
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 110K
angela279 - 8/4/2026
angela279 - 8/4/2026
Dave - 8/3/2026
angela279 - 8/3/2026
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI

No, there is no limit. There must be another reason for the exit, a mistake in a script or a triggered script.abort() condition in one or more of the scripts.

Provide the full set of files, including any images etc. needed to run them, then I can take a look.

Appreciate the fast response Dave. I'll try and attach the files in more than one post (since it won't let me post them all in one). Here's all the iqx files first.

Actually, scratch that. It won't let me upload the video file as it's too big, is there an easier way to attach/send files, the total of all files is 112mb.

Put everything in a ZIP, upload it to your Dropbox or similar service, then share the link.
angela279
angela279
Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)
Group: Forum Members
Posts: 6, Visits: 25
angela279 - 8/4/2026
Dave - 8/3/2026
angela279 - 8/3/2026
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI

No, there is no limit. There must be another reason for the exit, a mistake in a script or a triggered script.abort() condition in one or more of the scripts.

Provide the full set of files, including any images etc. needed to run them, then I can take a look.

Appreciate the fast response Dave. I'll try and attach the files in more than one post (since it won't let me post them all in one). Here's all the iqx files first.

Actually, scratch that. It won't let me upload the video file as it's too big, is there an easier way to attach/send files, the total of all files is 112mb.
angela279
angela279
Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)
Group: Forum Members
Posts: 6, Visits: 25
Dave - 8/3/2026
angela279 - 8/3/2026
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI

No, there is no limit. There must be another reason for the exit, a mistake in a script or a triggered script.abort() condition in one or more of the scripts.

Provide the full set of files, including any images etc. needed to run them, then I can take a look.

Appreciate the fast response Dave. I'll try and attach the files in more than one post (since it won't let me post them all in one). Here's all the iqx files first.
Attachments
0_Pre_info.iqx (10 views, 11.00 KB)
1_Pre_habituation_ratings.iqx (9 views, 6.00 KB)
2_Hab_Acq_blue_1_1.iqx (9 views, 5.00 KB)
3_Post_acquisition_ratings.iqx (10 views, 8.00 KB)
4_Extinction_pink_1_1_S.iqx (10 views, 12.00 KB)
5_Post_extinction_ratings.iqx (11 views, 8.00 KB)
6_Video_Break.iqx (10 views, 491 bytes)
7_Renewal_blue_1_1.iqx (10 views, 4.00 KB)
8_Post_renewal_ratings.iqx (9 views, 8.00 KB)
9_Reacquisition_blue_1_1.iqx (7 views, 5.00 KB)
11_Questions.iqx (11 views, 2.00 KB)
11_Questions.iqx (8 views, 2.00 KB)
12_Demographics.iqx (10 views, 4.00 KB)
13_STAI.iqx (9 views, 16.00 KB)
14_PSWQ.iqx (7 views, 8.00 KB)
15_IUS12.iqx (11 views, 7.00 KB)
16_Post_info.iqx (8 views, 2.00 KB)
batchBP11S.iqx (10 views, 603 bytes)
Dave
Dave
Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)Supreme Being (1M reputation)
Group: Administrators
Posts: 13K, Visits: 110K
angela279 - 8/3/2026
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI

No, there is no limit. There must be another reason for the exit, a mistake in a script or a triggered script.abort() condition in one or more of the scripts.

Provide the full set of files, including any images etc. needed to run them, then I can take a look.
angela279
angela279
Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)Associate Member (60 reputation)
Group: Forum Members
Posts: 6, Visits: 25
I'm trying to code a batch file that lists 17 different files to run in sequential order. This is the current coding:

<batch>
/ file = "0_Pre_info.iqx"
/ file = "1_Pre_habituation_ratings.iqx"
/ file = "2_Hab_Acq_blue_1_1.iqx"
/ file = "3_Post_acquisition_ratings.iqx"
/ file = "4_Extinction_pink_1_1_S.iqx"
/ file = "5_Post_extinction_ratings.iqx"
/ file = "6_Video_Break.iqx"
/ file = "7_Renewal_blue_1_1.iqx"
/ file = "8_Post_renewal_ratings.iqx"
/ file = "9_Reacquisition_blue_1_1.iqx"
/ file = "10_Post_reacquisition_ratings.iqx"
/ file = "11_Questions.iqx"
/ file = "12_Demographics.iqx"
/ file = "13_STAI.iqx"
/ file = "14_PSWQ.iqx"
/ file = "15_IUS12.iqx"
/ file = "16_Post_info.iqx"
</batch>

My issue is that it runs well until the file labeled "13_STAI.iqx", and instead of running the rest of the files in order, it exits. I have experimented with the files in a different order, and it always cuts off at the 14th file. Is there a limit to how many files can be run like this or is something else needed to fix? TI
GO

Merge Selected

Merge into selected topic...



Merge into merge target...



Merge into a specific topic ID...




Reading This Topic

Explore
Messages
Mentions
Search