Archive for January, 2008

Flash ActionScript 3.0 XML Basic Slideshow with Transitions

In this tutorial, Im building up what I started in the Text Array Loader. Basically, I have added the ability to pull in images and also setup the whole slideshow on a Timer event. So every 5 seconds (the time limit can be changed), the next image is loaded from the XML, and when it loads it uses an Alpha Tween from the TweenLite library to fade in. In the next version, I will be adding some sort of dynamic navigation.

Here is a screenshot of the XML File:
AS3 Part 1 Tutorial - XML File

This slideshow is based off my prior tutorial: Flash ActionScript 3.0 XML Text Array Loader.

Step 1: Declare Your Variables and Import Classes
This is where I first Import the gs.TweenLite class so that I can use it to tween my images. I also setup my variables here for my timer, my slide number, and my image loader.

Actionscript:
  1. import gs.TweenLite;
  2.  
  3. // variables
  4. var xmlList:XMLList;
  5. var slideNum:Number = 0;
  6. var imgLoader:Loader = new Loader();
  7. var slideTimer:Timer = new Timer(5000); //runs every 5 seconds

Step 2: Load the XML
Now I setup the loader request for XML and once its finished loading using the EventListener, then I tell flash to pull the name attribute out of the first node in my xml file and I use the another instance of the loader class to to load the image out of the xml file. I then place the text in the dynamic text field called imageText and also add the first instance of imgLoader to the stage and tell it to tween in.

Actionscript:
  1. // load xml
  2. var xml:XML = new XML();
  3. var loader:URLLoader = new URLLoader();
  4. loader.load(new URLRequest("images.xml"));
  5. loader.addEventListener(Event.COMPLETE,
  6.     function(evt:Event):void {
  7.         xml = XML(evt.target.data);
  8.         xmlList = xml.children();
  9.         imageText.text = xml.image[slideNum].@name.toString();
  10.         imgLoader.load(new URLRequest(xml.image[slideNum].@src));
  11.         TweenLite.from(imgLoader, 1, {alpha:0});
  12.         imgLoader.x = 0 ;
  13.         imgLoader.y = 0;
  14.     }
  15.    
  16. );

Step 3: Add Event Listeners
Now I setup the imgLoader event listener, that once that event is complete it will run onLoadComplete. I also setup the slideTimer here and start it. The slideTimer is set to call the function onSlideTimer every 5 seconds.

Actionscript:
  1. // stage event listeners
  2. imgLoader.contentLoaderInfo.addEventListener(Event.COMPLETE, onLoadComplete);
  3. slideTimer.addEventListener(TimerEvent.TIMER, onSlideTimer);
  4. slideTimer.start();

Step 4: Change Text Function
I carried over the Change Text Function from my XML Text Array Tutorial and added a few lines to pull the next image from the XML file along with the next text description.

Actionscript:
  1. // this function will change the text depending upon which number is fed to the var slideNum in the onClickNextSlide function
  2. function changeText(slideNum:Number):void {
  3.     imageText.text = xml.image[slideNum].@name.toString();
  4.         imgLoader.load(new URLRequest(xml.image[slideNum].@src));
  5.          addChild(imgLoader);
  6.          TweenLite.from(imgLoader, 1, {alpha:0});
  7.          imgLoader.x = 0;
  8.          imgLoader.y = 0;
  9.         
  10. }
  11. changeText(0);

Step 5: Timer Function
This is the most crucial part of the slideshow is what makes the slideshow run on its own. This is the timer function which the timer calls every 5 seconds. It will change the slide, so every five seconds its counts up a number and that is the image that is shown. Once it reaches the 5th image(4), it starts over at 0, which is really 1.

Actionscript:
  1. function onSlideTimer(evt:TimerEvent):void {
  2.         if (slideNum == 4) {
  3.             slideNum = 0;
  4.         }
  5.         else {
  6.             slideNum  ;
  7.         }
  8.     changeText(slideNum);
  9.     trace(slideNum);
  10. }

Step 6: onLoadComplete Function
This function adds the imgLoader to the stage, without this you will not see anything in your movie. This is crucial!

Actionscript:
  1. function onLoadComplete(event:Event):void {
  2.         addChild(imgLoader);
  3. }

Im currently working on making this a tad more dynamic with buttons, and a slideLength variables which automatically changes the amount of slides so that you dont have to change the .fla file when adding more nodes to your slideshow. Im also going to be working on getting slicker transitions working such as images that slide in/slide out off the screen.

Here is an example of the working file:
View Demo

Download all the source files here: AS3 Basic Slideshow with Transitions (1082)

ve ringtones motorola for alltelwireless ringtones alltel alltell 41 1 417 free top ringtonefree ringtones 1260ringtone 190 motorola download1st ringtoneringtones 2285mp3 ringtone 6230 Mapfree sex movie slavemovies preteenmovies musclemen samplealien movies ant farmadult movies free samplesex movies freelesbo movieshome wifes movies Mapmovies porn free bigfree lactating moviesmovies free milfhunter downloadedgallery movie shemale freewindows maker free moviethe holes movie soundtrackhorror movie figures actionnude jennifer movie connelly Mapalaska loan supplementalloans alliedstudent american loanprivate student aarp loansloan abn mortgage resolutionloan unsecured $500,000personal ameriquest loansfederal stafford a-subsidized loans Mapbabysitters pornsporn party bachelor nightporn breakin backfacial room back pornporn for access backdoorbackdoor porn sitesbackroom pornporn bangers site backyard Maptottaly spies pornfree view clips pornxxx free rated pornringtone walsh joe wavhop ringtones hip midi 10kb3 ringtonesnokia 3520 ringtone 3560 freenokia 5125 ringtone free download MapAsian TGP speculumMujeres eroticasLatina Mollig TGPpusy - ATK BehaarteBiw interrassischGranny Interrassischpissing LollitaErotik Sapphic Sandy Map

