ActionScript 3.0 :: Updating A Variable Which Is Held In An Array
May 23, 2011
I'm using the following parallax class, which I downloaded from fuoridalcerchio.net, but it's no longer available:[code]I created a mc container named parallaxContainer, which holds the parallax items, and defined it's class as ParallaxBox. Then, to initialize the class, I used (as per the instructions that once were posted on the site I mentioned):[code]
Right now I have just added one item for testing purposes (bg) and it works perfectly as long as I don't resize the browser window. I'm no programmer, but as far as I can tell, the class adds items to the array "theObjects" using the function addParallaxItem. The first value is the instance name of the object to add, the second is the horizontal range in pixels which the object is allowed to pan (set to 960 since my stage is 960px wide) and the third is the vertical range(which is set to 0). I can't post the link since my post count is less than 50, but the thing is if the browser window is larger than 960px, the "bg" movieclip shouldn't travel 960px to either side to reach the edge. I'm not very good at math, so I don't know how to calculate the new distance it should travel, which should be less. If someone wants to help, I can PM the link so that you can see what I mean.[code]Obviously, even though the value of the variable is updated, it's not passed to the array.
View 0 Replies
Similar Posts:
Oct 28, 2009
I have the movieclip playing inside a variable but I can't figure out how to declare "play();" and apply it to the variable.the variable is called "player" and it contains any one of 3 movieclips.
View 3 Replies
Feb 21, 2011
I want to resize an image which i have held within an array so that they can be used for thumbnails.
images show in full size i want them resized as i am using the same image for both the main image and the thumbnails to help keep the file size down. Below is the code its all working great now apart from the resizing which i have tried doing all sorts and i cant figure it out.
function loadImage(filePath:String):void
{
//for loop to load thumbnails
for(var thumbnum:int=0; thumbnum<6; thumbnum++)
[Code].....
View 2 Replies
Jun 9, 2011
I'm trying to create the very basics of a isometric map. My engine creates to map fine, but it's when I want to then control the movie clips.I'm adding each cell in the grid using and array:
Code:
for (var X= 0; X < Engine.Var.GridWidth; X ++)
{
[code].....
View 3 Replies
Dec 7, 2011
What happens when an object which has a function currently being executed has all its references removed?I want to have a dialog box type object held in an array by the main class for my program, and when the dialog needs to be closed, I want it to be removed from the array during that close-screen function. My question is, assuming the dialog box object is in all other ways eligible for garbage collection, what happens to the code it's supposed to be executing?
Edit for clarification:The array is a layer of visual elements in my program, of which the dialog box is one. The idea is that the "OK" button (or whatever) that closes the box will also remove it from the array of objects being displayed at the same time.
View 2 Replies
May 24, 2011
I have a function running in the very top layer of my scene that will change the value of the variable currentAnchor to 1 or 2. the code below is running in a movieclip but the value is staying as 1 when i trace it in the movieclip, but changing between 1 and 2 in the very top layer of the scene.[code]
View 0 Replies
Jul 20, 2010
Having trouble changing a variable for an object path:Set-up initial path:
Code:
displaySlide="slide1";
Change the path/variable through user action:
[code].....
View 2 Replies
Feb 15, 2011
so I've been working on this project that uses about 10-15 frames of AS3. On each frame the 'total' variable is updated (added to). By the end, the user is supposed to be taken to another frame (1 of 2) based on the value of 'total'. I have used the trace() method and up to that point the 'total' variable appears to be updating properly, but then when I get to this page it ALWAYS directs them to frame 18 no matter what their total is. Is there an error in my code? (I assume so lol..)
Code:
stop();
fwdBtn.addEventListener(MouseEvent.CLICK, onClick15);
[code].....
View 4 Replies
Aug 10, 2011
I am trying to work with a global variable in Flex and it does not appear to be working correctly. In my default mxml file I declare the following
public var appID:int;
This variable keeps track of the session ID across my application for SQL purposes. On another mxml page I call the following code which should update the global variable to the current ID.
// Get the ID
sqlStatement.text =
"SELECT Max(id)FROM applications";
sqlStatement.execute();
var result:SQLResult;
result = sqlStatement.getResult();
FlexGlobals.topLevelApplication.appID = result.data[0];
Lastly I run a SQL Update query using the ID as a parameter. My problem is that the FlexGlobals.topLevelApplication.appID is always 0, for some reason the global variable never gets updated, I have checked to ensure that result.data[0] is correct but the value never gets passed to the global variable.
View 2 Replies
Feb 28, 2009
I am a little new to actionscript and I have run into a wall that I can't break down. Basically, I am using the _visible. command to turn on and off some overlapping movie objects (it's a complex actionscript button). The actionscript works just fine click on a button and it turns red click on another button and the first button turns black while the latter now turns red. The problem is that something in my actionscript is causing the following to occur. I click the first button and it goes red. I click the second button and it goes read. The first button stays red until I rollover my mouse on the button (I don't have any rollover functions) and all of a sudden it seems to refresh and go back to black as it should have done automatically..
/*
var frameStop:String = null; // stop current external swf movie from playing
var xy:Number = null; //level number of the movie clip to be stopped
[code].....
View 1 Replies
Jul 24, 2009
I have an inputbox and a submit button and prev and next button in my screen. Whenever users enter a text in the input box and clicks on the button, the text value is stored in an array. Then users click on the next button and again enters new value in the inputbox and click the submit button. The new value is added in the array.Now suppose if users want to make correction to the values that they have entered for previously entered values, they can click on the previous button and make correction and click on the submit button. For this I think, we have to remove an array value and add a new value to it. I am confused on how to remove and add a new value to that particular place.
View 1 Replies
Jan 12, 2009
I have a function that is suppose to update a variable which updates a textfield and it is not working.
[Code]...
View 0 Replies
Sep 6, 2011
goal: Have a text box called "myText" update with the name of an instance that is clicked.Right now I have an instance of myText dynamically on the stage as an added childI also have seven instances of a building that all have individual instance names, bldg1,bldg2, bldg3, etc.I have created a variable called buildings: I also have a for each that makes the bldgNames the same as the buildings array.The problem arises when I want to click on the building and have the myText update with the actual building name (as described in my "trace"my code below.I would like, for example, when I click on the box that is entitled "Building 3" for the myText to read "bldg3".the whole code is:
Code:
var myFont = new CenturyGothic();
var myFormat:TextFormat = new TextFormat();
[code].....
View 6 Replies
Jul 27, 2009
This should be really simple, but for some reason Flash just isn't operating as I expected.I'm trying to make a keypad for a game, whereby the player must type in the correct number sequence to progress. The player will click the number buttons with the mouse and the numbers will be put into an array, which will then be checked with a confirm button.I have set up the array as follows on the main timeline (it needs to be empty until user presses a number button):
ActionScript Code:
keypadnumbers = [];
Each number button then contains a variant of the following code (numbers differ):
[code]......
View 6 Replies
Sep 4, 2010
I did this to dynamcy create a instance of a MovieClip whenever my downKey boolean variable was true
PHP Code:
[code]...
works fine, but now I would like to update the position of the MovieClips every frame, I understand that it should be in my enter frame function but I dont understand how to access the MovieClips.
View 3 Replies
Aug 16, 2011
I think it would be simplest to explain it like this:
[Code]...
View 1 Replies
Oct 12, 2006
I'm going to post the full code of the two functions, disregard the "fluff" unrelated to the two functions as it is all working flawless, I've tested this HEAVILY and cannot understand why it keeps setting the entire array to undefined!
Code:
// processReplace Function
function processReplace(transferFiles) {
var processArray:Array = transferFiles.slice();
[Code]....
Basically it's supposed to check to see if the file exists and return as true if it does and add it to a replace array, then the replace array is processed into a single string and put into a dialog box through the flash wrapper prompting them to "replace the files or not".
It makes the replace array just fine, it actually even has the right "count" in it but it's setting all the "filenames" to undefined because of the exists = processSearch function.
I even tried to make a new array and run the search just from that one and set the values from the old one and it's still failing.
Is it because of the "break" or can anyone figure it out? Iknow it's hard because you can't use the code
View 1 Replies
Aug 25, 2008
I want to change the value of a variable listed in an array using the array. for example:
Code:
var theVariable:Number = 15;
var theArray:Array = [theVariable];
now if I try this
Code:
theArray[0] = 20;
I just get an array with 1 value of 20 in it and it no longer references theVariable what i want to do is change the value of theVariable with out removing it from the array but referencing it from the array in a loop or something.
View 5 Replies
Sep 25, 2009
I want to loop through an array and use the array value to reference a variable.
The Setup:
(For illustration only. Not actual script)
My MCs:
triangle_mc
square_mc
[Code]....
View 1 Replies
Jun 12, 2011
im currently making a game, and the game has some powerups, that when picked are stored. the problem is that, if i have, say, 3 shields, e press the matching button and the 3 shields are used instead of one. i found out its because i was checking the button pressing every frame, so i created a flag that checks if a button is corrently being pressed. here's the code
[Code]....
View 2 Replies
Feb 19, 2011
1) add a SimpleButton to the stage and view the SWF2) then press and hold the mouse button down OUTSIDE of the button's boundaries3) then drag the cursor over the SimpleButton while still holding down the mouse button......Then the SimpleButton on the stage does not detect the mouseover and display its 'over' state. It just stays in its idle state. Why is this? And is there a way to enable the SimpleButton to display its over state while the mouse button is being held down and then the cursor brought on top of the button (as described above)?That's the abstract, and if you are at all curious (this won't elaborate on the question, but maybe help you visualize a practical scenario) what's motivating the question, it is an application I'm building. In this app, the user is able to drag video thumbnails in order to rearrange their order.
View 3 Replies
May 4, 2005
[code]for the part that says "if(???)" i am trying to get it so if the user presses key+wp(key65) it does an event. how do i do it without having to put it inside onClipEvent
View 3 Replies
May 4, 2005
crouching = false
wp = 65;
MovieClip.prototype.key38 = function() { //down
if (!this.crouching) { //if crouching is false
[code]...
for the part that says "if(???)" i am trying to get it so if the user presses key+wp(key65) it does an event. how do i do it without having to put it inside onClipEvent.
View 3 Replies
Jan 27, 2011
Sorry if the title is a little confusing. Here's what I meant - I have an array and and object. Let me give a visual:
This is my object:
obj["id"] = ["1","2","3"];
obj["name"] = ["na","no","ne"];
my itemArray:
itemArray = ["id","name"];
[Code]....
but it doesn't work. How do I actually use the arr[i] variable in the array? :s
View 1 Replies
Jun 11, 2009
Is it possible to make a menu display when the spacebar is held down, then, disappear once a menu option is chosen and the spacebar is released?
View 3 Replies
Sep 12, 2010
What is the correct way to detect held keys in a flash game For example, I want to know that the right arrow is held to move the player.
[Code]...
View 2 Replies
Aug 10, 2011
I have a small animation that I would like to be played ONLY while the space bar is being HELD down. I have tried everything, but then again, I am quite new to flash.
View 2 Replies
Feb 21, 2008
Am I correct in understanding that the onMouseOver event doesn't fire if the mouse button is clicked and held down prior to moving the mouse over the specified object? Would I need to code something using hitTest to see if the mouse is over the specified object regardless of whether the button is down or not?
View 1 Replies
Aug 25, 2009
I need to zoom in (therefore scale up) some static fields held in movieclips. They need to be BIG but when they are scaled up they lose some definition, looking a bit pixelated on the edges. Does anyone have any advice on how to keep them looking nice and smooth when they are scaled up?
View 1 Replies
Oct 13, 2002
im makin a game.... and i want to be able to delay the weapon even if the button is held down... like in this...
http:[url]...
how would i go about doing that?... the only reason is cuz right now my game lags so bad if i just hold dow the button cuz so many movie clips on the screen at once...
View 4 Replies