ActionScript 2.0 :: Make New Array From Previous Answers?

Sep 22, 2007

I have sections with questions and answers which I can get. But, I need to save each section into new array and tally all the final scores.The screen will show the section score of current section that was just completed and the final score.I know the code has lots of problems - attached.For the total scores the dynamic text boxes var's are totalnumcorrect, totalnumIncorrect, totaluserScore.For the section score the dynamic text boxes var's are numcorrect, totalnumIncorrect, totaluserScore.

View 1 Replies


Similar Posts:


ActionScript 2.0 :: Magic 8-ball - Answers Array To Store All The Answers And Then Call Them At Random Into The "answers" Field?

May 24, 2004

I've got an input field called "question" where you can type whatever you want, an ASK button called "ask" and a response field called "answer". Once you enter a question and hit the ASK button I want flash to randomly reply in the "answer" field with YES, NO, MAYBE, DEFINATELY etc.

Do I need some kind of answers array to store all the answers and then call them at random into the "answers" field? Am I on the right track?

View 7 Replies

ActionScript 2.0 :: XML Quiz Array Answers With Different Values?

May 20, 2009

I have this project where I have a quiz template that I am using(as2) and I have everything exactly the way I want it except.that I need for the individual questions to hold a different value from one another.

for example

Question 1 = 10 points
Question 2 = 20 points

so on and so forth

right now I have it so they are an equal percentage of the total (ie 10 questions all are worth 10 points)and I need to change thatunfortunately I am still teaching myself AS but even more unfortunate for me is that I am learning AS3 and this template is AS2 I also have not done much in this vein I have been concentrating more on UI kind of stuff and less on the math side also it makes no difference to me if this is done in AS or XML this file will not be continually updated so it can be a one time deal

View 5 Replies

ActionScript 3.0 :: XML Quiz With Correct Answers - Arranging Within Array

May 18, 2009

I need to put together a really simple flash Quiz for this project I am working on
and I am having a hell of a time figuring out a few key aspects.

1. When working with an array and an xml file, how can I assign the "correct" answer if a user selected the wrong option. Ideally I would love it to say for example " sorry, Egyptians was the correct answer" but would settle for " sorry, 3 was the correct answer" if that is easier to arrange within an array.

2. How can I make it so it marks your first answer and only your first answer (as opposed to how it is now where if you guessed wrong you can keep on guessing until it is right and it will notice the right answer and ignore the wrong)?
Files attached here [URL]

View 7 Replies

ActionScript 2.0 :: Make Selected Answers Remain?

Sep 6, 2009

I have a flash quiz that I created. The file is an external swf loaded on top of another flash swf. The quiz is all radial buttons and drop down menus. Once the user choose which answer they feel is correct they click submit. Before they click submit they have an option to close the window. What i want to happen is if they close that window and return I want those selected answers to remain or even if they submitted before; i would like for those answers to remain.

View 5 Replies

ActionScript 2.0 :: Make The Correct Answers Appear After 5 Seconds?

Sep 19, 2005

I'm making 8 input boxes with 8 different answers. Users can key in their answers in the input boxes. The order of the 8 answers will not affect their results. However when users get the wrong answers, the wrong answers will be deleted. My question here is, when the wrong answers are deleted automatically, how do i make the correct answers to appear by themselves after 5 seconds? Below is my code that i put on a "check answer" button.

