Millisecond Forums

running multiple tasks on one license for different surveys

https://forums.millisecond.com/Topic13139.aspx

By hue_spu - 4/25/2014

I'd like to run multiple tasks on two different surveys in Qualtrics, those being the Stop-Signal Task, ANT, and Stroop.  I'm currently running the Stop-Signal Task on one survey and would like to administer the ANT and Stroop on a separate survey. Is it possible for Inquisit to generate two different links while still using the same script that contains all of these tasks? Any information would be most appreciated!
By Dave - 4/25/2014

To do this, you need to set up <batch> elements in a script (which you register as your active web script) and pass in the condition to run to the launch page via a URL query parameter when redirecting from Qualtrics:

<batch>
/ file = "a.iqx"
/ subjects = (1 of 2)
/ groupassignment = groupnumber
</batch>

<batch>
/ file = "b.iqx"
/ file = "c.iqx"
/ subjects = (2 of 2)
/ groupassignment = groupnumber
</batch>

From your Qualtrics survey A, redirect to

http://research.millisecond.com/youraccountname/yourscriptname.web?condition=1

and it'll run "a.iqx" as specified above.

From your Qualtrics survey B, redirect to

http://research.millisecond.com/youraccountname/yourscriptname.web?condition=2

and it'll run "b.iqx" and "c.iqx".

You need to set up your launch page to retrieve the groupid from an URL query parameter, of course (see the options in the Web Script Wizard).
By hue_spu - 4/25/2014

Great! Thank you so much for the help.