ActionScript 3.0 :: Random Int Without Repeat

Jan 15, 2009

how i should go about making a function that returns a random int w/out repeating? i was thinking:

[Code]...

would this be sufficient? i'm tracing my output and sometimes i don't see anything. is this because it could take a while to iterate through w/out a repetition and that may cause the variable to be undefined during that call of the function?

View 9 Replies


Similar Posts:


Making Random Not Repeat?

Aug 25, 2009

Im wanting to change the variable numSound. At the moment it is a random number 1-5 which works well but I dont want repetition. Tried all sorts of things but no luck.

Code:
private function randRange(min:Number, max:Number):Number
{

[code].....

View 6 Replies

ActionScript 3.0 :: Random Do Something Without Repeat

Mar 22, 2012

I've 3 movieclip on stage which is mc1,mc2,mc3 at first they are alpha=0 What I want is when i click on revealBtn, 1 of them will show up as alpha=1. But with my code below, sometimes I need to click about 5 times or more only can make all those mc show up.

[Code]..

View 1 Replies

ActionScript 2.0 :: Random But Don't Repeat?

Jun 21, 2011

I have this code:my_txt.text=a = myArray[Math.floor(Math.random()*myArray.length)];Is there a way to do so that one element in myArray doesnt show more than once. I have tried different methods some days but canït succeed.

View 8 Replies

ActionScript 2.0 :: Random Swf With No Repeat

Apr 3, 2010

In AS 2.0, I have an array of swfs that I'd like to play randomly end to end. With the following code I can make the swfs random without a repeat of the same swf back to back. What I'd like to do is have all the swfs play randomly until all have been shown. and then repeat again randomly or load a separate final swf.

From what I've read I need to add a splice function to remove values from my array but I can't seem to make it work. Can anyone tell me what I need to add to this to make it work? Here is my code:

[Code]...

View 5 Replies

Play Frames At Random And Not Repeat Any

Mar 17, 2011

I recently came across this script which I believe I have used before. However, I can seem to recall how to use it right as I can't get it to work. It is suppose to play the frames at random and not repeat any. Once that takes place I want it continue that cycle over and over. [code]...

View 4 Replies

Professional :: Go To Random Frame Without Repeat?

Sep 24, 2010

I have the code below on my mc, i would like it to gotoandPlay a random frame instead of a specific frame, as I have it set up now. I would like it not to go to the same frame twice.
 
on (release) {
_root.circle_mc._visible = false;
//Movieclip GotoAndPlay Behavior

[Code].....

View 1 Replies

ActionScript 2.0 :: No Repeat On Random XML Images

Jun 28, 2009

I'm using some nifty code which randomly loads a movie clip with jpegs via an XML file and an image folder. Everything is working great, except, the random function doesn't seem to make it through the entire batch of photos before it repeats images. I did notice their is a method which loads an array but I wasn't sure how to incorporate that.

ActionScript Code:
//: SETUP INITIAL VARIABLES
var oldVar = 0; // keep track of previous random number
var newVar = 0; // used to load the next image
var si = 0; // interval variable
//: GET XML
[Code] .....

View 0 Replies

ActionScript 2.0 :: Repeat Random Numbers?

Jul 23, 2004

Is there any way of preventing repeat numbers in random number generation?ve tried using the pop function and the delete function on elements in an array which are randomly selected, but cant get the effect I want. Ive even tried making two variable values equivalent to each other to try and constrict repetition

View 4 Replies

ActionScript 2.0 :: Random Frames With No Repeat?

Jul 26, 2007

This time I'm trying to access random frames between 1 and 10.

function randRange(min:Number, max:Number):Number {
var randomNum:Number = Math.floor(Math.random() * (max - min + 1)) + min;
return randomNum;

[code].....

View 14 Replies

ActionScript 3.0 :: Random Number Will Not Repeat?

Jun 8, 2009

I have a MovieClip in the library in that movieclip i have a dynamic text field named "numTxt" and i give class name "Ball" from linkage, now i want create 10 movieClip by addChild method. i genrate random number in that text feild. and its workning fine. but some times some numbers are repeating, thats the problum. the numbers should not be repeat.

Code:
var myBall:Ball;
for (var i:Number = 0; i<10; i++) {
myBall = new Ball();

[Code]....

View 8 Replies

ActionScript 2.0 :: Random Load No Repeat?

Sep 2, 2011

i am using this

filename = new Array("1_e.swf",
"2_e.swf", "3_e.swf", "4_e.swf", "5_e.swf", "6_e.swf", "7_e.swf", "8_e.swf",
"9_e.swf", "10_e.swf", "11_e.swf", "12_e.swf", "13_e.swf", "14_e.swf",

[code].....

View 2 Replies

ActionScript 2.0 :: Random Image From XML File With No Repeat?

Jun 22, 2009

I would like a flash header on my Wordpress blog that will load images at random by way of XML list from a folder on my server. I'm undecided as to whether I would like it to just randomize on refresh, or actually be a slideshow of sorts that would go through several images on one page load.Alternately, instead of a list of files in the XML file, I would prefer the flash movie to be able to pull the images without having to specify them by name, so that I could ultimately continue to add images to the folder without affecting the script.Also, if it does work as a slideshow, I would like to ensure that no one image would repeat itself back to back, or possibly before it went through all the rest of the images

View 3 Replies

ActionScript 3.0 :: Make Math.random() Not Repeat Itself?

Jul 20, 2009

I am making a script so I can have a dynamic menu, this menu loads external buttons at random 8 at a time, and unloads and reloads every 25 seconds.[code]...

View 5 Replies

Professional :: Random Frame Choice With No Repeat?

Sep 1, 2010

I am currently working on a flash game and I only have one major problem left!  I have a series of questions that are each their own movie clip in flash.  I have 13 different questions and thus 13 different movie clips, one for each. The issue I am having is thisDuring the course of a game sometimes a question will repeat itself, and I dont want that. I have tried to make the question selection random and without repeat but have only succeeded with the random part at this point.This is my code for for frame 1:

function randFrame(cFrame){
goFrame = random(11)+2;
if (goFrame == cFrame){

[code].....

View 25 Replies

ActionScript 2.0 :: Random Frame Button With No Repeat

Sep 28, 2011

I want to make a MC-container with a Random Button, each click on the button shuffles the frames inside the MC-container. However, the difficult part is to make it shuffle the frames without shuffling the same frame again - until all frames been shuffled, then the procedure kan start again.

View 5 Replies

ActionScript 1/2 :: Repeat Same Tween With Different Random Number For MovieClip

Feb 22, 2011

for (i=0; i<humans; i++) {
ranDistX = Math.floor(Math.random()*(20-(-20+1)))+-20;
ranDistY = Math.floor(Math.random()*(20-(-20+1)))+-20;
var humansMoving = new Tween(_root["human"+i], "_x", Linear, _root["human"+i]._x, _root["human"+i]._x+ranDistX, 2, true);
[Code] ....

The tween works only once. I need it so when the tween is finished, it does the same tween (with a different random number (different position)), however after the first two tweens (x and y) have finished the movieclips just sit there.

View 3 Replies

ActionScript 2.0 :: Make Random Numbers Not Repeat By Other Outputs

Apr 16, 2011

I have two text boxes as outputs: "textDisplay1" & "textDisplay2".When I click the button "test" these outputs display a number between 0 and 1. That is what I want and I am happy with that.[code]The problem I am having is, I do not want the same number in both boxes. If textDisplay1 displays the number 0, I want textDisplay2 to display the number 1. I do not want both boxes to have either a 0 at the same time or a 1 at the same time.[code]But that just makes it randomly guess a number again which sometimes is the same number.Can I make it if textDisplay1 = 1, make 1 unpickable by textDisplay2? Which would only leave the 0.

View 3 Replies

ActionScript 2.0 :: Load Random Script With No Repeat Instances?

Oct 18, 2005

I'm not sure how to go about this since I'm fairly new to ActionScript, but I have this script which displays random image and quote. It works fine as is, but how do I make it not repeat any of the items untill it has gone through all of them?Here is the script I'm using now:

choice = Math.round(Math.random()*19);
switch (choice) {
case 0 :

[code].....

View 8 Replies

ActionScript 2.0 :: Preventing Repeat Numbers In Random Number Generation?

Jul 23, 2004

Is there any way of preventing repeat numbers in random number generation?I have tried using the pop function and the delete function on elements in an array which are randomly selected, but cant get the effect I want. Ihave even tried making two variable values equivalent to each other to try and constrict repetition

View 4 Replies

ActionScript 2.0 :: F8 Create A Button That Plays Random Frames / Not Repeat Frame

Aug 6, 2009

I'm trying to create a button that plays random frames, and not repeat the frame. Like, if Frame 3 was shown, it won't be shown again. I'm kinda new to Action Scripting.

View 1 Replies

ActionScript 3.0 :: Make Random Number Between 1 To 10 Without Repeat Number Twice?

Dec 30, 2008

i want to make random number between 1 to 10 without repeat number twice or more i use this function to make random

function getRandomNumber(min:Number, max:Number):Number
{
var randomNumber:Number = Math.round(Math.random() * (max - min) + min);
return randomNumber;
}
getRandomNumber(1, 10);

View 2 Replies

Make MC Repeat Look Better?

Apr 1, 2010

I don't know much about flash.. I've created a MC with tomatoes falling.. when the MC repeats itself, which I want it to, looks too "rough". I am hoping to make the transition a little smoother.. I've read a little about mathematical random function, but it looks so complicated.Here is the flash: http:[url].....

View 4 Replies

Repeat Only Some Frames Infinitely?

Mar 19, 2010

1. starts with 2 guns crossed centered

2. the shoot at the same time and start dragging towards the edges of the screen like this: <------ (center) ------>

3. fill the centerish area with smoke from the gunfire while the guns are moving away

4. as the smoke clears my name appears in the middle

5. then a few more frames of smoke coming out of the guns (i want this part to repeat, only this part though so theres just infinite smoke coming out)

now i'm still a bit fresh to flash. here's what i have down. i got my gun pics and the tilt up when fired and got them to drag away (motion tween). i also got my name to fade in from a frame in the middle to the end. i still don't know how to make the bang, or smoke (then make the smoke vanish), and then have the last few frames repeat.

View 1 Replies

ActionScript 3.0 :: Toggling Repeat On And Off?

Feb 26, 2010

I got some code to make a  video loop indefinitely with the nsvid4_loop function, but i want it t  be toggleable via a button I am trying to set up a function to do that (vid4loopwitch).. i'm getting stuck though on how exactly to incorporate the one nsvid4loop with its event listener into the function for repeating  it is probably pretty straightforward i'm just still learning my way around AS. check the code to see what i have so far.. i just need to know what i need to add  to the vid4loopswitch function to get it going. it is really hurtin my brain

var nsvid4:NetStream = new NetStream(nc);
nsvid4.client = this;
nsvid4.play("clips/video1.flv");

[code].....

View 4 Replies

Arrays :: Randomly Do Something Without Repeat?

Mar 22, 2012

I've 3 movieclip on stage which is mc1,mc2,mc3at first they are alpha=0What I want is when i click on revealBtn, 1 of them will show up as alpha=1.But with my code below, sometimes I need to click about 5 times or more only can make all those mc show up.Is there any solution for what I wanted? I've try splice but it's still not working well.

var mcArray:Array = [mc1,mc2,mc3];
for (var j:int = 0; j < mcArray.length; j++)
{

[code].....

View 2 Replies

ActionScript 2.0 :: How To Repeat The Tween

Aug 18, 2009

I designed image viewer and the main functionality of the code is written in an external class - AS file. The connection between the fla file and the external class work ok. In the fla file I added some movie clips as buttons and when I press them, the external pictures are loading successfully.

A) When the picture is loaded, I am using a tween , and the picture is moving inside the screen.For this I call inputfade() function from the external as.

B) When I choose another picture to be loaded, I want the current picture to move outside from the screen, and the new loaded picture to move inside (same as explained in A).For the current picture to move outside I used outputfade() function, and for new loaded picture to move inside I am using the same first function inputfade()

Here is the main code:
//moving inside
public function inputfade(){
var easeType = mx.transitions.easing.Bounce.easeOut;

[code]....

I have a problem with the part, when the picture is moving outside from the screen (when outputfade() is finished,) I can not add new coming tween. (- I can not call any new tween function).It seems that any code related to tween (exept yoyo)or other type of mc motion is blocked after after finishing the function outputfade(). I also add with some trace (�test�); after finishing the inputfade function and the trace work. Also interesting this.yoyo() function works as well after finishing outputfade, which is not same case with calling inputfade();

View 0 Replies

ActionScript 2.0 :: Possible To Repeat LoadVars?

Dec 29, 2009

I have managed to develop code that will run a php script by passing a variable (obtained from a combobox control) to the MySQL database. Initially this works fine but if I try to repeat the excercise using a different value nothing happens.[code]...

View 4 Replies

ActionScript 2.0 :: How To Repeat A For Loop

Jun 13, 2005

anyway cutting to the chase, i need some advice and was wondering if someone could spare a mo to briefly explain what i should do here...

Code:
for (i=0; i<7; i++) {
this["bubble"+i]._x = 0;

[code]....

View 2 Replies

ActionScript 2.0 :: XML Repeat With Same Tags?

Mar 30, 2008

I'm trying to create a simple news scroller. The scrollers is no problem, but I'm not good with XML. I am able to display a simple text in an .swf file with some AS code and an XML file. The problem is that I want to be able to display an number of sentences with the same tags. I want to have some AS code that checks if I have more of the same tags and then displays al of the scentences. I don't want to use several dynamic textfields, I just want to use one, cause it's easier and faster to edit the text.

This is the code I use in the .swf:

Code:
function loadXMLTB(loaded) {
if (loaded) {
_root.datum = this.firstChild.childNodes[0].childNodes[0].firstChild.nodeValue;

[Code].....

View 1 Replies







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