Find more Tutorials in one of this categories:
3d :: Access :: actionscript :: after-effects :: ajax :: animation :: asp :: autocad :: blender :: c-sharp :: cpp :: css :: design :: drawing :: dreamweaver :: eclipse :: excel :: fireworks :: flash-8 :: flash :: flex :: fruity-loops :: gimp :: hacking :: hibernate :: html :: illustrator :: indesign :: java :: javascript :: joomla :: linux :: mapping :: maya :: ms-project :: myspace :: pdf :: perl :: photoshop :: php :: php :: powerpoint :: psp :: python :: reason :: ruby :: second-life :: spring :: sql :: template :: ubuntu :: video :: visual-basic :: windows :: word :: xml
Search:

Home
Impressum

Photo Gallery and Thumbnails: Flash Tutorial!

Ruby Tutorials
Ruby Tutorials Ruby Tutorials
Ruby Tutorials

This is the eBook version of the printed book. If the print book includes a CD-ROM, this content is not included within the eBook version. Anyone with moderate Macromedia Flash experience who is looking to acquire or improve their understanding of ActionScript will find this book a valuable resource. Author Gary Rosenzweig is highly respected in the Macromedia community and pioneered the use of advanced programming techniques in Macromedia Flash. For this edition, he has updated the games from the previous edition and has added several new projects. Each chapter studies and then deconstructs a new type of game or gadget such as hunt and click games, catch and avoid games, or action and adventure games and the CD contains the project source code.

Provides information on using ActionScript 2.0 to create a variety of applications.

I'm not new to Flash development but I AM new to ActionScript 3.0. Even for the games I may have coded in AS 2.0, there is tremendous value in seeing them revised for Flash's new language. As for the others - wow. So many opportunities to grow as a developer from these examples. Bonus - I love Gary's conversational style of writing. I feel like he's right there mentoring me while I'm working through the code and the logic behind it. Thank you so very much - this is exactly what I was looking for. ...
I recommend this book if you are moving from AS2 to AS3, even if you are not interested in writing games. Gary does not claim it is suitable for beginners without any programming experience but it is more suitable than Moock's "Essential ActionScript 3.0" (which does make such a claim). However it is not for web designers that don't want to learn programming and it is not for advanced programmers that appreciate Moock's AS3 book.

Check this video out at Hi-Res here: http://www.tutvid.com/tutorial... will make a nice little photo gallery in Flash in the following tutorial. All you need are a few images and a few thumbnails for them, the rest is just follow along and it works with any images!

Channel: Education
Uploaded: January 1, 1970 at 12:59 am
Author: tutvid

Length: 26:09
Rating: 4.75
Views: 125639



Video Url:


Embed Code:

Video Comments

whitwoolou (January 1, 1970 at 12:59 am)
first time I've used flash, your video was a massive help, thanks!
anehzat (January 1, 1970 at 12:59 am)
that was a great clip, i had a bit of problem but that was because i was in action script 3 if you use action script 2 it works just fine : )
srrupert (January 1, 1970 at 12:59 am)
Nice work very helpful
jasnimation (January 1, 1970 at 12:59 am)
hey great video i learned allot more but i had 1 problem the buttons didnt work they dont link the pictures so when i click on them they dont show the pictures plz help! either from that everything works good :) thnx
Kirbyking (January 1, 1970 at 12:59 am)
You forgot to mention where you got the sized photo's from and what program you moved them over from, begninners will get lost
unequeled (January 1, 1970 at 12:59 am)
Yea, it helped, Thank You
mattiehead (January 1, 1970 at 12:59 am)
If you click on your rectangle tool and go to properties and set the rectangle options back to zero I think that should make your rectangles.... well rectangular again... Hope this helps
unequeled (January 1, 1970 at 12:59 am)
Hey, i just got flash, and i somehow screwed up my rectangle tool. when i try to draw a damned rectagle the corners, like sink in to make points on 2 ends, but basically it's not a damned rectangle, can anyone help?
thebestanswer2 (January 1, 1970 at 12:59 am)
all you have to do is change from actionscript 3.0 to actionscript 2.0 then it'll work.
mtoni1987 (January 1, 1970 at 12:59 am)
AS 3.0 Translation - For his "ThumbAS" frame, try this code... thumb01.addEventListener(MouseEvent.MOUSE_OVER, manageMouseOver);thumb01.addEventListener(MouseEvent.MOUSE_OUT, manageMouseOut);function manageMouseOver(e:MouseEvent):void{thumb01.alpha=1; }function manageMouseOut(e:MouseEvent):void{ thumb01.alpha=0.5; }