on(release)
{
answers = new Array(8);
answers[0] = "professional selling";[code].....

View 4 Replies

ActionScript 1/2 :: Create A Questionnaire And Store The User Answers In An Array Or A Database?

Apr 9, 2012

My project is creating a questionnaire in Flash and then storing the user answers in an array or a database for later analysis. although i was excellent in coding when i was in college, recently i forgot many parts

View 1 Replies

ActionScript 3.0 :: Make 20 Questions And The All Of The Answers Appear In A Random Order?

Jun 8, 2009

i have a quiz with 20 questions and all of its answers in 2 different arrays. I want to know how i can make those 20 questions and the all of the answers appear in a random order when anyone takes the quiz.

View 6 Replies

ActionScript 2.0 :: Make A Variable Have Multiple Answers Attached To It?

Sep 13, 2004

How do you make a variable have multiple answers attached to it?

example:

workPages = page2_mc, page5_mc, page6_mc, page7_mc

I tried this but it only used page2_mc and an array didn't work.

View 3 Replies

Professional :: Make Drag And Drop Work On A Check Answers Button?

Feb 20, 2012

I ve got a drag and drop code working, but what I really want to do is have a check answers button that tells the user, you have none correct, or two correct or all wrong... I have one target area, and 3 correct answers (out of 7) so I would like to let the user put as many ansers on the target as they want and then check if they have any correct, also a reset code would be nice to put everything back where it started... I tried to break my code up but the events then went mad, Here is what i have so far, it works instantly and lets crrect answers stay and incorrect bounce back..
 
stop();
yes1.visible=false;
allcorrect.visible=false;
doit.text="drag over the words that mean Vision";

[Code].....

View 1 Replies

ActionScript 2.0 :: Removing Correct Answers From Array In Of Random Quiz Questions In Xml Quiz?

Jul 21, 2010

Anyone know where to start thinking about logic for an XML quiz with multiple correct answers, that when the user gets the question right, that question is removed from the random array of questions so we never need to answer it again?

View 0 Replies

ActionScript 2.0 :: Add Previous Value With Current One In Array?

Mar 4, 2010

I have an array of numbers and I want to add the numbers and return an array of addition value[code]...

View 9 Replies

ActionScript 2.0 :: Get The Previous Array Item?

May 14, 2006

I'm loading data into a movie clip via XML and an array system that duplicates a single movie clip any number of times, as defined by the XML file. The code is working, but what I would like to do now is be able to get the previous number from the array.Here's the script I'm using:

Code:
stop();
var newsXML:XML = new XML();

[code]......

View 1 Replies

ActionScript 3.0 :: Previous And Forward Array Button?

Jan 19, 2010

Objective is to create a previous button in flash that remembers where the user has been. When the button is click it goes to that previous screen just like an internet web browser.I found a code that actually works for actionscript 2.0 unfortunately when i translate this to actionscript 3.0,it gave me some errors that i cannot resolve or understand.it says: access of undefine property recentFrame, previousFrame and navStack.below is the method for actionscript 2.0.Here's a method for creating buttons that use an array to simulate a navigation through a history array, without using frame labels, of html codes.

Code for" Back" button:

on (press) {
_root.fwdStack.push(_root._currentFrame);
if (_root.navStack.length>1) {[code]...

View 2 Replies

ActionScript 2.0 :: Accessing Next/previous Items In Array?

May 27, 2005

This is probably something very simple, but I'm not too sure of the code used to access items within an array.Suppose I have an array like this (using Kirupa's Arrays example):

grocery = ["bananas", "oranges", "apples", "kiwis"];
trace(grocery);

And we've loaded up the corresponding variables/text for "bananas", thus the current item = bananas.Therefore the next item would be "oranges". How can I tell Flash that I want to access this next item?? (I'd like to be able to access it through a variable so that the same action can be applied when the item is "oranges" to move to the next item, which would now be "apples").

View 3 Replies

ActionScript 2.0 :: Adding Previous Value With Current One In Array?

Mar 4, 2010

I have an array of numbers and I want to add the numbers and return an array of addition value My Array looks like

Code:
var optionYPos:Array=new Array(0,10,20,40);

I want the result as 0,10,30,70

Just adding the previous value with the current one.

View 2 Replies

ActionScript 3.0 :: Target Next & Previous Items In Array?

Nov 11, 2011

Is there any way I can target the next and previous items in an array? For example, if I wanted to make a gallery where there's one main image and next/prev buttons to switch between the images in the array.

View 3 Replies

ActionScript 3.0 :: Flash Moving To The Previous Or Next Image In An Array?

Oct 18, 2010

hows things, this is my first post on kirupa. Which i have found to be a great source of information regarding AS3 flash and so much more.
I've set up an array which contains images fro a folder. when you click the thumbnail a larger version of the image with the name appears. I want to be able to click the previous or next button and move through the array eg;

var imgArray:Array = new Array (img1, img2, img3, img4)

if img3 is displayed and you press the previous button it loads img2 same with the next button

View 2 Replies

ActionScript 3.0 :: Adding Previous Numeric Values In Array During For Loop?

May 23, 2009

While a for loop runs through all the elements in an array I want to get the width of each element and add it to the sum of the width of all previous elements.

View 2 Replies

ActionScript 3.0 :: Flash - Replacing Array And Removing Previous Children?

Mar 14, 2011

I have this code that takes the string values out of an XML file:

Code:
publicfunction loadXML(xml:Event):void
{

[code].....

View 1 Replies

ActionScript 2.0 :: Make A Next And Previous Button?

Sep 21, 2009

I've been digging around looking for a tutorial on how to do a next and previous button in ActionScript 2. What I've found is quite elaborate, but all I really need is a next and previous button without all the unnecessary animation.

My project has a menu. When you click on it, the content movieclip with the external image and text objects appears, along with the next and previous button.

I'm wondering how to make it so that when you click on a menu button, like for example, menuObject_3, it goes to menuObject_4 when you click on next, or menuObject_2 when you click previous?

View 12 Replies

Make Next And Previous Button Function?

Jun 17, 2009

how to achieve next and previous button function such as the one at [URL]

View 5 Replies

ActionScript 2.0 :: How To Make Previous Button

Sep 26, 2009

Image gallery project is moving along.I've created a "previous" button but can't get the code to work.

View 9 Replies

ActionScript 3.0 :: Make A Next And Previous Button?

May 5, 2011

I am using an xml file containing text and an two image (a thumb and a large image). I have the whole thing working (the asl file, my document class and my xml file). I am now trying to make a next and previous button which, when clicked, will navigate to the next or previous nodes in my xml file. I have a next button with an instance name of nextBtn and a function for that button named onNextBtn (its at the very bottom). How can i write the code so that on a mousedown or click the next node (the info and large image) is loaded?

View 2 Replies

ActionScript 3.0 :: Navigate With Previous And Next Buttons To Frame Labels Stored In An Array?

Mar 8, 2011

I have a long timeline with a series of slides arranged along it with a labeled frame at the beginning of each slide.These slides do not have any standardized length so instead of counting out frames and jumping a set number I am trying to navigate with my previous and next buttons to frame labels stored in an array.

This works GREAT!Or rather...it works great if you're rapidly hitting the Next and Previous buttons to step through the area.The problem comes when you sit and try to watch the whole thing play out and then try to use the next button.If you have passed framelabel2 and hit the next button it returns you to framelabel2.If you have passed framelabel3 and hit the next button it returns you to framelabel2. Clearly the problem is that it does not know it has gone past framelabel1 and is thus gotoandplay-ing the next frame in the array...which is 2.I need to make it check its current position in the array before adding 1 and advancing the playhead.

var fLabels:Array = new Array("start1", "start2", "start3", "start4", "start5", "start6", "start7");
var cLabel:Number = 1;
function nextPlayClick(evt:MouseEvent):void {[code].....

View 1 Replies

ActionScript 2.0 :: Make OnRelease Only Possible If Previous Image Is Displayed?

Jan 21, 2010

I have a gallery where if a thumbnail is selected it preloads, then fades out the current image and fades in the next.

If the user selects a thumbnail then selects a different thumbnail before the previous image has fully loaded (and faded to alpha=100) it is problematic. How could I code this so that a thumbnail could only be selected if there is an image displayed on screen?

My files are here [URL]

I also need to do exactly the same thing with the main menu buttons. I've attached the .fla + dummy .swfs

View 1 Replies

ActionScript 2.0 :: Previous And Next Buttoms In Gallery - How To Make Them Disappear?

Feb 16, 2009

I have the following website: http:[url]....A portfolio website based on a flash file which communicates with a xml file... code mixed togeather from some tutorials.The problem, is with the "previous" and "next" buttons: I dont know how to make them disappear when there isnt another image link in the xml file.

Action script:

Code:
function loadXML(loaded) {
if (loaded) {[code]...........

View 4 Replies

ActionScript 3.0 :: Make A Slide Show With A Next And Previous Button

Mar 27, 2010

Im trying to make a slide show with a next and previous button. I have name these two buttons next_button and previous_button I 've tried the code ;

[Code]...

View 5 Replies

ActionScript 3.0 :: Make A Button That When Held Will Go To The Previous Frame, Pause For 0.042?

Dec 13, 2010

i'm trying to make a button that when held will go to the previous frame, pause for 0.042 (24fps)seconds and then loop again until the mouse is releasedso something like thisI think know the first bit of code from much forum trawling, but have been unable to find anything further.I am an almost complete newb to programming, having online done a tiny amount of vb several years ago,just wonderingtranslate this following script into as3, and also point out if it won't work.

stop();
Rewind.addEventListener(MouseEvent.MOUSE_DOWN, RewindEvent);
function RewindEvent(event:MouseEvent):void

[code]......

View 1 Replies

ActionScript 2.0 :: Make LoadMovie Work From Both Button And Next / Previous Command?

Feb 13, 2006

I have a photographer's portfolio site in the works. I'm using loadMovie connected to thumbail buttons of each photo to show a larger version of the photo. Here is the script[code]...

Now the photographer would also like to have a next/previous arrow buttons so the user can click through like a slide show. Is there a way to have Flash know what movie is currently loaded and based on that information go to the next or previous?

View 1 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved