I’m tring to make this picture galley, i want it so when I click a thumbnail the whole picture will show on the other side of the page. So my question is, is there a way to show the image without loading it from a movie clip? I want to use whatever this person is doing with their rollover effects. http://www.theelvi.com
thanks
quite simple. Here’s the quick explanation. Please note there are always different ways of doing things. This is just one of them, perhaps the most basick.
create layer
starting with frame 2 you will put a picture on each frame. (All pics same size in the same position).
create another layer above it. Starting with frame 1 make sure all your frames are empty keyframes (white circle) you will put a stop action in each of the frames ( as in “stop();” )
make sure your buttons exist throughout your movie.
each button’s rollover will look something like this.
button1.onRollover=function(){
gotoandstop(2);
}
button1.onRollout=function(){
gotoandstop(1);
}
that way, when you rollover it goes to frame 2, when you rollout it goes back to frame 1… so on and so forth.
good luck.