I am making a game where i needed to be able to have the users score from form 4 to move to form 5 etc. Thanks to you guys I was able to accomplish this. However, the problem is that even though I was able to get the score to move from form4 to form5 when I insert the code for if the user clicks the right or wrong image to and ten points or subtract points when you click the image the users score that came from form4 to form5 goes back to zero. So I was wondering if anyone knows a code that I can use so that the users score from form4 once it goes to form5 and the user clicks on the right or wrong image they will lose ten points or have ten points added to their current score that was brought from form 4. Example: The user's score was 110 in form4 if the user clicks the right image in form5 I want ten points to added to their score of 110. If they click the wrong image I want their score to lose ten points.
Here is the code i used to get the score to go to form5 :
form5.label1.caption= form4.label1.caption
here is the code for if the users clicks the correct image:
image1.tag="clicked"
score=score+10
label1.caption= score
And here is the score I used if they click the wrong image
image2.tag="clicked"
score=score-10
label1.caption= score
So can someone please help me get the users score from form4 to be added onto in form5 or subtracted from if they click the right or wrong image.