Group: Forum Members
Posts: 12,
Visits: 54
|
In my experiment, I would like to start the participant off with 100 coins. Throughout the experiment, the participant encounters 'betting' trials where they are able to bet a certain number of their coins. I used radiobuttons to record the participants' bet.
Is it possible to keep track of the number of coins that were bet, and then inform the participant of how many coins they have left when they encounter the next betting page (100 minus the number of coins they have bet thus far)?
Below is my code for the betting radiobuttons and the betting surveypage:
<radiobuttons bet_radiobuttons> / options = ("1 Coin", "2 Coins", "3 Coins","4 Coins", "5 Coins", "6 Coins", "7 Coins", "8 Coins", "9 Coins", "10 Coins") / optionvalues = ("1", "2", "3", "4", "5", "6", "7", "8", "9", "10") / required = true </radiobuttons>
<surveypage bet> / questions = [1=bet_radiobuttons] / showpagenumbers = false / showquestionnumbers = false / stimulustimes = [1=how_many] / recorddata = true </surveypage>
|