Hi Dave,
thanks for the reply! :D I used the .bat to get it to work! :)
I almost figured it out myself, except that I used this:
JumpOut("\\startexp.bat"; VariableNameToPass)
Which didn't work, now I've just used the following (difference is in the two backslashes, which Is stupid anyway :p):
JumpOut("startexp.bat"; VariableNameToPass)
(the .bat is in the same directory..)
Thanks a lot!
Cheers, Peppo
so, a recap on the solution for future readers:
- create a .bat file (using notepad) which contains the program and script, and %1, like so:
- "C:\Program Files\Millisecond Software\Inquisit 3\Inquisit.exe" "C:\Experiments\MyExperiment.exp" %1
- Save this as startexp.bat and use this to start your inquisit experiment in authorware (or other software for that matter..)
- Save the subject id in a variable (in this example: VariableNameToPass)
- line to start in authorware:
- JumpOut(FileLocation^"\\startexp.bat"; VariableNameToPass)