my code looks like
Code: Select all
on pickQuestion
put 1 into currentQues
put line currentQues of fld "questions" into qLine
put item 1 of qLine into fld "Field"
repeat with i = 2 to 5
put "Answer" & i - 1 into fieldName
set label of btn "Answer1" to item i of qLine
set label of btn "Answer2" to item 2 of qLine
set label of btn "Answer3" to item 3 of qLine
set label of btn "Answer4" to item 4 of qLine
end repeat
end pickQuestion
i was trying to add score label with
on mouseUp
go to next card
add 10 to the field "Score"
end mouseUp
but it doesnt show same score after few cards even this
put number of fld "score" of card "card2" into fld "score" of card "card3"
doesnt working
thanks