Back
Login
Register
Login
Register
Millisecond Forums
Home
»
Millisecond Forums
»
Inquisit 4
»
Reaction Time Task
Reaction Time Task
Post Reply
Like
44
Reaction Time Task
View
Flat Ascending
Flat Descending
Threaded
Options
Subscribe to topic
Print This Topic
RSS Feed
Goto Topics Forum
Author
Message
Dave
Dave
posted 7 Years Ago
ANSWER
Post Details
Share Post
Group: Administrators
Posts: 13K,
Visits: 104K
+
x
Dave - Thursday, May 18, 2017
+
x
JacintaS - Thursday, May 18, 2017
Ok thank you! Is this on the right track? There are a couple of errors I am not sure how to get rid of before I can test out the script
Thanks, your help is very much appreciated!
Yes, it is on the right track. But there is no <block> called " 8choiceRTtask".
<expt>
/ blocks = [
1 = intro;
2 = 8choiceRTtask;
]
/ onexptend = [
values.completed = 1;
]
/ postinstructions = (End)
</expt>
which should look something like this:
<block 8choiceRTtask>
/ onblockbegin = [
list.highlightedPosition.reset();
]
/ stop = [
expressions.totalTrialcount >= values.maxTrials;
]
/ trials = [1 = 8choiceRT]
</block>
You also have not positioned the additional "box" stimuli properly.
Here's a quick revision with the two issues mentioned above fixed.
Attachments
eightchoicereactiontime.iqx
(
220 views,
32.00 KB
)
Reply
Like
67
Dave
Dave
posted 7 Years Ago
ANSWER
Post Details
Share Post
Group: Administrators
Posts: 13K,
Visits: 104K
+
x
JacintaS - Thursday, May 18, 2017
Ok thank you! Is this on the right track? There are a couple of errors I am not sure how to get rid of before I can test out the script
Thanks, your help is very much appreciated!
Yes, it is on the right track. But there is no <block> called " 8choiceRTtask".
<expt>
/ blocks = [
1 = intro;
2 = 8choiceRTtask;
]
/ onexptend = [
values.completed = 1;
]
/ postinstructions = (End)
</expt>
which should look something like this:
<block 8choiceRTtask>
/ onblockbegin = [
list.highlightedPosition.reset();
]
/ stop = [
expressions.totalTrialcount >= values.maxTrials;
]
/ trials = [1 = 8choiceRT]
</block>
You also have not positioned the additional "box" stimuli properly.
Reply
Like
44
JacintaS
JacintaS
posted 7 Years Ago
ANSWER
Post Details
Share Post
Group: Awaiting Activation
Posts: 23,
Visits: 129
Ok thank you! Is this on the right track? There are a couple of errors I am not sure how to get rid of before I can test out the script
Thanks, your help is very much appreciated!
Attachments
eightchoicereactiontime.iqx
(
224 views,
31.00 KB
)
Reply
Like
58
Dave
Dave
posted 7 Years Ago
ANSWER
Post Details
Share Post
Group: Administrators
Posts: 13K,
Visits: 104K
+
x
JacintaS - Wednesday, May 17, 2017
Thank you very much! That really helps a lot.
How would I go about making it into an 8 choice reaction timer (with 8 grey boxes)?
I.e:
Response key 1: 'A'
Response key 2: 'S'
Response key 3: 'D'
Response key 4: 'F'
Response key 5: 'J'
Response key 6: 'K'
Response key 7: 'L'
Response key 8: ';'
Thank you!
You need to define additional stimulus objects, have the trials display them along with the already existing ones, and add the new responses to the overall logic. Work through the code -- once you understand how the 4-choice version works, it's straightforward to add further choices. Do this incrementally. First, go from 4 to 5. Once you have that working, add the remaining 3.
Reply
Like
58
JacintaS
JacintaS
posted 7 Years Ago
ANSWER
Post Details
Share Post
Group: Awaiting Activation
Posts: 23,
Visits: 129
Thank you very much! That really helps a lot.
How would I go about making it into an 8 choice reaction timer (with 8 grey boxes)?
I.e:
Response key 1: 'A'
Response key 2: 'S'
Response key 3: 'D'
Response key 4: 'F'
Response key 5: 'J'
Response key 6: 'K'
Response key 7: 'L'
Response key 8: ';'
Thank you!
Reply
Like
60
Dave
Dave
posted 7 Years Ago
ANSWER
Post Details
Share Post
Group: Administrators
Posts: 13K,
Visits: 104K
+
x
Dave - Wednesday, May 17, 2017
+
x
JacintaS - Tuesday, May 16, 2017
Hi, the Four Choice Reaction Timer task seems to only be for Inquisit 5. Am I able to find an Inquisit 4 version. Also I was after the task to have an 8-choice reaction timer. How do I go about doing this?
Thanks!!
There is no Inquisit 4 version of this task. You'd have to take the Inquisit 5 version, work through the code and replace all Inquisit 5-specific syntax with its respective Inquisit 4-compatible equivalent (in so far as any equivalent exists).
Here's a quick attempt to backport the FCRT script to Inquisit 4. This should give you a good idea about the changes involved if you sit down and compare it to the original Inquisit 5 script.
Caveat: While I have done my best to avoid mistakes, I have not had the time to test this extensively. While I don't think so, it is possible that a mistake lurks somewhere in the code. So please make sure you test the thing to a reasonable degree before doing anything further or critical with it.
Attachments
fourchoicereactiontimetask_v4_backport.iqx
(
225 views,
32.00 KB
)
Reply
Like
45
Dave
Dave
posted 7 Years Ago
ANSWER
Post Details
Share Post
Group: Administrators
Posts: 13K,
Visits: 104K
+
x
JacintaS - Tuesday, May 16, 2017
Hi, the Four Choice Reaction Timer task seems to only be for Inquisit 5. Am I able to find an Inquisit 4 version. Also I was after the task to have an 8-choice reaction timer. How do I go about doing this?
Thanks!!
There is no Inquisit 4 version of this task. You'd have to take the Inquisit 5 version, work through the code and replace all Inquisit 5-specific syntax with its respective Inquisit 4-compatible equivalent (in so far as any equivalent exists).
Reply
Like
60
JacintaS
JacintaS
posted 7 Years Ago
ANSWER
HOT
Topic Details
Share Topic
Group: Awaiting Activation
Posts: 23,
Visits: 129
Hi, the Four Choice Reaction Timer task seems to only be for Inquisit 5. Am I able to find an Inquisit 4 version. Also I was after the task to have an 8-choice reaction timer. How do I go about doing this?
Thanks!!
Reply
Like
44
GO
Merge Selected
Merge into selected topic...
Merge into merge target...
Merge into a specific topic ID...
Open Merge
Post Reply
Like
44
Post Quoted Reply
Reading This Topic
Login
Login
Remember Me
Reset Password
Resend Validation Email
Login
Facebook
Explore
Messages
Mentions
Search