Flex :: Hold And Continue FOR - LOOP From The Same Spot?

Sep 6, 2011

I got a for/foreach loop the calls a function inside of it. The prolem is that the function being-called doesnt fininsh it's job before the loop goes over again/ Here is my code:

[Code].....

As you can see i want to add an item (notfriend) in MYFRIENDS unction, "notfriend" is defined inside the loop, but by the time "MYFRIENDS" function finish loading the item already changes to the next item even though i was originally refering to the previous item. Is there a way to maybe hold the FORloop until "myfriends" function finish loading.

I wanted to use Eventlistener on "myfriends" function , but then what do i do to stophold the loop? all i know is BREAK-which destroyes the FOR-LOOP and CONTINUE-which continue the loop from the next iterate.

View 2 Replies


Similar Posts:


ActionScript 2.0 :: While Loop - Doesn't Start From The Right Spot

Mar 4, 2003

can someone open up this .fla and tell my why they think it isnt working.. theres the wierd little chain thing doesnt start from the right spot and i dunno how to fix that

View 3 Replies

ActionScript 2.0 :: While Loop - Open Up .fla - Thing Doesn't Start From The Right Spot

Mar 4, 2003

open up this .fla and tell my why they think it isnt working.. theres the wierd little chain thing doesnt start from the right spot and i dunno how to fix that

View 3 Replies

Flash Loop Error Want To Continue

Dec 7, 2010

I have a flash loop with a function inside (nothing special, just looks through some text files on hard drive). However, some of the files don't satisfy, this is expected and the program throws an error as expected. No surprises there.But! I would like it to move on to the next text file when it finds a bad text file. Instead, it just stops everything.[code]

View 1 Replies

ActionScript 1/2 :: Make The For Loop Continue Only After _root?

Sep 28, 2010

for (i = 0; i < _root.myArray.length; i++)        {                _root.searchAndDestroy();        }
 
how do i make the for loop continue only after _root.searchAndDestroy(); has finished it's task?

View 7 Replies

ActionScript 3.0 :: Loop A Section 5 Times And Then Continue?

Oct 15, 2010

I've been looking at other posts and trying to cobble this together, but am lost.I have a movie I need to play from frames 1-45 five times then continue from frame 50 to frame 70 and stop.on frame one I have the following script (in a layer for actions)

if (numberOfTimesToLoop<3) { gotoAndPlay(1); numberOfTimesToLoop++; } else { gotoAndPlay(50); } [code]....

this doesn't work, and I've tried many variations.

View 8 Replies

ActionScript 3.0 :: Continue Through For Loop When 1st Condition Is Null?

Nov 9, 2011

I'm wrestling with an issue right now and I'm hoping for some help, and more so, I'm hoping I can explain my problem. With the thought of a "fill in the blank/drag and drop/string replacement" interaction, here's how my swf works:
 
I have a various movie clips that can be dropped on various movie clips.When one movie clip is dropped on another, the corresponding __#__ within myTitle.text will be replaced with a string that is related to the movie clip that was just dropped: i.e. myTitle.text becomes 'This is the most annoying [thing]...'Per that example I just mentioned, in the code below, my for loop searches for __1__ and moves the hTarg movie clips accordingly.Once a __1__ is replaced with the associated string I mentioned, the indexOf the __1__ becomes null because it no longer exists in the string, and the following startRect(s) below also become null. 
So, my question is: How do I continue to loop through my for loop if the first index is null? I hope this makes sense, and I'm hoping someone can ituit what I'm trying to do based of my lousy explanation. If more clarification is needed, let me know and I will do my best to further explain.

[Code]...

View 5 Replies

ActionScript 2.0 :: SetInterval - Loop Then Pause / Continue

Jun 2, 2004

I have only been using flash for a few months and have not yet utilized setInterval. I have a loop that I want to run through once and then pause and then continue etc. So I can have each little test.swf pop up one by one rather than all at once

Code:
createEmptyMovieClip("menu", 10);
function createMenus() {
aMenu = new Array();
aMenu = ["test.swf", "test2.swf", "test.swf", "test2.swf"];
for (i=0; i<aMenu.length; i++) {
menu.createEmptyMovieClip("menu"+i, 100+i);
menu["menu"+i]._x = i*100;
menu["menu"+i]._y = 100;
menu["menu"+i].loadMovie(aMenu[i]);
}}

View 3 Replies

ActionScript 3.0 :: Loop Part Of Timeline 5 Times Then Continue?

Oct 15, 2010

I've been looking at other posts and trying to cobble this together, but am lost. I have a movie I need to play from frames 1-45 five times then continue from frame 50 to frame 70 and stop. on frame one I have the following script (in a layer for actions)

