New to AS3 and new to classes

Hi there,

when I picked up a flash project recently I could notice that I havent been using Flash / Actionscript for a long time. I took a lot of time for things I used to do much quicker. Now Im busy trying some other flash project and I thought it was a good idea to totally forget AS1.0 and just learn AS3. Now I also havent used classes in Flash, but after some php project where I did use classes i thought that would be handy as well…

Well… I actually got 3 problems…

  1. I get an error about arguments (0 expected) This is when I create a new Post object

  2. In the main function of a class I have a trace function wich isnt executed

  3. some problems with dynamic variables / arrays… In a for function I want to shorten down a array to a variable like this:
    var a:Array = this[“post+i”];
    trace (a[0]);

but that doesnt work…

Here’s the code I use:


// code from Post.as
package {
	import flash.display.*;
	import flash.events.*;
	
	public class Post extends MovieClip {
		var background_color:String;
		var title_txt:String;
		var post_txt:String;
		var id:Number;
		var order:Number;

		public function Post(colorP:String, titleP:String, postP:String, idP:Number, orderP:Number) {
			background_color = colorP;
			title_txt = titleP;
			post_txt = postP;
			id = idP;
			order = orderP;
			trace("This code runs when the Test class is instantiated");
		}
		function move_up():Void {
			_parent.reorder(this.order, 1);

		}
		function move_down():Void {
			_parent.reorder(this.order, 0);

		}
		function change_order(order:Number):Void {
			trace(this.order);
			this.order = order;
		}
	}
}


// code from my .fla file
var post0:Array = new Array(1, 1, "Testpost", "Dit is een test post");
var post1:Array = new Array(2, 2, "Testpost2", "Dit is  nog een test post");
var post2:Array = new Array(3, 3, "Testpost3", "Dit is de laatste test post");
var postarray:Array = new Array(post0, post1, post2);

for(var i = 0; i<postarray.length; i++){
	//var a:Array = this["post+i"];
	//trace (a[0]);
	var newitem:Post = new Post("black", this["post+i"][2], this["post+i"][3], this["post+i"][0], this["post+i"][1]);
	list.addChild(newitem);
}

I hope you guys can help me out…

A few things from a brief glance:

_parent does not exist in that form in AS3. It’s just parent - no underscore - but you should be avoiding explicit display referencing as you are there if possible.

this[“post+i”] should be this[“post”+ i] - the former is interpreted as a string literal, the latter as a concatenation.

For performance, you should do something like

var postLength:uint = postarray.length;
for (var i:uint = 0; i < postLength; i++)
[...]
  • otherwise postarray.length is evaluated with each iteration. Also, strongly typecasting things even as simple as loop iterators is very much encouraged with AS3 for both code cleanliness and error checking.

Void is no longer capitalised - it’s just void.

So that’s a few things… see how you go :slight_smile:

  1. Have you saved the .as file recently? If so, try Control > Delete ASO Files. (and make sure that you’re using the correct file)

  2. If the above doesn’t fix it, try Publish Settings > Flash > Omit trace actions.

  3. It should be:

trace(this['post' + i]);
  1. Use void instead of Void.

Edit: Oops, too slow. :trout:

Thanks a lot guys, learnt some important things.
I feel really stupid for that [“post”+i]… I knew that one… just a typo i didnt see…

I still got 1 problem left… Flash doesnt recognize my functions in the class. And it also doesnt execute the trace statement in the main function. So I guess there’s something wrong with how I embed my .as with my .fla. Maybe one of you guys can look at it?

You should have looked at my second suggestion:

In the .fla that you posted, the box is checked when it shouldn’t be checked.

For the Post methods to be callable from your .fla, they should be in the public namespace:

package {
	import flash.display.*;
	import flash.events.*;
	
	public dynamic class Post extends MovieClip {
		public var background_color:String;
		public var title_txt:String;
		public var post_txt:String;
		public var id:Number;
		public var order:Number;

		public function Post(colorP:String, titleP:String, postP:String, idP:Number, orderP:Number) {
			background_color = colorP;
			title_txt = titleP;
			post_txt = postP;
			id = idP;
			order = orderP;
			trace("This code runs when the Test class is instantiated");
		}
		public function move_up():void {
			//parent.reorder(this.order, 1);

		}
		public function move_down():void {
			//this.parent.reorder(this.order, 0);

		}
		public function change_order(order:Number):void {
			trace(this.order);
			this.order = order;
		}
	}
}

Heh, that’d be a nasty trick to do to someone’s FLA while they weren’t looking. OMIGAWD NOTHING WILL TRACE. :fight:

Thanks Krilnon!
I wasnt sure what omit trace actions meant, so I check and unchecked it several times… Didnt know it had to be unchecked…
Thanks again for the information!