Firstly, thanks for an excellent development language - for someone with no prior coding experience, LiveCode has been quite forgiving!
I am trying to develop an "image ratings" app which has the following sequence of cards
Card 1 (Instructions) --> Cards 2-20 (Images rated with a slider) --> Card 21 (Conclusion)
There are two points here that I would greatly appreciate any help that you can provide
1. In Card 1, there will be a button that goes to next card. When pressed, I would like Cards 2-20 to be shuffled so that the sequence which the rater will have to undergo will be randomized (e.g., Card 2, 7, 4, 9.... or Card 5, 19, 4....). This will continue until all 19 cards have been responded to, and then the stack will progress to Card 21 (conclusion)
2. For each Card in Cards 2-20, providing the rating puts a value into a container once a button has been pressed ('tValues'). The code for the button looks like this...
Code: Select all
global tValues
on mouseUp
put "S" & the number of this card & tab & fld "ValenceValue" & tab & fld "ArousalValue"\
& tab & short date after fld "tValueField"
put return & fld "tValueField" after tValues
put empty into fld "tValueField"
end mouseUp
I've been unable to find both these topics addressed within the LiveCode forums. I hope you will be able to help.
Thanks in advance!