ActionScript 3.0 :: Variables Canceling Out Each Other?

Sep 15, 2009

Im making an app that ratates images in seperate MCs from seperate arrays. The problem seems to be in the nextImage function, where the currentImage variable doesnt seem to advance, leaving the first image in the array to repeat on the cycle. It works fine when I trigger the function independently, but not when I trigger it twice at the same time. My guess is that maybe the variable is getting rewritten back and for by each instance

Code:
var pic1Container:Sprite = new Sprite;
var pic2Container:Sprite = new Sprite;

[code]....

View 2 Replies


Similar Posts:


IDE :: Canceling Sound Before It Finishes

Mar 20, 2009

I have a character that uses the arrow keys to move. Key_Down sends him 10px left or right per press and when you let go he stops. easy as pie. What I've now added in is that when you press either of those keys it also plays a "walk" sound. In order to stop this walk sound I then added Key_Up and specified that the sound should stop via SndChannel.stop();

At first it was working fine, but there was the issue that if you held down a directional button the sound would spawn multiple times and sound like crap. I added in a boolean to disallow this, making it so that only one instance will play at a time and it will loop. The problem now is, however, that the initial SndChannel.stop(); under the Key_Up listener has stopped working. Instead of stopping the sound immediately on key up, it waits until the sound file has finished and simply stops it from repeating.

View 1 Replies

ActionScript 3.0 :: Canceling The Execution Of A Function

Aug 25, 2009

I am having a problem cancelling the execution of a function. When I click on the first of my navigation buttons, I have a fade in tween and an image loader load an external image. If I click on the second navigation button befiore the function for the 1st button finishes, the 1st tween and image loader continue to finish while the tween and image loader function for the 2nd navigation button starts. Essentially, there is an overlap. Is there a way to tell the 2nd navigation button to stop all other functions before it starts its own function? I suspect it has something to do with stopImmediatePropagation, but I am unsure of how to put this into the function.

View 2 Replies

ActionScript 3.0 :: Canceling EnterFrame From Outside The Function

Jun 28, 2011

I have a function that running on ENTER_FRAME inside another function that is called once on COMPLETE.  I need to stop that ENTER_FRAME later on in the timeline.  Here's the basic code:
 
myLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, startListener);
function startListener(e:Event):void
{
var mySprite = new Sprite();

[Code]....
 
So you see when myLoader is COMPLETE it creates mySprite that is an ENTER_FRAME and continues to run the function playerBarPos.  The function playerBarPos then traces over and over again "this keeps going and going".  How do I later in the timeline stop this?

View 6 Replies

ActionScript 2.0 :: Drag Box's - Code Canceling S#$T OUT

Aug 9, 2004

I have some code that is canceling out my other code. I have code that is controlling two movie clips. Below i have the code separated in two sections, marked my comments. When i add the second sections "//info box", it disables the code above it. I know the code works, because i have it working separatly. Can anyone tell me what the conflict is?

[Code]....

View 5 Replies

ActionScript 2.0 :: GetUrl Is Canceling Out Animations?

Apr 23, 2008

This is AS2. I have a mc that is functioning as a button. On the mc timeline the actions frame contains the code at the bottom, and it everything works fine. Except when I try to add the getUrl statement. Here is the statement
on (release) {getURL("http://mysite.com", "_blank") ; }

here is how I try to add it. When I'm on the main timeline, I click on the mc. then I click on the actions panel then I insert the above code. When I do, Then all the animations etc. in the button is cancelled out, but It does get the url. How do I get both the animations and the geturl to work together. below is the code contained inside the mc.

// When mouse pointer over the button
box_color.onRollOver = function() {
box_color_play = 1;

[Code]....

View 3 Replies

ActionScript 3.0 :: Canceling MouseEvent.ROLL_OUT On CLICK

Jan 13, 2012

I am using an event listener for both rollOut and rollOver to a button, on roll over it populates a text field, roll out clears the field, however I would like on click to populate the field and leave it persistant untill another roll over event happens, curently the roll_out event takes priority and when I move my mouse it clears the field, regardless of click.

what is the best way to cancel the roll_out event?

View 1 Replies

Internet Explorer 8 - Flash Canceling Png Tiling?

Nov 16, 2010

I have a weird issue that only seems to show itself on IE 8 so far. I have a semi transparent png tiling accross some divs on my site. All works ok. However as soon as i put any flash content on any div on the page, doesn't matter where, IE stops tiling the png and stretches it instead. It only occurs with flash and on ie8.

View 1 Replies

Actionscript 3.0 :: Button Instances Canceling Out MouseEvent?

Feb 17, 2009

I'm trying to make a custom menu for my website. Each of three main menu items contains a set of sub menu items that are button instances.I've managed to set it up like I want, where when you hover the mouse overtop the main menu item it animates beautifully, reveling the sub menu items buttons below it. However, once I touch the button instances themselves it seems to cancel out the mouse_event that caused the animation in the first place (rolling over the main menu item), and sends it back to it's first frame - essentially making the buttons within the submenus inaccessible.

View 2 Replies

ActionScript 2.0 :: Two Buttons Keep Canceling Themselves Out If I Place Them On Top Of Eachother?

Aug 26, 2004

at the end of this tutorial it talks about adding links to the buttons created. I did what it said to do but the two buttons keep canceling themselves out if I place them on top of eachother.

View 1 Replies

Actionscript 3 :: ItemRenderer Is Canceling WordWrap Setting On DataGrid?

Nov 15, 2011

Now, I created two codes. The code of (1) is displayed correctly. However, as for the code of (2),doesn't wrap.

<mx:DataGrid id="myGrid" horizontalScrollPolicy="auto" dataProvider="{mounth}" width="100%" height="100%" variableRowHeight="true" wordWrap="true">
<mx:columns>
<mx:DataGridColumn headerText="Header1" wordWrap="true">

[Code]....

I want to display a character according to the width of DataGridColumn of DataGrid.

Is there how to display by variable length? Incidentally (1) is displayed by variable length.

View 1 Replies

ActionScript 3.0 :: MouseOver Event Canceling Due To Child MovieClips

Aug 19, 2010

What I've got is a clip that when moused over expands down, and when moused out contracts back up again...simple right.

The problem I've got is that as soon as I place a child inside the expanding clip (which is another expanding and contracting clip). the listener gets blocked by its child making it contact before it should. This sounds a little confusing, but will make alot more sense when viewing my code here...

Code:
import com.greensock.*;
import com.greensock.easing.*;
var section1:Section1 = new Section1();

[Code]....

By the way I will be putting buttons inside the clips eventually, so disabling the clips contents is a no go.

View 1 Replies

ActionScript 3.0 :: Loading Another Image Without Canceling The Existing Image

Mar 22, 2011

I made 1 image gallery. and i am facing a big issue. When one image is loading in my Loader object. If i click on next image button. It starts loading another image without canceling the existing image. So mutliple images appear at stage in this case. I want something that stops loading older image and start loading new image.

View 4 Replies

ActionScript 2.0 :: Defining Variables - Unique To Load SWFs Instead Of Declaring All The Variables

Mar 21, 2012

I have an empty SWF that's sole purpose is to call loadMovieNum and start the project. Each loaded movie has a few variables defined within them - unique to those loaded SWFs. Instead of declaring all the variables in each SWF can I declare all of them in one place, in the first frame of the empty loader it all starts from? I'm thinking I can then declare a variable which each loaded movie can increment as needed for me.

View 2 Replies

ActionScript 3.0 :: Variables True/false Custom Variables Work In Flash?

Aug 20, 2008

How do variables true/false custom variables work in flash?

For example, what I want to do is create a simple true=false variable that I can call on an if statement later.

For example:

Code:
Var1 = true;
if (!Var1)
{

[Code]....

I noticed that neither the "Var1 = true;" part or the if(!Var1) part worked in flash.

View 4 Replies

ActionScript 3.0 :: Array Of Variables - Make A Bunch Of Variables From A For Loop

Feb 21, 2009

How can I make a bunch of variables from a for loop. for example for (var i=0; i<total; i++) {var bunch(i);}. that i make a bunch of variables named bunch1, bunch2, bunch3. I keep getting errors. I program and use so many different languages that I dont know if that can be done with AS3. my only other alternative i can think of is to create some sort of event dispatcher object array. but I dont know how to get them all to send events to one listener with there index number.

View 5 Replies

Actionscript 3 :: Changes To Array Of String Variables Doesn't Update The Variables Themselves

Jul 30, 2010

I have a list of strings that I add to an array, then attempt to set those values in a for-loop using data that I read in. The array gets updated, but the values the array contains do not. I also have an array of buttons that I update this same way that works great, but strings don't seem to work the same way. I have tried moving the string array to give it full scope, and still nothing...

public class test extends Sprite
{
// Declare a list of strings
protected var title0:String = undefined;

[Code]....

View 1 Replies

ActionScript 3.0 :: Load Data From Different Variables - The New Variables Come Back As Undefined?

Jun 15, 2010

I'm writing code that takes data from mysql that's processed by a PHP script. It's actually a bit bizarre, at least to me. Anyway, here's some basic AS3 code that's moving toward what I want to do:

var loader:URLLoader = new URLLoader();
var urlRequest:URLRequest=new URLRequest("receive.php");
urlRequest.method=URLRequestMethod.GET;[code]....

For some reason, the statement "trace(evt.target.data);" produces a whole pile of garbled text before the actual stuff that it's supposed to show Because of problem #1, I've had to include a throwaway variable at the beginning, otherwise the first variable I try to pass into AS3 comes back as undefined. This causes errors when I run my flash movie in the IDE, but when I run it from the browser it doesn't seem to have any effect.But this is the strangest thing of all whenever I make any changes to the database (and subsequently try to load data from different variables), the new variables come back as undefined. For example, let's say that I add another entry to the database, and decide to load students 2, 3, and 4 instead of 1, 2, and 3. When I do that, any new data I've added comes back as undefined, even though when I view the PHP output in my browser, it looks just fine.

And now for the REALLY bizarre part: I'll copy that output, paste it into my PHP script as an echo statement, comment everything else out, and my flash movie runs fine. Even though the output from the PHP script is exactly the same, it gives me errors.

View 9 Replies

ActionScript 3.0 :: Array Variables, Variables Not Working Correctly?

Jul 11, 2011

There is a bird, and you control its upwards movement with a key. It has thrust, gravity, it works fine. The problem is I have a bunch of icicles that come at the bird that he is supposed to avoid. I tried this first with math random to use as an x coordinate and than move across the screen, but the icicles had the same x-coordinates sometimes. I tried does not equal(!=) but that doesn't work. I made an array and each number that came out of the array I assigned a different variable. This works fine. I put this variable into the x-coordinate such as mc.x=((n)*60)+480. I did this for five different icicles. All their differnt variables have a different value, and I put them into the same function for each individual video clip, but they still don't go to the right coordinate. Here is the test code just for the initial coordinate of each icicle before it moves...////////////////////////////Quote:

var temp:Array = new Array()
for (var i:int=0;i<8;i++) {
temp.push(i);

[code]......

View 1 Replies

ActionScript 3.0 :: Create Several Variables To Aasign Each One Of Those Variables One Number?

Apr 9, 2011

i am trying to do a loop to create several variables to aasign each one of those variables one number.when i write

[Code]...

View 4 Replies

ActionScript 2.0 :: Check Variables In MyPictures.onLoad, The Variables Are Always The Same?

Aug 5, 2004

I have 2 loadVars - myVars, myPictures

basically i have defined their onLoad functions

so in myVars, i call for

Code:
myPictures.load("http://www.fakedevil.com/lurgee/pictures2.php?id="+this._parent.link2.text+"&time=" add getTimer(), "");

pictures2.php is working cos I just check so by rite the variables loaded should change.. but somehow each time I check those variables in myPictures.onLoad, the variables are always the same.

View 5 Replies

ActionScript 3.0 :: Load Variables, Remembering Variables

Nov 19, 2008

I am trying to load variables from a text file, and have them available from then onwards in the movie, globally so to speak.

While I can read the variable values in a loader function which executes when the text file is loaded, I don't seem to be able to keep those variables available afterwards.

View 10 Replies

ActionScript 3.0 :: Regular String Variables Vs XML Variables?

Jun 20, 2009

I'm trying to figure out which is more efficient in terms of memory and speed. What I'm doing is having a series of messages loaded to the screen. Is it just faster to write them in string variable or in an XML document which is more versatile in terms of editing and adding on to the document.

View 1 Replies

ActionScript 2.0 :: Append 3 Variables To A Url That Already Has 2 Variables Appended?

Jun 8, 2006

iam trying to append 3 variables to a url that already has 2 variables appended .. iam using the LoadVars -> "send" method but it wont work. it works if i use a url like "form.aspx" but it wont work if i use "form.aspx?var=nun" which is what i need so i can append 3 more variables to that URL.

View 1 Replies

ActionScript 1/2 :: Inserting Variables Into Other Variables?

Jun 4, 2010

I have several objects that have similar names, like slot1, slot2, slot3, etc. I also have a function that is supposed to do something to the first object, then the next, then the next, etc each time a button is pressed. Is it possible to insert variables into other variables? So say I have a variable called n that is increased each time the button is pressed. The function is then applied to slot"n" each time the button is pressed.

View 5 Replies

ActionScript 3.0 :: Variables Into Javascript Variables

Jun 30, 2009

I am making a simple math quiz game that generates two numbers randomly and then the user has a keypad to enter the answer. I trace not only the real answer to each question but also what the user punches in and I even have it so that it checks to make sure the user's answer is correct.

What I need now is to find a way to export that data into an html page. I think I can do so with php, but I really need it to go into javascript. Does anyone know how I can send this data, either in a string or as integers to Javascript? I believe that the integers would be best.

[Code]....

View 5 Replies

ActionScript 2.0 :: Variables Calling Variables?

Aug 4, 2005

dynamic text box and what is loaded into it. the function for my buttons defines a new variable "newChoice" and sets its value to the "this.varTitle". It then tells the movie clip containing the text box gotoAndPlay (2). At that point the text box should update to the value of "newChoice" but it doesnt work.if i tell it to update something absolute, like a string, it works, but i think there is a problem with the layers of variables i'm using.

main function:
playDots = function () {[code]......

View 6 Replies

ActionScript 3.0 :: Php $_GET Variables - Get The Variables At The End Of The Url

Feb 2, 2010

I want to my flash gallery to get the variables at the end of the url (ex: artGallery.php?page=2) How would I beable to get the 2 into a variable in as3?

View 5 Replies

Variables :: Initialization - "proper" Place To Initialize Class Variables?

Jun 23, 2010

Is it "better" to initialize AS3 class variables in the class constructor? Or can I just initialize them to their default value when I declare them at the top of my class? I ask because when there's a lot of class variables, it appears inefficient to declare them in one place and then initialize them in another when I could easily do both in the same place. It one option is better than the other,

[Code]...

View 2 Replies

ActionScript 2.0 :: Import Some Variables From A Txt File And Treat Them Like Normal Variables In Fla File?

Oct 27, 2009

How can I import some variables from a txt file and treat them like normal variables in fla file? something like in txt file

Code:

&variable1=2&
&variable2=8&

[code]...

View 2 Replies







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