if (numberOfTimesToLoop<5) {
gotoAndPlay(1);
numberOfTimesToLoop++;
} else {
gotoAndPlay(50);

[Code]...

View 2 Replies

IDE :: Press And Hold - Symbol Will Be Rotated Continuously When The Button Is On Hold?

Oct 13, 2009

I've got a symbol on stage and a button. The button rotates the symbol CCW half a degree. Code: on(release){ mySymbol._rotation -= 0.5;} I wanna add an on (press and hold) action on button so that the symbol will be rotated continuously when the button is on hold.. I can't make this work for over a week now.

View 7 Replies

ActionScript 2.0 :: Putting A Loop "on Hold" Until User Input?

Aug 3, 2007

i have a loop that moves a game piece every time a dice is tossed using tweens (i loop the movement the amount that comes out on the dice). it all works fine.

the problem is that when mid movement i need to ask a user a quesition with a popup movie with buttons that would determine the movement - i cant pause the loop.

basically i need to know how to put a loop on hold until further user input

if i have a loop that increments a number by one until it hits a predefined amount- i want to pop up a menu that would ask the user if he wants to continue incrementing the number by 1 or by 2. I still want the loop to run a total set amount of times (lets say 100)

View 1 Replies

Flex :: Spot Memory Leaks In Profiler?

Jul 20, 2009

I have an AIR/Flex app I made, I have a few people testing it and everyone is reporting that after leaving it running for a while, it is making all there machines run very slow. It runs fine at first so this must be a memory leak somewhere. I used the profiler on this and the only thing that shows as using a substantial amount of memory is MethodQueueElement which is not a class I wrote, and I have no idea what it does, I am assuming its part of the Flex framework. I am not familiar with using a profiler so I am not sure what all I shuld be looking at, that was the only class that was high on "memory" and it said it had over 100,000 instances. If this is my problem what can I do to fix it?

View 1 Replies

Flex :: Mediator Must Hold View In PureMVC?

Dec 28, 2009

I have one question about pureMvc. I use pureMvc to build an engine, in the engine init part i have an requirement

1) moduleA must init firt
2) moduleB , moduleC need init after moduleA init complate.
3) moduleD need init after moduleB & moduleC init complate.
4) moduleA , moduleB , moduleC , moduleD all extends Proxy beacuse the four system all need to send notifiation ,but no need to listen it.

But to fit for the requirement I can't use command to do it, because they have ini order and also they need to remember current state(ex: moudelB is init Complate but moudleC is not init complete then can't init moudleD) but command is stateless. The best way I think is use one Mediator to do it, beacuse it can both listen and send notification. My question is :

1) Is this a good way to use one Mediator to do it?
2) If use Mediator is good way, then when it hear first moduleA is init complate
registerCommand(FIRST_MODULE_INIT_COMPLATE , initStepTwoCommand);
sendNotification(FIRST_MODULE_INIT_COMPLATE);
removeCommand(FIRST_MODULE_INIT_COMPLATE);
Need to do things like that way or just do the inti logic in the Mediator?

View 1 Replies

Flex :: Getting A Hold Of The Application To Call Its Method?

Sep 12, 2011

In my Flex 4.5 application I have a TitleWindow Settings.mxml, which is popped up by the PopUpManager.Once the user has changed some settings, I not only need to save them to a SharedObject, but also to apply them to the main Application itself - so that the changes are visible to the user immediately.For example I need to call its method hideApp(somevalue);

The spark.components.Application does not seem to have any static/singleton methods to get ahold of it.So how do you do it? how to declare, that an MXML file implements one or several interfaces?

