Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Unload pic in gallery when navigate to other scenes

Status
Not open for further replies.

carmen77

Programmer
Jun 12, 2005
5
US
Hi all,

I have downloaded a sample photo gallery for my personal website (total of 3 scenes)

scene 1 - home page
scene 2 - photo gallery
scene 3 - guestbook

in scene 2, when click at the thumb, the pic will be enlarged... but when i navigate to other scenes, eg scene 3, the enlarged pic remains on top of current scene...
how do i unload the pic???
thks in advance!!!

have uploaded the .fla & .swf files for your reference. (PhotoGalleryProb.zip)
 
Add the following bolded line to your "Home" & "Guestbook" buttons in your Scene 2...
Code:
on (release) {
	[b]bjork_photo._parent.alvo.unloadMovie();[/b]
	_root.gotoAndPlay("Home1");
}

on (release) {
	[b]bjork_photo._parent.alvo.unloadMovie();[/b]
	_root.gotoAndPlay("GuestBook1");
}

Regards. Affiliate Program - Web Hosting - Web Design
After 25,000 posts, banned on FK, but proud not to have bowed down to them!
 
Thks oldnewbie!!! Once again, u hv saved my day!!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top