I'm making a quiz it is called "The Impossible Test"
well anyways I've made the very first part of it but after you click the right answer i want it to go to the next question but i don't know how to do that so if anyone knows how to please tell me it would be a great help!
Offline
This goes under All About Scratch, probably, but I think I can help here. I myself am relatively new, but I have a basic idea of what you are asking.
I have the uncompleted version of a game called "My Puppy" that I made. Go look at it and download it, the scripts in the quizzes will help you.
See, what I did was make so that a question and four answers pop up. Choose the wrong answer and the answer sprite says "incorrect". Click on the correct answer and it broadcasts something that makes the question change and all the answers hide. New answer sprites with identical scripts as the first answers appear in the same place, but are answers to the new question.
I can post the scripts I used, if you want. You can also download my uncompleted game and take a look at that. Hope I helped, good luck!
Offline
If you're mainly wondering how to make the question change: make the sprite start it with costume1 that has the first question. When the correct answer is clicked, broadcast something to make the question switch to costume2, the second question. It would look like this:
When "Sprite1" clicked
broadcast "something"
That's to make the answer clicked and broadcast anything. You could change Sprite1 to CorrectAnswer and something to question2, or whatever you want. Then, for the question:
When I recieve "something"
switch to "costume2"
Experiment with this and you'll figure it out soon enough!
Offline