Comments (15)

Flash ActionScript 3.0 XML Text Array Loader

After creating the Flash 8 ActionScript 2.0 Image slideshow modifications, I wanted to start from scratch on my next set of tutorials with AS3. AS3 is very different from AS2, the learning curve is not easy but its worth it. I would like to recommend a few books to help you get started in AS3; Essential ActionScript 3.0 by Colin Moock and Learning ActionScript 3.0: A Beginners Guide by Rich Shupe and Zevan Rosser. This is my first tutorial in a series where I will be rebuilding the XML/Flash Slideshow in ActionScript 3.0.In this tutorial, I will be focusing on how to setup your XML file, how to read in text from that XML file into you flash, and how to move through the xml nodes in your flash file and have them show up.First thing is first, how do you setup your XML file, I used a lot of examples from Colin Moock's book to achieve this. By no way is my way the right way, since XML is pretty flexible. I setup my xml file by opening up with a parent node "images" then placing all of the attributes within each node "image". AS3 makes it really easy to pull the varibles out, so thats why I set it up this way. Here is a screenshot:AS3 Part 1 Tutorial - XML FileNext, I setup my AS3 file. I opened a new AS3 document, and created two movieclips and gave them instance names of prevBtn and nextBtn. I didnt setup my code in OOP, that will be part of the next tutorial. I just wanted to do something basic here to help people get started. I also added a dynamic text field to the stage and gave it an instance name of "imageText".

Step 1: Declare Your VariablesThis is where I setup my Loader and XMLList instances. I also setup slideNum which Im going to be using to hold the position or index of the array.

Actionscript:
  1. //variables
  2. var xmlList:XMLList;
  3. var mcLoader:Loader;
  4. var slideNum:Number = 0;

Step 2: Load the XMLNow I setup the loader request for XML and once its finished loading using the EventListener, then I tell flash to pull the name attribute out of the first node in my xml file and place it in the dynamic text field called imageText.

Actionscript:
  1. //loads xml and assigns the text field the first node using the slideNum variable from above
  2. var xml:XML = new XML();
  3. var loader:URLLoader = new URLLoader();
  4. loader.load(new URLRequest("images.xml"));
  5. loader.addEventListener(Event.COMPLETE,
  6. function(evt:Event):void {
  7.         xml = XML(evt.target.data);
  8.         xmlList = xml.children();
  9.         trace(xmlList);
  10.         imageText.text = xml.image[slideNum].@name.toString();
  11.     }
  12. );

Step 3: Add Event ListenersNow Im telling flash that whenever a user clicks to perform a function. So if a user clicks on nextBtn, the onClickNextSlide function will run. If a user clicks on prevBtn, the onClickPrevSlide function will run. This is one of the biggest changes of AS3, whenever you create a button, you must always assign it an event listener. There seems to be much more flexility in this way.

Actionscript:
  1. //stage event listeners for the movieClip buttons
  2. nextBtn.addEventListener(MouseEvent.CLICK, onClickNextSlide);
  3. prevBtn.addEventListener(MouseEvent.CLICK, onClickPrevSlide);

Step 4: Change Text FunctionThis function works with the buttons. The text will change based on the slideNum var that is fed into the function from the button functions which come next

Actionscript:
  1. //this function will change the text depending upon which number is fed to the var slideNum in the onClickNextSlide function
  2. function changeText(slideNum:Number):void {
  3. imageText.text = xml.image[slideNum].@name.toString();
  4. }
  5. changeText(0);

Step 5: Button FunctionsThe onClickNextSlide function increases the slideNum variable with each click. If slideNum reaches 4 (the total number of nodes), then it starts over at 0. The onClickPrevSlide function does the reverse.

Actionscript:
  1. //this function adds 1 to the current number, if the current number is 4, it starts over
  2. function onClickNextSlide(event:MouseEvent):void {      
  3.     slideNum++;  
  4.     trace(slideNum);       
  5.     if (slideNum == 4) {           
  6.         slideNum = 0;      
  7.     }      
  8.     changeText(slideNum);}
  9.     // this function dos the opposite of the one above, it subtracts 1 to current number, when it reaches 0 it starts back at 4
  10.     function onClickPrevSlide(event:MouseEvent):void {      
  11.         slideNum--;  
  12.         trace(slideNum);       
  13.         if (slideNum == 0) {           
  14.             slideNum = 4;      
  15.         }      
  16.         changeText(slideNum);}

There is currently some known issues which Im going to fix and re-release. I know currently that if you try to go backwards when the flash first loads, it wont work. The previous button only works after you go forward first. If anyone has a solution, please post a comment. Here is an example of the working file:View Demo

Comments (7)