Millisecond Forums

How to erase previous answer?

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

By AeS - 4/7/2017

Hi!

I have a little problem.
I have a surveypage with textbox, and than another surveypage (the same look, background etc) with another textbox (also looks the same).
I would like to get as many answers I can get, o one question (participant should write some idea in textbox, press "next" and write next idea press "next", and so on). What I don't know is how to erase previous answer, because now, previous answer is on first and the second surveypage (it stays in textbox).

Example:

<image abcd>
/ items = ("def_norm_puszk.png")
/ position = (15, 3)
</image>

<textbox abc>
/caption = "For the purpose of this task, write down below all the extraoridinary, creative and unusual uses of cans that will come to your head.."
/required = true
/multiline = true
/textboxsize = (50,10)
/position = (25%,55%)
</textbox>

<surveypage abc>
/questions = [1=abcd, abc]
/showpagenumbers = false
/showquestionnumbers = false
/ showbackbutton = false
/ nextbuttonposition = (50%, 50%)
</surveypage>

<survey abc>
/ pages = [1-200 =abc]
/nextlabel = "next"
/finishlabel = "next"
/timeout = 210000
/screencolor = (216, 216, 216)
</survey>

Help me please :) 
By Dave - 4/7/2017

AeS - Friday, April 7, 2017
Hi!

I have a little problem.
I have a surveypage with textbox, and than another surveypage (the same look, background etc) with another textbox (also looks the same).
I would like to get as many answers I can get, o one question (participant should write some idea in textbox, press "next" and write next idea press "next", and so on). What I don't know is how to erase previous answer, because now, previous answer is on first and the second surveypage (it stays in textbox).

Example:

<image abcd>
/ items = ("def_norm_puszk.png")
/ position = (15, 3)
</image>

<textbox abc>
/caption = "For the purpose of this task, write down below all the extraoridinary, creative and unusual uses of cans that will come to your head.."
/required = true
/multiline = true
/textboxsize = (50,10)
/position = (25%,55%)
</textbox>

<surveypage abc>
/questions = [1=abcd, abc]
/showpagenumbers = false
/showquestionnumbers = false
/ showbackbutton = false
/ nextbuttonposition = (50%, 50%)
</surveypage>

<survey abc>
/ pages = [1-200 =abc]
/nextlabel = "next"
/finishlabel = "next"
/timeout = 210000
/screencolor = (216, 216, 216)
</survey>

Help me please :) 

Use a <block> to run the surveypage, not a <suvey>:

<image abcd>
/ items = ("def_norm_puszk.png")
/ position = (15, 3)
</image>

<textbox abc>
/caption = "For the purpose of this task, write down below all the extraoridinary, creative and unusual uses of cans that will come to your head.."
/required = true
/multiline = true
/textboxsize = (50,10)
/position = (25%,55%)
</textbox>

<surveypage abc>
/questions = [1=abcd, abc]
/showpagenumbers = false
/showquestionnumbers = false
/ showbackbutton = false
/ nextbuttonposition = (50%, 80%)
/ finishlabel = "next"
</surveypage>

<block abc_block>
/screencolor = (216, 216, 216)
/ trials = [1-200 = abc]
/timeout = 210000
</block>


By AeS - 4/7/2017

Dave - Friday, April 7, 2017
AeS - Friday, April 7, 2017
Hi!

I have a little problem.
I have a surveypage with textbox, and than another surveypage (the same look, background etc) with another textbox (also looks the same).
I would like to get as many answers I can get, o one question (participant should write some idea in textbox, press "next" and write next idea press "next", and so on). What I don't know is how to erase previous answer, because now, previous answer is on first and the second surveypage (it stays in textbox).

Example:

<image abcd>
/ items = ("def_norm_puszk.png")
/ position = (15, 3)
</image>

<textbox abc>
/caption = "For the purpose of this task, write down below all the extraoridinary, creative and unusual uses of cans that will come to your head.."
/required = true
/multiline = true
/textboxsize = (50,10)
/position = (25%,55%)
</textbox>

<surveypage abc>
/questions = [1=abcd, abc]
/showpagenumbers = false
/showquestionnumbers = false
/ showbackbutton = false
/ nextbuttonposition = (50%, 50%)
</surveypage>

<survey abc>
/ pages = [1-200 =abc]
/nextlabel = "next"
/finishlabel = "next"
/timeout = 210000
/screencolor = (216, 216, 216)
</survey>

Help me please :) 

Use a <block> to run the surveypage, not a <suvey>:

<image abcd>
/ items = ("def_norm_puszk.png")
/ position = (15, 3)
</image>

<textbox abc>
/caption = "For the purpose of this task, write down below all the extraoridinary, creative and unusual uses of cans that will come to your head.."
/required = true
/multiline = true
/textboxsize = (50,10)
/position = (25%,55%)
</textbox>

<surveypage abc>
/questions = [1=abcd, abc]
/showpagenumbers = false
/showquestionnumbers = false
/ showbackbutton = false
/ nextbuttonposition = (50%, 80%)
/ finishlabel = "next"
</surveypage>

<block abc_block>
/screencolor = (216, 216, 216)
/ trials = [1-200 = abc]
/timeout = 210000
</block>



Wow, thank you :D !!!