Groups | Blog | Home
all groups > flash actionscript > february 2006 >

flash actionscript : Noobarooni


R2Dork
2/7/2006 9:06:58 PM
:confused;

Still wrapping my wits around ActionScript. I'm trying to do something like a
gallery page, where clicking a button will play a short animation (movieclip?)
in one section and display some text information in another. Can someone here
simply outline the overall process for this?

Thanks in advance for any help or sarcastic remarks. :)


abeall
2/7/2006 10:43:58 PM
[quoted text, click to view]
Lol, this says something about the MM forums, doesn't it? Unlike your subject
line, which doesn't even resemble english. ;)

You may need to provide more information on what exactly you want to do... a
good place to start might be to look into loadMovie, arrays, loops, and
functions.


_global.myGallery = ;
_global.image = 0;


on(release){
_global.image += 1;
if(image>=myGallery.length){_global.image=0};
_root.dropZone_mc.loadMovie(myGallery);
}


on stage somewhere


...that's a start
AddThis Social Bookmark Button