So_Leonie
|
|
Group: Forum Members
Posts: 7,
Visits: 59
|
+x+x+x+x+x+xHi, I'm using the Dot Probe task on Inquisit 6. I'd like to add an HTML page at a few points during the task that will ask the user a question. However, being an Inquisit beginner, I would need some advice on how and in which section I can add the HTML page to the script. Thanks a lot! Sorry, your description is too vague to provide any concrete guidance. For starters, it's not clear what "at a few points during the task" is supposed to mean. Second, a HTML page is not suitable for "asking the user a question" assuming that you want the participant to actually provide a response to said question and record that answer. So, what kind of question do you want to ask and what's the format supposed to be? A text box? A selection from a dropdown? Something else? Finally, which dot probe? There isn't a single one, there are multiple: https://www.millisecond.com/download/library/dotprobeYou ought to say which one of those you are working with. Hi Dave, Sorry if I didn't make myself clear. I'd like the question to appear 4 times during the task. The task is divided into 80 trials, so once after 20 trials, once after 40, once after 60 and once at the very end. For the question type, I'd like to ask a question and the user must answer on a scale from 0% to 100%, on a visual scale if possible, but this could be a selection from a dropdown. Finally, I use the "Alcohol Dot Probe" task. Thank you. For the question / visual scale, add a <slidertrial> to the script: https://www.millisecond.com/support/docs/current/html/language/elements/slidertrial.htm<slidertrial questiontrial> / ontrialbegin = [ values.category = "question"; ] / stimulusframes = [1=clearscreen, question] / size = (80%, 15%) / labels = ("0%", "100%") / range = (0, 100) / position = (50%, 75%) / posttrialpause = parameters.iti </slidertrial>
<text question> / items = ("Your question goes here") </text>
From <trial Alcohol> and <trial Filler>, /branch to the slidertrial you added whenever values.trialcount is a multiple of 20. <trial Alcohol> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial>
<trial Filler> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial> That's all there is to it. Hi Dave, Sorry for the inconvenience. I want to do exactly the same thing (add a question/visual scale from 0 to 100%, 10 times during each task), but with the tasks "The Attentional Network Task as originally developed by Fan et al (2002)" and "the Approach Avoidance Task (joystick version)". I tried to modify the script so that it works, but I have not managed. Is it complicated for you to give me the scripts for these two tasks? Thank you very much! You'll need to be more specific re. what exactly you did, then I can tell you what you did wrong. I used the codes you provided above, so the script related to the question, and the /branch for the trial part by changing the multiple. I didn't do anything else differently. Thanks.
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 108K
|
+x+x+x+x+xHi, I'm using the Dot Probe task on Inquisit 6. I'd like to add an HTML page at a few points during the task that will ask the user a question. However, being an Inquisit beginner, I would need some advice on how and in which section I can add the HTML page to the script. Thanks a lot! Sorry, your description is too vague to provide any concrete guidance. For starters, it's not clear what "at a few points during the task" is supposed to mean. Second, a HTML page is not suitable for "asking the user a question" assuming that you want the participant to actually provide a response to said question and record that answer. So, what kind of question do you want to ask and what's the format supposed to be? A text box? A selection from a dropdown? Something else? Finally, which dot probe? There isn't a single one, there are multiple: https://www.millisecond.com/download/library/dotprobeYou ought to say which one of those you are working with. Hi Dave, Sorry if I didn't make myself clear. I'd like the question to appear 4 times during the task. The task is divided into 80 trials, so once after 20 trials, once after 40, once after 60 and once at the very end. For the question type, I'd like to ask a question and the user must answer on a scale from 0% to 100%, on a visual scale if possible, but this could be a selection from a dropdown. Finally, I use the "Alcohol Dot Probe" task. Thank you. For the question / visual scale, add a <slidertrial> to the script: https://www.millisecond.com/support/docs/current/html/language/elements/slidertrial.htm<slidertrial questiontrial> / ontrialbegin = [ values.category = "question"; ] / stimulusframes = [1=clearscreen, question] / size = (80%, 15%) / labels = ("0%", "100%") / range = (0, 100) / position = (50%, 75%) / posttrialpause = parameters.iti </slidertrial>
<text question> / items = ("Your question goes here") </text>
From <trial Alcohol> and <trial Filler>, /branch to the slidertrial you added whenever values.trialcount is a multiple of 20. <trial Alcohol> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial>
<trial Filler> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial> That's all there is to it. Hi Dave, Sorry for the inconvenience. I want to do exactly the same thing (add a question/visual scale from 0 to 100%, 10 times during each task), but with the tasks "The Attentional Network Task as originally developed by Fan et al (2002)" and "the Approach Avoidance Task (joystick version)". I tried to modify the script so that it works, but I have not managed. Is it complicated for you to give me the scripts for these two tasks? Thank you very much! You'll need to be more specific re. what exactly you did, then I can tell you what you did wrong.
|
|
|
So_Leonie
|
|
Group: Forum Members
Posts: 7,
Visits: 59
|
+x+x+x+xHi, I'm using the Dot Probe task on Inquisit 6. I'd like to add an HTML page at a few points during the task that will ask the user a question. However, being an Inquisit beginner, I would need some advice on how and in which section I can add the HTML page to the script. Thanks a lot! Sorry, your description is too vague to provide any concrete guidance. For starters, it's not clear what "at a few points during the task" is supposed to mean. Second, a HTML page is not suitable for "asking the user a question" assuming that you want the participant to actually provide a response to said question and record that answer. So, what kind of question do you want to ask and what's the format supposed to be? A text box? A selection from a dropdown? Something else? Finally, which dot probe? There isn't a single one, there are multiple: https://www.millisecond.com/download/library/dotprobeYou ought to say which one of those you are working with. Hi Dave, Sorry if I didn't make myself clear. I'd like the question to appear 4 times during the task. The task is divided into 80 trials, so once after 20 trials, once after 40, once after 60 and once at the very end. For the question type, I'd like to ask a question and the user must answer on a scale from 0% to 100%, on a visual scale if possible, but this could be a selection from a dropdown. Finally, I use the "Alcohol Dot Probe" task. Thank you. For the question / visual scale, add a <slidertrial> to the script: https://www.millisecond.com/support/docs/current/html/language/elements/slidertrial.htm<slidertrial questiontrial> / ontrialbegin = [ values.category = "question"; ] / stimulusframes = [1=clearscreen, question] / size = (80%, 15%) / labels = ("0%", "100%") / range = (0, 100) / position = (50%, 75%) / posttrialpause = parameters.iti </slidertrial>
<text question> / items = ("Your question goes here") </text>
From <trial Alcohol> and <trial Filler>, /branch to the slidertrial you added whenever values.trialcount is a multiple of 20. <trial Alcohol> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial>
<trial Filler> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial> That's all there is to it. Hi Dave, Sorry for the inconvenience. I want to do exactly the same thing (add a question/visual scale from 0 to 100%, 10 times during each task), but with the tasks "The Attentional Network Task as originally developed by Fan et al (2002)" and "the Approach Avoidance Task (joystick version)". I tried to modify the script so that it works, but I have not managed. Is it complicated for you to give me the scripts for these two tasks? Thank you very much!
|
|
|
So_Leonie
|
|
Group: Forum Members
Posts: 7,
Visits: 59
|
+x+x+x+xHi, I'm using the Dot Probe task on Inquisit 6. I'd like to add an HTML page at a few points during the task that will ask the user a question. However, being an Inquisit beginner, I would need some advice on how and in which section I can add the HTML page to the script. Thanks a lot! Sorry, your description is too vague to provide any concrete guidance. For starters, it's not clear what "at a few points during the task" is supposed to mean. Second, a HTML page is not suitable for "asking the user a question" assuming that you want the participant to actually provide a response to said question and record that answer. So, what kind of question do you want to ask and what's the format supposed to be? A text box? A selection from a dropdown? Something else? Finally, which dot probe? There isn't a single one, there are multiple: https://www.millisecond.com/download/library/dotprobeYou ought to say which one of those you are working with. Hi Dave, Sorry if I didn't make myself clear. I'd like the question to appear 4 times during the task. The task is divided into 80 trials, so once after 20 trials, once after 40, once after 60 and once at the very end. For the question type, I'd like to ask a question and the user must answer on a scale from 0% to 100%, on a visual scale if possible, but this could be a selection from a dropdown. Finally, I use the "Alcohol Dot Probe" task. Thank you. For the question / visual scale, add a <slidertrial> to the script: https://www.millisecond.com/support/docs/current/html/language/elements/slidertrial.htm<slidertrial questiontrial> / ontrialbegin = [ values.category = "question"; ] / stimulusframes = [1=clearscreen, question] / size = (80%, 15%) / labels = ("0%", "100%") / range = (0, 100) / position = (50%, 75%) / posttrialpause = parameters.iti </slidertrial>
<text question> / items = ("Your question goes here") </text>
From <trial Alcohol> and <trial Filler>, /branch to the slidertrial you added whenever values.trialcount is a multiple of 20. <trial Alcohol> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial>
<trial Filler> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial> That's all there is to it. Great, it works! Thanks a lot.
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 108K
|
+x+x+xHi, I'm using the Dot Probe task on Inquisit 6. I'd like to add an HTML page at a few points during the task that will ask the user a question. However, being an Inquisit beginner, I would need some advice on how and in which section I can add the HTML page to the script. Thanks a lot! Sorry, your description is too vague to provide any concrete guidance. For starters, it's not clear what "at a few points during the task" is supposed to mean. Second, a HTML page is not suitable for "asking the user a question" assuming that you want the participant to actually provide a response to said question and record that answer. So, what kind of question do you want to ask and what's the format supposed to be? A text box? A selection from a dropdown? Something else? Finally, which dot probe? There isn't a single one, there are multiple: https://www.millisecond.com/download/library/dotprobeYou ought to say which one of those you are working with. Hi Dave, Sorry if I didn't make myself clear. I'd like the question to appear 4 times during the task. The task is divided into 80 trials, so once after 20 trials, once after 40, once after 60 and once at the very end. For the question type, I'd like to ask a question and the user must answer on a scale from 0% to 100%, on a visual scale if possible, but this could be a selection from a dropdown. Finally, I use the "Alcohol Dot Probe" task. Thank you. For the question / visual scale, add a <slidertrial> to the script: https://www.millisecond.com/support/docs/current/html/language/elements/slidertrial.htm<slidertrial questiontrial> / ontrialbegin = [ values.category = "question"; ] / stimulusframes = [1=clearscreen, question] / size = (80%, 15%) / labels = ("0%", "100%") / range = (0, 100) / position = (50%, 75%) / posttrialpause = parameters.iti </slidertrial>
<text question> / items = ("Your question goes here") </text>
From <trial Alcohol> and <trial Filler>, /branch to the slidertrial you added whenever values.trialcount is a multiple of 20. <trial Alcohol> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial>
<trial Filler> ... / posttrialpause = parameters.iti / branch = [ if (mod(values.trialcount, 20) == 0) { return slidertrial.questiontrial; } ] </trial> That's all there is to it.
|
|
|
So_Leonie
|
|
Group: Forum Members
Posts: 7,
Visits: 59
|
+x+xHi, I'm using the Dot Probe task on Inquisit 6. I'd like to add an HTML page at a few points during the task that will ask the user a question. However, being an Inquisit beginner, I would need some advice on how and in which section I can add the HTML page to the script. Thanks a lot! Sorry, your description is too vague to provide any concrete guidance. For starters, it's not clear what "at a few points during the task" is supposed to mean. Second, a HTML page is not suitable for "asking the user a question" assuming that you want the participant to actually provide a response to said question and record that answer. So, what kind of question do you want to ask and what's the format supposed to be? A text box? A selection from a dropdown? Something else? Finally, which dot probe? There isn't a single one, there are multiple: https://www.millisecond.com/download/library/dotprobeYou ought to say which one of those you are working with. Hi Dave, Sorry if I didn't make myself clear. I'd like the question to appear 4 times during the task. The task is divided into 80 trials, so once after 20 trials, once after 40, once after 60 and once at the very end. For the question type, I'd like to ask a question and the user must answer on a scale from 0% to 100%, on a visual scale if possible, but this could be a selection from a dropdown. Finally, I use the "Alcohol Dot Probe" task. Thank you.
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 108K
|
+xHi, I'm using the Dot Probe task on Inquisit 6. I'd like to add an HTML page at a few points during the task that will ask the user a question. However, being an Inquisit beginner, I would need some advice on how and in which section I can add the HTML page to the script. Thanks a lot! Sorry, your description is too vague to provide any concrete guidance. For starters, it's not clear what "at a few points during the task" is supposed to mean. Second, a HTML page is not suitable for "asking the user a question" assuming that you want the participant to actually provide a response to said question and record that answer. So, what kind of question do you want to ask and what's the format supposed to be? A text box? A selection from a dropdown? Something else? Finally, which dot probe? There isn't a single one, there are multiple: https://www.millisecond.com/download/library/dotprobeYou ought to say which one of those you are working with.
|
|
|
So_Leonie
|
|
Group: Forum Members
Posts: 7,
Visits: 59
|
Hi,
I'm using the Dot Probe task on Inquisit 6. I'd like to add an HTML page at a few points during the task that will ask the user a question. However, being an Inquisit beginner, I would need some advice on how and in which section I can add the HTML page to the script.
Thanks a lot!
|
|
|