ActionScript 3.0 :: Simple For Loop With Array - Undefined Property

Nov 23, 2010

I'm an AS2 convert and struggling. I can't figure out how to get my function to see my array. I keep getting an error that "i" is an undefined property.

var thingsToShrink:Array = new Array(
b1,
b2,
b3,
b4,
b5
);

function shrinkBars(myArray:Array){
for (i=0; i < (myArray.length); i++){
myArray[i]._yscale = 0;
}};
shrinkBars(thingsToShrink);

View 4 Replies


Similar Posts:


Flex :: 1020 Undefined Property Right After Associative Array Defined Via Var?

Dec 29, 2009

While developing with Adobe Flex, I'm working on my first application - and use pretty much actionscript.

In my mxml application, I include as3 file via <mx:Script source="as/myas3file.as></mx:Script>.

In myas3file.as, I include (thru include "variables.as";) file variables.as, which contains following code:

var timer:Object = new Object();
timer.t = 60;
or (in other test case)
var timer:Object = {t:60, j:"80"};
timer.t = 80;

Neither case works! Even if I rewrite example code from official documentation, it throws an 1020 error.

View 1 Replies

ActionScript 3.0 :: Event For Loop Causing Undefined Array

Mar 11, 2011

Basically when I put the asteroidXlocation in a for loop it becomes undefined outside it. If I just do the line by itself it works.[code]...

View 1 Replies

Actionscript 3 :: Loop Through Array, Set Property Of Each Element?

Dec 10, 2011

Okay, very simple: there is an array containing 3 objects. Each object has a unique property called "ID" with values of either 1, 2, or 3One of the objects gets deleted.The objective now is to update the ID property of each object corresponding to the new array.length valueSo for example, the object with ID of 2 got deleted. The remaining objects in the array would each have ID values of 1 and 3 respectively.o the objective is to loop through the array and update the ID properties to 1, and 2 (instead of 1 and 3)

View 2 Replies

ActionScript 3.0 :: Loop A F4v Error "1119: Access Of Possibly Undefined Property COMPLETE Through A Reference With Static Type Class"

May 20, 2011

I'm trying to loop a f4v but I keep getting an error. I have imported a f4v into my library and I now have a FLVPlayback in my library. I have added this to the stage and named it "video_test". I have added the below actionscript to my timeline:

[Code]...

View 3 Replies

ActionScript 3.0 :: Flash Error 1120: Access Of Undefined Pro: MovieclipAccess Of Undefined Property: Movieclip

Oct 12, 2010

im having problems getting some as3 generated (not drawn on stage) movie clips moving across the screen.

