
Originally Posted by
Anneke
I have the same problem. Whenever I try to run an input file, I get a black screen and DirectRT refuses to run the file. Even one as simple as the one in the attachment doesn't get run. I've edited the semi-colons to commas (with and without quotation marks) in Notepad for several times, but it still doesn't work.
I cannot change the regional functions on the computer since it is administrated by the university.
How do I fix this?
Anneke,
The issue might be caused due to the way your input files are structured. Input files are nothing more than comma-delimited data files. The data within the input file you've attached looks like this:
Code:
block,trial,!Condition,bgr,wgr,style,stim,loc,time,*
"1,1,pos,0,0,2,~hi,""0,0,1"",""rt:any"",*"
"1,2,pos,0,0,2,~bye,""0,0,1"",""rt:any"",*"
The contents of the file should look like this:
Code:
block,trial,!Condition,bgr,wgr,style,stim,loc,time,*
1,1,pos,0,0,2,~hi,"0,0,1",rt:any,*
1,2,pos,0,0,2,~bye,"0,0,1",rt:any,*
What program are you using to edit these files?
Regards,
Trevor