Link to home
Start Free TrialLog in
Avatar of derrida
derrida

asked on

problem passing a variable from one function to another AS3

Hi
it is my first try of writing in AS3 in a class format. so i`m building a gallery and i built a grid so now i wanted to insert the dynamic values in. i bring the xml into flash (it works) and i want the number of "images" to take its value from the xml. but i cannot make it work.
i have the value from the xml store in a variable but i cannot take it and pass it into another method.

i attach my code as a whole because maybe the problem is with my writing of the class.

best regards

ron
package{
	
	import flash.display.MovieClip;
	import flash.net.URLLoader;
	import flash.net.URLRequest;
	import flash.display.Loader;
	import flash.events.Event;
	import flash.display.Sprite;
	
	
	public class SGclass extends MovieClip{
		
		private var siteLoader:URLLoader;
		private var siteRequest:URLRequest;
		private var imageLoader:Loader;
		private var doxml:XML;
		private var boxNum:int;
		private var cols:int= 6;
		private var rows:int = Math.ceil(boxNum / cols);
		private var boxCount:int = 0;
		private var box:Sprite;
		
		
		public function SGclass(){
			
			siteLoader = new URLLoader();
			siteRequest = new URLRequest("sites2.xml");
			siteLoader.load(siteRequest);
			
			siteLoader.addEventListener(Event.COMPLETE , takesites);
			placeImages();
			//trace(boxNum);
			
		}
		
		
		public function takesites (e:Event):void {
			
			doxml = XML(e.target.data);
			//trace(doxml.site);
			
			boxNum = doxml.site.length();
			//trace(boxNum);
			
			
		
		}
		
	private function placeImages(){
			
			for (var py:int = 0; py < rows; py ++) {
				for (var px:int = 0 ; px < cols ; px ++) {
					//see that you are not exiding the boxNum variable
					if(boxCount < boxNum){
						box= new Sprite();
						box.graphics.beginFill(0xCCCCCC);
						box.graphics.drawRoundRect(0,0,80,80,15,15);
						box.graphics.endFill();
						box.buttonMode = true;
						box.x = 100 + px * (box.width + 10);
						box.y = 40 + py * (box.height+ 10);
						addChild(box);
						boxCount++;
						
						}
					}
				}
				
			
 
		}
 
		
		
	}
	
}

Open in new window

Avatar of Aneesh Chopra
Aneesh Chopra
Flag of India image

problem is you are callling "placeImages()" function just with XML load call, which is not correct.
XML load is an asyncronous function that so we have 'complete' event to check when XML gets loaded and data is available for use.

solution is:
You should call "placeImages()" function after XML get loaded.
below is the updated code which should work, if it does not, I suggest to upload your sample source with XML file for review:


package{
	
	import flash.display.MovieClip;
	import flash.net.URLLoader;
	import flash.net.URLRequest;
	import flash.display.Loader;
	import flash.events.Event;
	import flash.display.Sprite;
	
	
	public class SGclass extends MovieClip{
		
		private var siteLoader:URLLoader;
		private var siteRequest:URLRequest;
		private var imageLoader:Loader;
		private var doxml:XML;
		private var boxNum:int;
		private var cols:int= 6;
		private var rows:int = Math.ceil(boxNum / cols);
		private var boxCount:int = 0;
		private var box:Sprite;
		
		
		public function SGclass(){
			
			siteLoader = new URLLoader();
			siteRequest = new URLRequest("sites2.xml");
			siteLoader.load(siteRequest);
			
			siteLoader.addEventListener(Event.COMPLETE , takesites);
			
			//trace(boxNum);
			
		}
		
		
		public function takesites (e:Event):void {
			
			doxml = XML(e.target.data);
			//trace(doxml.site);
			
			boxNum = doxml.site.length();
			//trace(boxNum);
			placeImages();		
		}
		
	private function placeImages(){
			
			for (var py:int = 0; py < rows; py ++) {
				for (var px:int = 0 ; px < cols ; px ++) {
					//see that you are not exiding the boxNum variable
					if(boxCount < boxNum){
						box= new Sprite();
						box.graphics.beginFill(0xCCCCCC);
						box.graphics.drawRoundRect(0,0,80,80,15,15);
						box.graphics.endFill();
						box.buttonMode = true;
						box.x = 100 + px * (box.width + 10);
						box.y = 40 + py * (box.height+ 10);
						addChild(box);
						boxCount++;
						
						}
					}
				}
				
			
 
		}
 
		
		
	}
	
}

Open in new window

Avatar of derrida
derrida

ASKER

hi
it still does not work. i uploaded the files here:
https://filedb.experts-exchange.com/incoming/ee-stuff/7187-mysitegalleryWithClass.zip

and can you explain why i should call that function there and not in the constructor please?


ron
ASKER CERTIFIED SOLUTION
Avatar of Aneesh Chopra
Aneesh Chopra
Flag of India image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of derrida

ASKER

Hi
thanks it works and i do get the explaination. while i`m writing AS not as class the flowing of the code is more natural for me then this sort of writing, but i hope to learn this type of writing.

thank you for your efforts.

best regards

ron