ActionScript 3.0 :: Use A Function For Several Times In It?
Jun 25, 2011I want to use a function for several times in a script(for several button)
View 6 RepliesI want to use a function for several times in a script(for several button)
View 6 Repliesi have a function 'a' with array 1x2, 1x3, 1x4...every step its 1x2 > answer1x3 > answer..ans so onif answer correct i call my function 'a' again.
View 2 RepliesI'm talking about the div(X,Y) function in C which returns the number of times X is reduced by Y. if you're confused, I'm talking about this:
div(30,5) returns 6 (30 is reduced 6 times by 5)
div(34,7) returns 4 (you can reduce 30 by 7 four times, leaving 6 behind)
Is there such a function?
I am trying to repeat a function x number of times. How do I go about doing that?
Here is the function:
Code:
function dance(){
var animspeed = .4;
var back = 0;
var delay = (animspeed);
[Code]...
I've loaded text from database and I make links for each title, works good, until I try to add a item counter to have a next and previous button, allowing user to load 12 records.when inserting the next code, my links fire n times, not just once as expected, making browser to unespectly quit.what can be the reason?
some explanation
init is the number I need to increase or decrease to make database query
total is the number of received records by query
total_geral is the number of all records in database, so I can know if I must or not have a next button
t is the name of the mysql table where query should happen
code:
Contadores
function contagem(init:Number, total:Number, total_geral:Number, t:String):void {
var contador;[code]...
how can i make a function example() be repeated 5 times with a delay of 3 seconds in between?
View 8 RepliesIs it possible for me to create a button that must be clicked 4 times within 3 seconds to call a function?
View 3 RepliesI am trying to make a simple mp3 player using flash. The songs are loaded using an XML file which contains the song list. The following code is inserted into a new keyframe.
import flash.media.Sound;
import flash.media.SoundChannel;
import flash.events.*;
import flash.events.MouseEvent;
[code]...
The problem over here is in the nextSong() function. I am unable to preserve the value of currentIndex. Although I am incrementing currentIndex every time the function is called, but the value remains unchanged.
I have a flash piece that I want to loop 3 times and then stop.
View 2 Repliesi'm new to AS3. how do i go about executing a custom function n number of times and then executing another function n number of times repeatedly?
eg.
function firstOne():void { }
function secondOne():void { }
i need firstOne() executed say 3 times and then secondOne() 3 times and then firstOne 3 times again and so on. i'm trying to move a movieclip 3 times to the left and then 3 times to the right continuously.
I have a button labeled 'blueButton' and I'd like to use an anonymous function to handle the click, like so:
blueButton.addEventListener(MouseEvent.CLICK, function(event:MouseEvent):void {
trace( "-----click detected-----" );
// now do other stuff
});
Problem is, the click handler is called multiple times per click. The number of times called seems to be random (sometimes 2, sometimes 4, sometimes 3 etc). could I be missing something in my code, or maybe I set up the button wrong?
also I noticed that it seems to always get called once on the first click. After the first click is when it starts getting called additional times, maybe that has something to do with it?
i want to duplicate a line 4 times, and move each line on Yaxis, with a delay of 1sec each time. I know i must use setinterval+duplicateMovieClip, but i've got pbs :-( actually, i've got my AS code on my line :
[Code]...
I've got a Vector of ViewToActionMap objects, which have following constructor:
public function ViewToActionMap(_forModule:eModule,
_forAction:eViewAction,
_toFunction:Function,
[code].....
How do I get the movie to loop a specify amount of times.I want the movie to loop 3 times only.
View 6 RepliesI have a movie in which three balls bounce up and down 3 times and then bounce high and trade places, then they bounce 3 times and repeat.Instead of bouncing three times I would like to shorten it with a loop.How do I tell the movie to loop from frame 156 back to frame 106 three times, and then go to frame 157 and play?
View 10 RepliesThis is my first Flash animation, and the client is waiting for the final swf file.
View 10 RepliesI'd like to add object img in 4 different containers cont1,cont2... But img was added only in the last cont4 container. How can I add that object in all containers?
var img:Image = ImageBuffer.imageStorage.shift();
var ti:TargetImage = new TargetImage();
for (var i:int = 1; i <= 4; i++)
[Code]....
I'm getting an error after 30 seconds of execution of this service
<s:HTTPService id="svcList" url="http://localhost/index.php" method="GET" result="svcList_resultHandler(event)" fault="svcList_faultHandler(event)" requestTimeout="300">
<s:request xmlns="">
<mod>module</mod>
[Code]...
I need to load 2 data sets from diffrent urls for difrent data grids.
How can I get the data for 2 diffrent sets?
I wanna add the times from a few different cities on to my website. Also, I dont want them in combo boxes. I need them as text.
View 1 RepliesI would like to make a game for christmas. How can i use _parent 2 times? i mean, i have a kinda complicated MovieClip, it's movieclip in movieclip, i think 4, and i want to a script do nextframe to the second parent folder.
Code:
ROOT->Movieclip->2nd Movieclip->3rd Movieclip->4th movieclip.
The 4th movieclip when gets to a keyframe, it activates a script, to do nextFrame() in 2nd movieclip. I tried _parent._parent.nextFrame() and also _parent(2).nextFrame() but they didnt work.
I wanna know how can i jump up 2?
I am trying to duplicate a movieclip unlimited times. Right now it will play when it is rolled over one time and then it will duplicate for the second rollover, but that is it. I need it to keep duplicating every time it is rolled over.
The code:
[code]...
Suppose I have 3 mc's : mc1, mc2 and mc3.trying to do mc1.setMask(mc2) works fine.then if I try to apply another mask on mc1, the last mask will work but the first one already applied will not.[code]Only the last mask will show.I tried to search for documentation on setMask but without any luck.
View 9 RepliesJust wondering how often Flash (as3) will allow me to computeSpectrum? I am currently attempting to computeSpectrum 100 times per second, but I am finding that the data repeats every few times.
View 1 RepliesWhat I would like to have happen is when I click on a button, a movie clip rolls out. When I click on that same button a second time, I want the movie clip to roll back in. Right now it works for me to click on the button once and my movie clip roll out, but when I click on it again, it just rolls out again. Here is what Im working with so far:
import fl.transitions.Tween;
import fl.transitions.easing.*;
var inTween:Tween;
[Code].....
What happens if I have a previously allocated variable (new), then I set such variable to null in order to mark it for GC but then a few seconds later I call new again on it (not knowing if it has been GCed), and the GC still has not cleaned the memory address containing the variable.Would the first (new) allocation be garbage collected
View 5 Repliesi have this movieclip that needs to load many times but only if its called.here is the xml example why it needs to load many times.Url...if a user post a comment it inserts to database via mysql.and then get pulled back via xml.I have upload the fla file to let you see what it does but the main clip needs to load every comment. but it loads one i need to loop it some how.[code]
View 3 RepliesI have to dynamically load an image in 2 separate places, but I don't want to have to load the same image twice (this consumes more bandwidth and makes the user wait longer than needed).Is there a way to, say, copy the contents of a UILoader into the contents of another? I am aware that flash performs caching, but I still see a slight loading delay on subsequent reloads.I am using as3, btw, on flash cs5.
View 1 RepliesI was wondering how you go about changing the looks of static text via the use of actionscript given the time in seconds when the filter is to be applied/adjusted/removed.so things like the filters and font colour
View 4 Repliesimport flash.display.BitmapData;
holder1._visible = false;holder1b._visible = false;one_slct.onRelease = function() {var bmd:BitmapData = new BitmapData(300,200);bmd.draw(_root.gmb_mc);holder1.attachBitmap(bmd,1);};
The size of the original MC is 300 x 200. Using the above code how can I convert it to a bitmap 5 times larger as the original MC? (the original MC is a vector drawing)