Millisecond Forums

Help creating a test

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

By abunf23 - 7/6/2023

Hello,
this might a too trivial for most but I've never worked with Millisecond or any other form of test-creating tool before.
I just need a simple test:

a textbox where participants can enter any text (unlimited) while a timer runs in the background (possibly visible for the participants).

Can anyone help me create the test?

Thank you!!
By Dave - 7/6/2023

abunf23 - 7/6/2023
Hello,
this might a too trivial for most but I've never worked with Millisecond or any other form of test-creating tool before.
I just need a simple test:

a textbox where participants can enter any text (unlimited) while a timer runs in the background (possibly visible for the participants).

Can anyone help me create the test?

Thank you!!

<block exampleblock>
/ trials = [1=openended.entertext]
</block>

<openended entertext>
/ stimulusframes = [1=text.instruction, clock.timer]
/ size = (90%, 80%)
/ position = (50%, 95%)
/ multiline = true
/ timeout = 60000
</openended>

<text instruction>
/ items = ("Enter text below. You have one minute.")
/ position = (50%, 5%)
</text>

<clock timer>
/ position = (90%, 5%)
/ mode = timer
/ timeout = 60000
</clock>

By abunf23 - 7/6/2023

Dave - 7/6/2023
abunf23 - 7/6/2023
Hello,
this might a too trivial for most but I've never worked with Millisecond or any other form of test-creating tool before.
I just need a simple test:

a textbox where participants can enter any text (unlimited) while a timer runs in the background (possibly visible for the participants).

Can anyone help me create the test?

Thank you!!

<block exampleblock>
/ trials = [1=openended.entertext]
</block>

<openended entertext>
/ stimulusframes = [1=text.instruction, clock.timer]
/ size = (90%, 80%)
/ position = (50%, 95%)
/ multiline = true
/ timeout = 60000
</openended>

<text instruction>
/ items = ("Enter text below. You have one minute.")
/ position = (50%, 5%)
</text>

<clock timer>
/ position = (90%, 5%)
/ mode = timer
/ timeout = 60000
</clock>


Thank you so much