ActionScript 2.0 :: Shuffle Questions Rather Than Use Random?
Aug 13, 2004
I have made a quiz which has 20 questions. 15 questions are asked at random. However, being at random some questions are repeated. How do I shuffle questions rather than use random?
I have a string value that is always 8 digits long. I need to shuffle the letters in a random sequence, for example the word actionscript must become something like ptcsacointr. The sequence of shuffling can be anything. Anyone have an idea how i can do this? Oh yes, the shuffle cannot be random. it must be a set sequence that is always used...
Im building an activity whereby I want random math questions to appear and for them to be addition, subtraction, division and multiplication with just two integers where the answer is never more than 50
so far I have
ActionScript Code: genQuestion.addEventListener(MouseEvent.CLICK, onGenerate); function onGenerate(e:Event = null):void
[code]....
which randomly generate addition questions whereby each integer couldn't be more than 25. But this isn't right because I could also have 40 +5 and it still be under 50.
I have just start to learning AS3.I have create a function that creates a random number shuffle.I have another array that holds linkages from the library and I'm using addchild to attach clip from the number generated.when a new number is generated how can i attach that amount of movieclips from the library to stage?[code]
I am fairly new to AS3 so I am having a go at creating my own game of Who Wants to be a Millionaire?, thought a quiz game of sorts may be simplish. Right now, I am having trouble working out how to load shuffled questions. This is the code I have so far[code]...
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.
Hey i am making a quiz which is going to have 20 questions and i have about 40 question in the questions array. make a variable which will hold the 20 random question so
for eg
var arrQuestion:Array = [ 40 questions in here separated by commas] var randQuestions:int = arrQuestion.length-1;
but that just sets randQuestions to the arrQuestion's length now how do i set the variable randQuestion with 20 questions that are randomly picked from arrQuestion.
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?
I shuffle the movie clips and set startDrag for each movie clip, but it is not able to drag, The movie clip only move slightly and return to it location, what is/are the reasons ?
i used the Fader class to build a fade in-out slideshow and wanted to make it shuffle. While the slideshow works fine by its own, i just can�t figure the way to make it switch the images randomly. Here�s the code:
those movie clips to shuffle each other. I have six movie clips, mcA, mcB, mcC, on top and mcD, mcE, mcF at the bottom of the stage.I want them to shuffle as follow:
mcA, mcC, mcB mcC, mcA, mcB mcB, mcC, mcA and so on
I need too create quiz app using xml for database for questions and xul or flax for interface, quiz should have 3 types of questions : single answer (radio), multianswer (checkbox) and open (textfield). I really don't know how to import questions from xml, to xul/flex Also i need to save the answers to txt/xml file The xml database is something like this
I was looking for a way to shuffle a deck of cards last week and I was provided with some code to do so. I decided a straight shuffle would work better with my project than randomizing coordinates (as I was doing). I'm trying to implement the code, and I think I'm pretty close, but I'm running into a few snags. I'm using Shuffle.as as my document class, and another external class called Card.as to control the flipping and drag action of my cards. At the moment, I'm getting this message when I try to run the swf: 1084: Syntax error: expecting leftbrace before Deck. I think this is indicative of an error somewhere else in my code, but I'm not sure where. Do you see anything upon first glance?
I have a 5x5 grid of 25 movieClips in total. I am trying to shuffle them all randomly, but NEVER overlap.hen they have finished shuffling I still want a 5x5 grid of 25 movies, just shuffled around.
After much frustration I have decided to seek the help of the good people of Actionscript.org. I have had the audacity to include my zipped fla - it'll make more sense what is going wrong when you can see it unfold into the chaos that has got me so frustrated.
make a classic 15 piece sliding picture puzzle. I need to shuffle the pieces in order to play the game and to do this have made an array of numbers 0 -14 and shuffled them. I then made a for loop which run 15 times using the pop method to take the last number from the array for each loop and store it in a variable shuffleVal. I have tested this and it works fine producing the 15 randomized numbers seperately, however when I try to use shuffleVal as a parameter for each Tiles boardPosition it only refers to the last value popped rather than each one from the loop. I have provided the code from my controller file .
CODE:-
import Tile; import Jumble; var shuffle:Array=[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14];[code].....
how do you shuffle random numbers?lets say i hav 5 dynamic text boxes.. and i want to shuffle numbers 1 through 5 in each of them on a click of a button... how would i do that??
I got a class extending the array. np there when I instantiate a new object from the class I call it myArray (var myArray:NewArray = new NewArray(); ) now what's the fastest way to fill the new object? All I could find is
I have a project and i have an issue with an idea i have. The index of the website is in html with a simple link to enter the main menu page in flash. But in the main menu i have a movie clip of a man in the center. In fact, i have 3 different images of men that i want to make appear, in a shuffle way, instead of 1. So when people visit the website, the main menu page could present 1 of the 3 pictures i chose in a random way. So a kind of shuffle every time someone log into the main menu page. So do you know what kind of code i could write to make it work ? It could be in the index page (html) or in the flash page itself ?
i've a problem about checking array with if statement.. my code is above and i can't see "it works" text on trace. I want to take the first value of an array after shuffle function, and i want to check it with if statement.
how do you shuffle random numbers?lets say i hav 5 dynamic text boxes.. and i want to shuffle numbers 1 through 5 in each of them on a click of a button..
I'm really new at flash and I'm having some trouble with a textbook assignment. Before I explain my problem here is the code:
Code: stop(); var defValue:Number = 1; stage.addEventListener(Event.ENTER_FRAME, vetIkke); function vetIkke(e:Event [Code] .....
I was doing some assignments in my as3 textbook when I ran into a bit of trouble. I'm trying to make a flash that picks 3 random questions out of a total of 10 and displays them on screen. I made each of the questions movieclips and assigned them all a class (question1 - 10) through Linkage. So the variable "randomQ" is the name of the class of a random question, but how do I get flash to understand that? And how do I spawn that question as a movieclip on stage?
Code: var Question:MovieClip = new randomQ(); I've tried various alterations but can't seem to find the right one. It's possible I've yet to learn the necessary knowledge in order to make this flash.
I'm making a sort of Quiz in Flash with AS3. I know its possible to import the questions + answers with Notepad, XML or even PHP. But I dont know where to start. Can somebody help me out? I allready searched for good tutorials that can help me out but I cant find something usefull.
I'm trying to create a simple quiz that picks questions from an XML file, then checks the answer the user enters against the answers stored in the same XML file. Every time you press blue_btn it should bring up a new question. Right now I'm stuck -- it shows only the last question in the XML file, when I enter the right answer it tells me it's wrong, and when I press blue_btn again nothing happens.
I wanted to randomise my quiz questions and to allow all questions to appear but no similar questions should appear twice. I tried to use arrays to do it but I kept having errors.