package {
public interface Hiddable {
function hideApp(value:Number):void;[code]....

besides the main Application I have a SettingsTest.mxml Application in my project for"unit testing" that particular functionality.

View 2 Replies

ActionScript 3.0 :: Flex - Wait Until User Respond And Then Continue Process?

Mar 8, 2009

If I have code:

Code:
Alert.show('Please respond');
request.send();

In this code, flex will pop alert to screen and immediately send out the request. How do I wait until user clicks ok on the alert and then send out the request?

View 1 Replies

Flex :: Maximum Number Of Lines A TextArea Control Can Hold?

Dec 8, 2009

I have an app that has text appended to a TextArea (TA). It automatically scrolls to keep the recent line added in view. Over time, this could be a lot. Do I have to worry about this? Is there an upper limit? And, if so, how can I prune the oldest lines of text?

View 1 Replies

Actionscript 3 :: FLEX - Disable Spacebar - Hold Down Spacebar And Drag The Mouse To Pan

Mar 6, 2012

When it starts, I switch tab to nr.2 (default is tab 1). I need to be able to hold down spacebar and drag the mouse to pan, but when I do this it switches back to the first tab. So the spacebar is triggering it to switch. I've tried using a custom lass that extends tabNavigator, like the code below, but it's not working. Also tried setting focusEnabled = false without luck.

[Code]...

View 1 Replies

Certain Spot On A Layer Called 'copy

Jan 4, 2010

I have four buttons that I'd like to press and go to a certain spot on a layer called 'copy'. My code:[code]However, the copy text loops endlessly, even when I press the buttons. I have an actionscript layer, a copy layer, and a background layer. The copy layer has four frames of text. The background layer has four identical frames of background.

View 3 Replies

Flash Jump To Certain Spot Code?

Aug 14, 2010

I need to know how to write some code in flash that will make it jump down to a certain point on the page. Similar to this page.If you click on a state it will take you straight to a section down at the bottom. How exactly would i go about writing this code.

View 1 Replies

Creating Pulsating Spot That Looks Like Red Light

Oct 16, 2011

I want to make a pulsating spot that looks like red light. The pulsating effect is done but the circle with gradient red goes from red center to black. I want it to go from red to nothing/transparent, so that whatever background can be seen through the edge of the "light". Is that possible? I use Flash 8.

View 2 Replies

ActionScript 3.0 :: Add Hot Spot URL Links To An FLV File?

Nov 23, 2008

I'd like to add hot spot URL links to an FLV file, which is being played in a customised swf. I dont want to embed the video into the timeline, so I would like the hotspots on the FLV itself. Does anyone know how to do this. youtube seems to do it just fine. Is it triggered via an event embedded on the FLV, in which case does anyone know the AS code for it?

View 15 Replies

Determine The X/y Coords Of A Spot On The Stage?

Jun 23, 2009

Is there any way for me to move the mouse to a spot on the stage and determine what the x/y coords are? It's really hard writing some action script and just continually guessing what x/y coord i want until i get it close enough.

View 1 Replies

ActionScript 3.0 :: Moving MovieClips From One Spot To Another

Dec 16, 2011

I know how to move movieclips from one spot to another with a click of a button. I want to go further. After a few seconds, that movieclip will move again to another spot. So, with one click, my movieclip will move to one spot, and then after a few seconds will move to another spot.

View 6 Replies

Flash :: Multiple Movieclips All Go To The Same Spot?

Mar 7, 2011

So I'm trying to shoot multiple bullets out of my body and it all works except I have an odd problem of just one bullet showing up and updating to set position for the new ones.
I have a move able player thats supposed to shoot and I test this code by moving the player and shooting. Im taking it step by step in creating this.

The result of tracing the bulletContainer counts correctly in that its telling me that movieclips ARE being added to the stage; I Just know it comes down to some kind of logic that im forgetting. Here's My Code (The Bullet it self is a class)

[Code]...

View 3 Replies

ActionScript 2.0 :: Reapears In Some Random Spot?

Mar 2, 2010

Its for a turtle and it works perfectly.. Except that when it hits my wall, it reapears in some random spot lol. Anyone know how to fix this?PS: this code has other random stuff, but try to find the problem.

Code:
hitSquare._visible = false
var players:Array;

[code]....

View 5 Replies

ActionScript 3.0 :: Hot Spot With Popup Text

Apr 29, 2010

I'm working on a flash movie(?) where I would like to place some hot spots on a image and with mouse over that display an info text. It got to be dynamical since I load location and text from a xml file. But I don't know where to start. Should I use SimpleButton for the hot spot and let the mouseover display a TextField with the info text?

View 0 Replies

ActionScript 2.0 :: Load A Movie Into A Certain Spot?

Apr 18, 2003

how i load a movie into a certain spot (_x,_y)..

View 12 Replies

ActionScript 2.0 :: Put A Specific Moviclip In The Spot?

Jun 14, 2006

How do you make it so that wherever you click, the AS will get that location and put a specific moviclip in the spot? I've tried several things to achieve this, but i am still having problems with this.

View 1 Replies

ActionScript 3.0 :: Closest Instance To A Certain Spot?

Feb 7, 2011

How would I go about finding the closest instance to a certain spot? I was thinking about using the distance formula and looping through all the instances on the stage, but I don't know how to find the shortest distance between all those measured.

View 14 Replies

ActionScript 2.0 :: Get A Picture To Appear In A Spot When Click It?

Dec 18, 2004

how to get a picture to appear in a spot when you click it. (Example: Customizing a picture with flash.) When I say this I mean, I have the stuff I want to customize, I put it all into flash, and now I want to make it so when it's on the net people can customize the given object, by clicking what they want added. No Click and Drag, just clicking.

View 2 Replies







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