+xHello!
I have an experiment on Inquisit Web that doesn't end. Once participants have finished, it loops back to the consent form but not the pre-experiment instructions, which is the first page participants see). We've added in an "abort.script(true)" expression to the " /onexptend" attribute, but the problem is still occurring.
The link to the experiment is:
https://mili2nd.co/as6bThank you for any suggestions!
Angelina
You misunderstand how sequence() works:
This here
/ blocks = [
1-11=sequence( consent_form_block, practice_GC_block_femaleTarget,
Block1A_gendcat, Recall_block1B,
practice_GC_block_femaleTarget, Block4C_gendcat, Recall_block4D,
happy_final_block, RSSurvey_block, demographics_block, endquestions)]
means
run the entire sequence defined -- from block consent_form_block to block endquestions -- a total of
11 times.
It simply ought to be
/ blocks = [
1=sequence( consent_form_block, practice_GC_block_femaleTarget,
Block1A_gendcat, Recall_block1B,
practice_GC_block_femaleTarget, Block4C_gendcat, Recall_block4D,
happy_final_block, RSSurvey_block, demographics_block, endquestions)]
if you want to run that sequence of blocks only
once.