Code:
package {
import flash.geom.ColorTransform;
import flash.display.MovieClip;
import fl.motion.Color;
import flash.display.*;

[code]....

View 7 Replies

AS3 :: Css - Access Of Undefined Property?

Mar 16, 2011

I know there are a number of posts dealing with this issue. But, I'm still not understanding it.I keep getting a "1120: Access of undefined property CSSloader." in the following script:

package as3.comp{
import flash.events.Event;
import flash.events.ProgressEvent;

[code]........

View 1 Replies

ActionScript 3.0 :: Undefined Property Timer?

Sep 14, 2009

This is the code (simple):

var timer:Timer = new Timer(2000, 1);
timer.addEventListener(TimerEvent.Timer, onTimer);
timer.start();

[code].....

View 9 Replies

Access Of Undefined Property HomeArtist MC

Jun 29, 2009

I have an app where I am wanting to use some movieclips when clicked on to remove the current movieclip and add a new movieclip. My problem seems to be that whenever I refer to the homeArtist_mc movieclip I get an error.

For example on line 50 in my actionscript I have
homeArtist_mc.buttonMode = true;
And I get this error
1120: access of undefined property homeArtist_mc.

Attachments: index004.zip (1.6 MB)

View 2 Replies

Access Of Undefined Property On Button?

Dec 14, 2009

i have gave this action on the timeline but i m getting this error (Access of undefined property)
 
close_btn.addEventListener(MouseEvent.CLICK,connection);
function connection(evt:MouseEvent):void


[code]......

View 1 Replies

ActionScript 3.0 :: HitTestObject Undefined Property?

Mar 2, 2011

i am making a game,it involes shooting targets. the way it works is i have a small dot (one pixel) and, when a mouse button is clicked, checks to see if its hitting a target.

in my target.as file i have the following error:[code]...............

View 7 Replies

Actionscript 3 :: Access Of Undefined Property?

Mar 25, 2010

first of all I am completely new to AS3.I want to create a simple website, with 3 buttons.Once you click on the button, content should appear next to it. But i have trouble
programming even one button.Here is the script:

stop();
photography_btn.addEventListener(MouseEvent.CLICK, photoclick);
function photoclick(event:MouseEvent) {

[code]....

View 2 Replies

ActionScript 3.0 :: Loader Causes Undefined Property?

Sep 7, 2009

I have created a game that works fine when publish it and run the swf. However, I have a short animated piece that runs and uses a loader to load the game.swf file when the animation is complete. Once I run the animated piece with the loader all of my instances break because it is looking for myLoader.instanceName. Is there any way that i can load the external swf without having to go into the game.as file and recreate all the instance names?

Code:
var myLoader:Loader = new Loader();
myLoader.load(new URLRequest(game.swf));

[code].....

View 2 Replies

ActionScript 3.0 :: Access To An Undefined Key Property?

Feb 4, 2011

i keep getting that error and cannot figure why. This is my code:

Code:
import flash.events.KeyboardEvent;
import flash.ui.Keyboard;

[code].....

View 2 Replies

ActionScript 3.0 :: Access Of Undefined Property Name

Oct 28, 2011

I am working on a piece of code and I am getting bizar Access of undefined property name errors. I am posting my code below. About half way through the function, references to "name" become undefined.

Code:
private function getIcon(_name:String):int{
//5 is min length valid name can be y.xxx
if(_name == null || _name.length <5){

[code]....

In all the code past this method, all the variables and class names are showing as undefined.

View 4 Replies

Actionscript 3.0 :: Loader Causes Undefined Property

Sep 7, 2009

I have created a game that works fine when publish it and run the swf. However, I have a short animated piece that runs and uses a loader to load the game.swf file when the animation is complete. Once I run the animated piece with the loader all of my instances break because it is looking for myLoader.instanceName. Is there any way that i can load the external swf without having to go into the game.as file and recreate all the instance names?

Here is the simple loader script i am using in case there error is within there.

Code: Select allvar myLoader:Loader = new Loader();
myLoader.load(new URLRequest(game.swf));
addChildAt(myLoader, 0);

View 3 Replies

1120 - Access Of Undefined Property?

Jun 8, 2010

So I'm quite to Flash, AS3, etc... And this is making me nuts I'm taking on creating this website but some of my buttons just continually get a "1120: Access of undefined property" error. These are very simple buttons (not movie clip buttons or anything fancy), and their use is to navigate from one section to another (no more no less), using Labels (not much of a surprise here either).

I'm not sure whether this is relevant but the button IS inside a movie clip called "jobPositions_mc", the instance name is "jobPositions".The button is a generic button that I reused for different job positions, each one with a different instance name. In this example, the button name is "JobsOpeningButton_btn" and the instance name is "jrSalesBtn"The label of the frame I want to go to by pressing the button is "jrSales"

The script I'm using is the following:

[Code]....

View 2 Replies

IDE :: Access Of Undefined Property _root?

Feb 26, 2008

I just started using CS3 and I'm having some trouble.

I am getting the following error: Access of undefined property _root

it refers to every instance in the code below where I use _root

The movieclip "pages" is looping even though there is a stop(); on each frame

import flash.events.MouseEvent;
weirdsville_button_over.addEventListener(MouseEven t.MOUSE_OVER, weirdsville_over);
function weirdsville_over(event:MouseEvent):void {
if (_root.pages.currentFrame != 2) {
weirdsville_button.gotoAndStop(2);

[Code]...

View 7 Replies

IDE :: Access Of Undefined Property TextFieldAutoSize

Mar 4, 2009

I have a class that will not run in Flash CS4
myLabel.autoSize = TextFieldAutoSize.CENTER
I have tried everything to get it to work, here is the code, I am running it from flash with a class called main, if i comment the culprit line it the rest of it works.
Error : 1120: Access of undefined property TextFieldAutoSize.

package {
import flash.display.Sprite;
import flash.text.TextField;
import flash.text.TextFieldType;
import flash.text.StyleSheet;
import flash.text.TextFormat;
[Code] ......

View 2 Replies

ActionScript 3.0 :: .name Property - Extravagant Is Undefined

Apr 18, 2009

is there any known bugs with the .name property? I created a movieclip and added it to the stage via addchild. Here's the code:

[Code]...

the trace statement shows that myChoice name is in fact "extravagant". So is "extravagant" my instance name? I don't know, because when I try to use extravagant as the instance name for a button the compiler says extravagant is undefined. Here's the complete code...

[Code]...

View 1 Replies

ActionScript 3.0 :: Undefined Property In DisplayObject?

Jun 17, 2009

var container:MovieClip = new MovieClip();
addChild(container);
var clip:MovieClip = new MovieClip();

[code].....

View 7 Replies

ActionScript 3.0 :: Access Of Undefined Property?

Jan 25, 2010

im trying to define a number in my constructor function and use it in another method, ives me Access of undefined property destinationX on the last line here.[code]

View 2 Replies

ActionScript 3.0 :: Access Of Undefined Property

Dec 8, 2009

I'm new to Actionscript and am creating my first flash website for my degree. So far I've managed to get the home page to animate by tweening using actionscript. When the menu options are clicked I want the website to slide to different pages. So far I've tried just getting the background to move but get the error 1120: Access of undefined property. "background_img" is the instance name and if i use the code in the portfolio.as file i can tween it fine.[Code]...

View 9 Replies

ActionScript 3.0 :: Undefined Property OnTileClicked?

Jun 25, 2011

I'm following a starter's guide to AS3, and it's giving me an error. I am following the guide exactly.
Code:
package {
//importing classes
import flash.display.Sprite;
import flash.events.MouseEvent;
// end of importing classes
public class Main extends Sprite {
public function Main()
[Code] .....
the error is 1120: access of undefined property onTileClicked

View 1 Replies

ActionScript 3.0 :: 1120: Access Of Undefined Property

Mar 18, 2009

I have 4 movie clips on the stage named coil1_mc, coil2_mc ...I have this code on my actions layer

coil1_mc.gotoAndStop(2);
coil2_mc.gotoAndStop(2);
coil3_mc.gotoAndStop(2);
coil4_mc.gotoAndStop(2);

I keep getting this error below. Coil3 and 4 work just fine they dont error out. I'm really confused. I have attached my fla if you want to take a look yourself.1120: Access of undefined property coil1_mc.

View 1 Replies

ActionScript 3.0 :: Access Of Undefined Property PlayerHalfWidth?

Nov 23, 2009

I am developing a small flash game which I use to test new functions.

I am trying to add collision detection on the stage boundaries so that the player cannot move of the stage . The code in bold is what I last added to test it out.

I have attached the project also.

The compile error is:
1120: Access of undefined property playerHalfWidth.
playerHalfWidth = player.width /2;
1120: Access of undefined property playerHalfHeight.

[Code].....

View 2 Replies

ActionScript 3.0 :: (Access Of Undefined Property) From SWF Element

Nov 16, 2010

I got this old code, that works. When I tried to compile, it gave many compile errors like
Code:
Error: access of undefined property foo
foo.core.searchButton.enabled = false;
^
for instance (changed the original for the sake of post size, it's so many errors like that with different foo's). So, I did grep the code and realized that there's no declaration of 'foo' in any of AS classes. None of foo-like vars are declared.

Then, I got the only movieclip file in src folder opened in Adobe Flash CS5 and there they are: all of those variables that hadn't declaration in code were names of button, text fields, etc in the SWF. Given that, I thought it was just some compiler argument I forgot to put, but I didn't find anywhere. I looked for alternatives but I wasn't successful neither...

View 4 Replies

ActionScript 3.0 :: 1120: Access Of Undefined Property ...

Dec 10, 2008

I get this message: 1120: Access of undefined propertyshutterL. If comment out the trace statement "shutterL" appearsonstage. What I need to do?

View 6 Replies

ActionScript 3.0 :: Error 1120: Undefined Property

Jun 4, 2009

I am not able to figure this one out, it seems quite obvious, but I have checked all my instance names, and they are correct. I am just trying to make a button play its open animation when the hit state is moused over, and i keep being told that my button is not defined...
 
btn_aboutH.addEventListener (MouseEvent.MOUSE_OVER, aboutOver);function aboutOver (e:MouseEvent):void{    btn_about.gotoAndPlay ("aboutOver");}

View 9 Replies

ActionScript 3.0 :: Access Of Undefined Property External_txt?

Sep 16, 2008

This is the code I've acumulated so far for my animatedscrolled text, the only problem is that since I turned my dynamictext field into a movie clip, I'm getting 2 errors that I can'tseem to fix . 1120: Access of undefinedproperty external_txt.

View 4 Replies







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