My favorites | Sign in
Project Logo
Project hosting will be READ-ONLY Wednesday at 8am PST due to brief network maintenance.
                
Search
for
Updated Feb 04 (5 days ago) by jwopitz
Labels: Featured, Phase-Implementation, tutorial
as3isolib_tutorial_001  
A simple example showing how to create an isometric box on the stage.

tutorial

This tutorial will demonstrate how to add an isometric primitive to the display list.

source code

package 
{
	import as3isolib.display.primitive.IsoBox;
	import as3isolib.display.scene.IsoScene;
	
	import flash.display.Sprite;
	
	public class IsoApplication extends Sprite
	{
		public function IsoApplication ()
		{
			var box:IsoBox = new IsoBox();
			box.setSize(25, 25, 25);
			box.moveTo(200, 0, 0);
			
			var scene:IsoScene = new IsoScene();
			scene.hostContainer = this;
			scene.addChild(box);
			scene.render();
		}
	}
}

Comment by nicholas.sandro.ball, Mar 08, 2009

Wierd... cant see any of these examples in my scenes... Got the latest code from svn and all... Any ideas anyone?

Comment by nicholas.sandro.ball, Mar 08, 2009

Its actually the case with all the examples... the scene has been rendered (without errors) but nothing showing.

Comment by krixware, Apr 19, 2009

In contrast to what nicholas.sandro.ball said, it does show BUT it's not the same with the screenshot above.

Check out my output.

Comment by lopezquekk, Nov 09, 2009

abc bytecode decoding failed. in flex 3

Comment by blu3bird, Dec 04, 2009

FP10 people

Comment by radioact1ve, Dec 27, 2009

As blu3bird said, FP10 only. So for flex 3, use compiler (mxmlc) option -target-player=10.0.0

or for flex builder 3 go to project -> properties -> flex compiler -> make sure flash player version is 10.0.0

Comment by aldemars, Jan 05, 2010

i am using FP10, compile, but, nothing showing

Comment by wyslucha, Jan 13, 2010

hi, I am using newest FP10, pasted code into flex builder3, compiled without any errors and I don't see anything as a result :/

any hint?

Comment by wyslucha, Jan 13, 2010

Tutorial 8 works with flex builder3, in contrast to this one ;-) So probably guys that have the same problem as me in previous msg should start with tut8.

BR


Sign in to add a comment
Hosted by Google Code