Skip to main content
February 10, 2010
Question

Help with an interactive Quiz

  • February 10, 2010
  • 1 reply
  • 604 views

Hi all

For my project i am creating a quiz on the Romans. There are only three questions that the user must answer with three possible answers in frames 3,4 and 5 (one question per frame).

I want to know the code that would help me to allow a Jpeg (an evaluation of the answer given on each frame) to be placed on frame 6 ready for the user to receive feedback for each answer they have given. So when the user selects an answer, the corresponding jpeg to that answer is placed ready on frame 6 for their arrival after they have answered all three questions

Hope this makes sense and i would be very grateful for any advice.

cheers Hezy87

This topic has been closed for replies.

1 reply

Ned Murphy
Legend
February 10, 2010

You cannot control content in a frame unless you are there.  But one approach could be to have whatever frame 6 will be as a movieclip that is kept invisible from frames 1 thru 5, wherein you can add whatever image however you plan to do that in those frames, and when you get to frame 6 you set that movieclip to be visible.

Another approach would be to have variables that you store the answer information into and make use of in frame 6 to decide which image(s) to display.

There are probably several ways to approach it, but the bottom line is, unless you're in frame 6, you cannot add new content into it.

February 10, 2010

thanks Ned

i will firstly try setting the movie clip to be visible = False once the application opens and experiment this way first

Ned Murphy
Legend
February 10, 2010

You're welcome