Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
+x+x+x+x+x+x+x+x+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary You donwload the version you need from the library. If you're going to use Inquisit 5, download the Inqusit 5 version. You then open the file you downloaded in Inquisit Lab. Read through the user manual at the top. Then change the settings you want to change and save the file. Once you're done with all of that, you can upload the scripts to your Inquisit Web account. Hi dave, Do you think you would be able to send me an example of what I would change the code to, in order to get rid of the delay and the delayed recall questions. I have been going through the scripts and trying to edit it, but I'm having no luck. :( https://www.millisecond.com/forums/FindPost28988.aspxThe example is in the first response up this thread. Thanks Dave, I'm just unsure what to change to code to in order to make it work. For instance would I do this? When I have played around with changes errors come up and it does not run. faceStudy: the duration (in ms) assigned for each face-study trial (each trial presents 4 face images associations) (default: 8000ms) /nameFaceLearning: the duration (in ms) assigned for each name-face learning trial (each trial presents 4 name-face associations)(default: ) /occupationFaceLearning: the duration (in ms) assigned for each occupation-face learning trial (each trial presents 4 name-face associations) /recallDelay: the delay duration (in ms) of the delayed recall conditions ( 0 ms) /nameSize: size of name/occupation label during study time in proportion to canvas height (default: 5%) /faceSize1: size of face photos during the study phase (default: 30%) /faceSize2: size of face photo during the cued recall testing phases (default: 50%) </usermanual> ************************************************************************************************************** ************************************************************************************************************** EDITABLE PARAMETERS: change editable parameters here ************************************************************************************************************** ************************************************************************************************************** <parameters> /randomPairings = false /faceStudy = 8000 /nameFaceLearning = 20000 /occupationFaceLearning = 20000 /recallDelay = 0 That's exactly what you need to change, yes, and will not cause errors. Thanks very much Dave, that helped me get rid of the delay! However there are still questions which follow the delay that I want to get rid of. How would I go about this, where is the syntax I would need to edit / delete? :) Remove the blocks you don't want from the <expt> element: <expt> / preinstructions = (FNAME_intro) / postinstructions = (End) / onexptend = [ values.completed = 1; ] / blocks = [ 1 = pairings; 2 = faceStudy; 3 = faceNameStudy; 4 = ILN; 5 = faceOccupationStudy; 6 = ILO; 7 = FRN; 8 = FRO; 9 = CR; 10 = delay; 11 = FRN30; 12 = FRO30; 13 = CR30; ] </expt> If you want to eliminate the delay and not run any blocks thereafter entirely, change the above to <expt> / preinstructions = (FNAME_intro) / postinstructions = (End) / onexptend = [ values.completed = 1; ] / blocks = [ 1 = pairings; 2 = faceStudy; 3 = faceNameStudy; 4 = ILN; 5 = faceOccupationStudy; 6 = ILO; 7 = FRN; 8 = FRO; 9 = CR; ] </expt> As a general matter, I would recommend working through the tutorials included in the documentation: https://www.millisecond.com/support/docs/v5/html/tutorials/tutorials.htmThese will give you a basic idea of how Inquisit scripts are structured, what does what., and which portions you may need to edit in existing scripts.
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
+x+x+x+x+x+x+x+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary You donwload the version you need from the library. If you're going to use Inquisit 5, download the Inqusit 5 version. You then open the file you downloaded in Inquisit Lab. Read through the user manual at the top. Then change the settings you want to change and save the file. Once you're done with all of that, you can upload the scripts to your Inquisit Web account. Hi dave, Do you think you would be able to send me an example of what I would change the code to, in order to get rid of the delay and the delayed recall questions. I have been going through the scripts and trying to edit it, but I'm having no luck. :( https://www.millisecond.com/forums/FindPost28988.aspxThe example is in the first response up this thread. Thanks Dave, I'm just unsure what to change to code to in order to make it work. For instance would I do this? When I have played around with changes errors come up and it does not run. faceStudy: the duration (in ms) assigned for each face-study trial (each trial presents 4 face images associations) (default: 8000ms) /nameFaceLearning: the duration (in ms) assigned for each name-face learning trial (each trial presents 4 name-face associations)(default: ) /occupationFaceLearning: the duration (in ms) assigned for each occupation-face learning trial (each trial presents 4 name-face associations) /recallDelay: the delay duration (in ms) of the delayed recall conditions ( 0 ms) /nameSize: size of name/occupation label during study time in proportion to canvas height (default: 5%) /faceSize1: size of face photos during the study phase (default: 30%) /faceSize2: size of face photo during the cued recall testing phases (default: 50%) </usermanual> ************************************************************************************************************** ************************************************************************************************************** EDITABLE PARAMETERS: change editable parameters here ************************************************************************************************************** ************************************************************************************************************** <parameters> /randomPairings = false /faceStudy = 8000 /nameFaceLearning = 20000 /occupationFaceLearning = 20000 /recallDelay = 0 That's exactly what you need to change, yes, and will not cause errors. Thanks very much Dave, that helped me get rid of the delay! However there are still questions which follow the delay that I want to get rid of. How would I go about this, where is the syntax I would need to edit / delete? :) Remove the blocks you don't want from the <expt> element: <expt> / preinstructions = (FNAME_intro) / postinstructions = (End) / onexptend = [ values.completed = 1; ] / blocks = [ 1 = pairings; 2 = faceStudy; 3 = faceNameStudy; 4 = ILN; 5 = faceOccupationStudy; 6 = ILO; 7 = FRN; 8 = FRO; 9 = CR; 10 = delay; 11 = FRN30; 12 = FRO30; 13 = CR30; ] </expt> If you want to eliminate the delay and not run any blocks thereafter entirely, change the above to <expt> / preinstructions = (FNAME_intro) / postinstructions = (End) / onexptend = [ values.completed = 1; ] / blocks = [ 1 = pairings; 2 = faceStudy; 3 = faceNameStudy; 4 = ILN; 5 = faceOccupationStudy; 6 = ILO; 7 = FRN; 8 = FRO; 9 = CR; ] </expt>
|
|
|
HilaryFarmer
|
|
Group: Forum Members
Posts: 8,
Visits: 23
|
+x+x+x+x+x+x+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary You donwload the version you need from the library. If you're going to use Inquisit 5, download the Inqusit 5 version. You then open the file you downloaded in Inquisit Lab. Read through the user manual at the top. Then change the settings you want to change and save the file. Once you're done with all of that, you can upload the scripts to your Inquisit Web account. Hi dave, Do you think you would be able to send me an example of what I would change the code to, in order to get rid of the delay and the delayed recall questions. I have been going through the scripts and trying to edit it, but I'm having no luck. :( https://www.millisecond.com/forums/FindPost28988.aspxThe example is in the first response up this thread. Thanks Dave, I'm just unsure what to change to code to in order to make it work. For instance would I do this? When I have played around with changes errors come up and it does not run. faceStudy: the duration (in ms) assigned for each face-study trial (each trial presents 4 face images associations) (default: 8000ms) /nameFaceLearning: the duration (in ms) assigned for each name-face learning trial (each trial presents 4 name-face associations)(default: ) /occupationFaceLearning: the duration (in ms) assigned for each occupation-face learning trial (each trial presents 4 name-face associations) /recallDelay: the delay duration (in ms) of the delayed recall conditions ( 0 ms) /nameSize: size of name/occupation label during study time in proportion to canvas height (default: 5%) /faceSize1: size of face photos during the study phase (default: 30%) /faceSize2: size of face photo during the cued recall testing phases (default: 50%) </usermanual> ************************************************************************************************************** ************************************************************************************************************** EDITABLE PARAMETERS: change editable parameters here ************************************************************************************************************** ************************************************************************************************************** <parameters> /randomPairings = false /faceStudy = 8000 /nameFaceLearning = 20000 /occupationFaceLearning = 20000 /recallDelay = 0 That's exactly what you need to change, yes, and will not cause errors. Thanks very much Dave, that helped me get rid of the delay! However there are still questions which follow the delay that I want to get rid of. How would I go about this, where is the syntax I would need to edit / delete? :)
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
+x+x+x+x+x+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary You donwload the version you need from the library. If you're going to use Inquisit 5, download the Inqusit 5 version. You then open the file you downloaded in Inquisit Lab. Read through the user manual at the top. Then change the settings you want to change and save the file. Once you're done with all of that, you can upload the scripts to your Inquisit Web account. Hi dave, Do you think you would be able to send me an example of what I would change the code to, in order to get rid of the delay and the delayed recall questions. I have been going through the scripts and trying to edit it, but I'm having no luck. :( https://www.millisecond.com/forums/FindPost28988.aspxThe example is in the first response up this thread. Thanks Dave, I'm just unsure what to change to code to in order to make it work. For instance would I do this? When I have played around with changes errors come up and it does not run. faceStudy: the duration (in ms) assigned for each face-study trial (each trial presents 4 face images associations) (default: 8000ms) /nameFaceLearning: the duration (in ms) assigned for each name-face learning trial (each trial presents 4 name-face associations)(default: ) /occupationFaceLearning: the duration (in ms) assigned for each occupation-face learning trial (each trial presents 4 name-face associations) /recallDelay: the delay duration (in ms) of the delayed recall conditions ( 0 ms) /nameSize: size of name/occupation label during study time in proportion to canvas height (default: 5%) /faceSize1: size of face photos during the study phase (default: 30%) /faceSize2: size of face photo during the cued recall testing phases (default: 50%) </usermanual> ************************************************************************************************************** ************************************************************************************************************** EDITABLE PARAMETERS: change editable parameters here ************************************************************************************************************** ************************************************************************************************************** <parameters> /randomPairings = false /faceStudy = 8000 /nameFaceLearning = 20000 /occupationFaceLearning = 20000 /recallDelay = 0 That's exactly what you need to change, yes, and will not cause errors.
|
|
|
HilaryFarmer
|
|
Group: Forum Members
Posts: 8,
Visits: 23
|
+x+x+x+x+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary You donwload the version you need from the library. If you're going to use Inquisit 5, download the Inqusit 5 version. You then open the file you downloaded in Inquisit Lab. Read through the user manual at the top. Then change the settings you want to change and save the file. Once you're done with all of that, you can upload the scripts to your Inquisit Web account. Hi dave, Do you think you would be able to send me an example of what I would change the code to, in order to get rid of the delay and the delayed recall questions. I have been going through the scripts and trying to edit it, but I'm having no luck. :( https://www.millisecond.com/forums/FindPost28988.aspxThe example is in the first response up this thread. Thanks Dave, I'm just unsure what to change to code to in order to make it work. For instance would I do this? When I have played around with changes errors come up and it does not run. faceStudy: the duration (in ms) assigned for each face-study trial (each trial presents 4 face images associations) (default: 8000ms) /nameFaceLearning: the duration (in ms) assigned for each name-face learning trial (each trial presents 4 name-face associations)(default: ) /occupationFaceLearning: the duration (in ms) assigned for each occupation-face learning trial (each trial presents 4 name-face associations) /recallDelay: the delay duration (in ms) of the delayed recall conditions ( 0 ms) /nameSize: size of name/occupation label during study time in proportion to canvas height (default: 5%) /faceSize1: size of face photos during the study phase (default: 30%) /faceSize2: size of face photo during the cued recall testing phases (default: 50%) </usermanual> ************************************************************************************************************** ************************************************************************************************************** EDITABLE PARAMETERS: change editable parameters here ************************************************************************************************************** ************************************************************************************************************** <parameters> /randomPairings = false /faceStudy = 8000 /nameFaceLearning = 20000 /occupationFaceLearning = 20000 /recallDelay = 0
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
+x+x+x+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary You donwload the version you need from the library. If you're going to use Inquisit 5, download the Inqusit 5 version. You then open the file you downloaded in Inquisit Lab. Read through the user manual at the top. Then change the settings you want to change and save the file. Once you're done with all of that, you can upload the scripts to your Inquisit Web account. Hi dave, Do you think you would be able to send me an example of what I would change the code to, in order to get rid of the delay and the delayed recall questions. I have been going through the scripts and trying to edit it, but I'm having no luck. :( https://www.millisecond.com/forums/FindPost28988.aspxThere's an example is in the first response up this thread. The explanation and portion you have to edit is highlighted right there.
|
|
|
HilaryFarmer
|
|
Group: Forum Members
Posts: 8,
Visits: 23
|
+x+x+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary You donwload the version you need from the library. If you're going to use Inquisit 5, download the Inqusit 5 version. You then open the file you downloaded in Inquisit Lab. Read through the user manual at the top. Then change the settings you want to change and save the file. Once you're done with all of that, you can upload the scripts to your Inquisit Web account. Hi dave, Do you think you would be able to send me an example of what I would change the code to, in order to get rid of the delay and the delayed recall questions. I have been going through the scripts and trying to edit it, but I'm having no luck. :(
|
|
|
Dave
|
|
Group: Administrators
Posts: 13K,
Visits: 104K
|
+x+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary You donwload the version you need from the library. If you're going to use Inquisit 5, download the Inqusit 5 version. You then open the file you downloaded in Inquisit Lab. Read through the user manual at the top. Then change the settings you want to change and save the file. Once you're done with all of that, you can upload the scripts to your Inquisit Web account.
|
|
|
HilaryFarmer
|
|
Group: Forum Members
Posts: 8,
Visits: 23
|
+x+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary Or do I upload it as a webscript in my account and edit there somehow? Also if I want to get rid of the delay and any delayed recall questions after it, what do I edit the code to? Do I delete that line of code? or make it = 0 or something? Thanks again for you help!
|
|
|
HilaryFarmer
|
|
Group: Forum Members
Posts: 8,
Visits: 23
|
+x Thanks so much for your quick response! How do I actually go about doing this? Do I download the face name association test and Groton maze task in inquist 5 and edit there and save it? When I download the syntax it comes up with a different script to the one that you have sent? So I'm not really sure how to actually go about editing it and saving it. Thanks for you help, Hilary
|
|
|