A Flash Developer Resource Site

Results 1 to 7 of 7

Thread: Flash Quiz Template, adding if 90% then go to

  1. #1
    Member
    Join Date
    Apr 2008
    Posts
    65

    Flash Quiz Template, adding if 90% then go to

    Hi all, I am using the Flash Quiz template. Is there a way to add something like:

    If the user scores 90% or above go to frame 9.
    If the user scores less than 90% go to frame 10.

    I imagine I would be writing some sort of If statement. Im just not sure what to write or where to put it.


    I appreciate any help you can offer.
    thanks

  2. #2
    Junior Member
    Join Date
    Jan 2009
    Location
    Chicago
    Posts
    12
    PHP Code:
    if(numCorrect/numTotal >= .9){
    gotoAndStop(9);
    } else {
    gotoAndStop(10);

    Check out some of my work.

    www.thadthomas.com

  3. #3
    Member
    Join Date
    Apr 2008
    Posts
    65
    thank you for your reply. Would you mind taking a look at the Flash Quiz Template and help determin where to insert this code?
    thanks!

  4. #4
    Junior Member
    Join Date
    Jan 2009
    Location
    Chicago
    Posts
    12
    Sorry, I'm not sure where to find it. Post a link.
    Check out some of my work.

    www.thadthomas.com

  5. #5
    Member
    Join Date
    Apr 2008
    Posts
    65
    sent file via PM

    thanks
    Last edited by scadbrad; 01-12-2009 at 10:48 PM.

  6. #6
    Member
    Join Date
    Apr 2008
    Posts
    65
    Just giving this a bump. Any ideas anyone? I’m just using the standard Quiz template that can be accessed from File>New>Templates>Quiz>Quiz_style2. I imagine that the code Ink2626 provided is sufficient, I just don’t know where to put it. There are several pages of ActionScript in the template.

    thanks!

  7. #7
    OMFEG! NUBKAKE!
    Join Date
    Oct 2008
    Posts
    14
    insert a blank frame before the score frames and put the code there. Make it so that once the last question is clicked it goes to that frame, it should work

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center