Millisecond Forums

How to put a transition page between a two counterbalanced test ?

https://forums.millisecond.com/Topic27307.aspx

By Ma__02 - 6/18/2019

Hi,

I want to put a transition page between a two counterbalanced test.

I've already created a "test" as a transition between the two experiments, in Inquisit, but I don't know how to insert it after the first program, knowing that the two programs are counterbalanced.
Here is my actual program for counterbalancing the two tests, which works perfectly :

<batch>
/ subjects = (1 of 2)
/ groupassignment = groupnumber
/file="Chal-HvsV.iqx"
/file="Comp-HvsV.iqx"
</batch>

<batch>
/ subjects = (2 of 2)
/ groupassignment = groupnumber
/file="Comp-HvsV.iqx"
/file="Chal-HvsV.iqx"
</batch>

Can you help me please ? Is it possible ?

Thanks in advance,
Marine G
By Dave - 6/19/2019

Ma__02 - 6/19/2019
Hi,

I want to put a transition page between a two counterbalanced test.

I've already created a "test" as a transition between the two experiments, in Inquisit, but I don't know how to insert it after the first program, knowing that the two programs are counterbalanced.
Here is my actual program for counterbalancing the two tests, which works perfectly :

<batch>
/ subjects = (1 of 2)
/ groupassignment = groupnumber
/file="Chal-HvsV.iqx"
/file="Comp-HvsV.iqx"
</batch>

<batch>
/ subjects = (2 of 2)
/ groupassignment = groupnumber
/file="Comp-HvsV.iqx"
/file="Chal-HvsV.iqx"
</batch>

Can you help me please ? Is it possible ?

Thanks in advance,
Marine G

Simply put your "transition" page in a separate script

<block transitionblock>
/ preinstructions = (transitionpage)
</block>

<page transitionpage>
^This is the transition.
</page>

and run that script in-between the two experimental scripts.

<batch>
/ subjects = (1 of 2)
/ groupassignment = groupnumber
/file="Chal-HvsV.iqx"
/ file = "transitionscript.iqx"
/file="Comp-HvsV.iqx"
</batch>

<batch>
/ subjects = (2 of 2)
/ groupassignment = groupnumber
/file="Comp-HvsV.iqx"
/ file = "transitionscript.iqx"
/file="Chal-HvsV.iqx"
</batch>
By Ma__02 - 6/19/2019

Dave - 6/19/2019
Ma__02 - 6/19/2019
Hi,

I want to put a transition page between a two counterbalanced test.

I've already created a "test" as a transition between the two experiments, in Inquisit, but I don't know how to insert it after the first program, knowing that the two programs are counterbalanced.
Here is my actual program for counterbalancing the two tests, which works perfectly :

<batch>
/ subjects = (1 of 2)
/ groupassignment = groupnumber
/file="Chal-HvsV.iqx"
/file="Comp-HvsV.iqx"
</batch>

<batch>
/ subjects = (2 of 2)
/ groupassignment = groupnumber
/file="Comp-HvsV.iqx"
/file="Chal-HvsV.iqx"
</batch>

Can you help me please ? Is it possible ?

Thanks in advance,
Marine G

Simply put your "transition" page in a separate script

<block transitionblock>
/ preinstructions = (transitionpage)
</block>

<page transitionpage>
^This is the transition.
</page>

and run that script in-between the two experimental scripts.

<batch>
/ subjects = (1 of 2)
/ groupassignment = groupnumber
/file="Chal-HvsV.iqx"
/ file = "transitionscript.iqx"
/file="Comp-HvsV.iqx"
</batch>

<batch>
/ subjects = (2 of 2)
/ groupassignment = groupnumber
/file="Comp-HvsV.iqx"
/ file = "transitionscript.iqx"
/file="Chal-HvsV.iqx"
</batch>

Thanks a lot, it works perfectly !