Flash Thumbnail how to?
- Started
- Last post
- 4 Responses
- schedule2
Hello,
I'm building a site in flash for a client and in one of the sections he wants to have a gallery of pictures. Does anyone know of a good way to do thumbnail previews and when the user clicks on the thumbnail the image is shown in full size with a back button to take you back to the thumbnail page. I've seen this all over in html pages, just wondering if anybody has any flash tricks that might help me out.
http://www.invicid.com/hoostest.…Thanks to anyone who can provide soe advice!
- Anarchitect0
it's just a matter of loading a movieclip with the image and having a button to either unload it and/or making _visible the thumbnail menu....
- schedule20
Cool Thanks Anarchitect. I follow you somewhat. Could you elaborate a little?
- Anarchitect0
ok.
u have this thumbnails MC's inside a movieclip [thumMC]. each thumbnail would have a triiger action like:
this.onPress = function(){
this._parent._parent.holder.imag...
this._parent._visible=false;
this._parent._parent.holder._vis... = true;
}the holderMC contains both the 'back' button and the imageMC for the loaded image.
'back' button action:
this._onPress()= function(){
this._parent.image.unLoadMovie...
this._parent._parent.thumbsMC._v...
this._parent._visible=false;
}
- schedule20
thanks alot! I really appreciate the help!