View Full Version : simple rollover help needed
morroney
January 21st, 2007, 07:11 AM
i'd like to do a rollover thing with some pics. similar to dreamweaver? the setup would be like this: small thumbnails below a large screen depicting the current pic. as mouse moves over each thumb, its larger image appears on screen.
pablo 2006
January 21st, 2007, 01:18 PM
Lots of ways to do this, but the fastest to explain right now is ... set up a gallery movie clip (big pics) with a different picture on each frame. Put a stop(); command above each pic, call it gallery_mc . Make buttons out of your thumbs, call them thumbX (X= picture number eg 1,2,3). Put everthing on the stage and ...
thumb1.onRollOver=function(){
gallery_mc.gotoAndStop(1);
}
thumb2.onRollOver=function(){
gallery_mc.gotoAndStop(2);
}
thumb3.onRollOver=function(){
gallery_mc.gotoAndStop(3);
}
...etc.
If thats not what you want, search the forum and/or google.
Pablo
morroney
January 21st, 2007, 05:04 PM
that'll do it! so far i've found that super cool but super complex scrollbar gallery within these forums, and what you've given me is way simpler and better for me right now.
mahalo for your help
morroney
Powered by vBulletin® Version 4.1.10 Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.