FLASH

MAKING SLIDING FILE IN FLASH USING ACTIONSCRIPT 3

The video linked below is a tutorial on how to make a file in Flash which has a sliding effect on mouse over and out.  *Cam this one is for you!*

Link to example: http://www.mrscullen.com/noteztoselfblog/sliderinprogress.html

Link to video tutorial: http://www.mrscullen.com/noteztoselfblog/flashslider_web/flashslider_web.mov

Link to Actionscript for File (in case can not read in video): http://www.mrscullen.com/noteztoselfblog/scriptforslider.html



MAKING BUTTONS IN FLASH USING ACTIONSCRIPT 2

One of my new goals for the summer is to really dig into Flash.  I already started by making the billboard located at http://www.headoverheelsma.com  .  At first I created this billboard using Actionscript 3 which worked well until I needed to jump back and forth between frames.  I found Actionscript 2 to be more useful on creating a "basic" Flash button action.

Once you see the Flash file on http://www.headoverheelsma.com (it is the main billboard on the home page) you will notice that the file has thumbnails which link to larger images and then the back and forth arrows.  Actionscript 3 worked with the thumbnails and images but not the back and forth arrows.  I am sure there is a basic way to make the file work with Actionscript 3 but I found the solution with Actionscript 2.  Once each item on the file was turned into a button I applied the following Actionscript to each button (buttons on the file are the thumbnails and arrows):

on {release} {
          gotoAndPlay (frame #);
}


A great resource for this post is:  http://www.phswebclass.com/flash/button_scenes/index.htm