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 derfloh on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Flash MX Movie buttons problems

Status
Not open for further replies.

aph

Technical User
Joined
Jul 8, 2000
Messages
134
Location
GB
Ok I have a web page HTML with the content as a SWF in this content I've 6 small thumb nail images for each one I've the following 1pic , 2pic etc....

on (press) {
loadMovieNum("Projects1_1pic.swf" , 1 );
}

Projects1_1pic.swf contains a larger image of the thumb nail with a grey border around it. On the Projects1_ipic.swf I've converted it(larger)image as a button

_x = 240 ; _y = 100;
onClick="self.close()"

the problem is while mousing over and clicking on it. It will not close the Projects1_1pic.swf

any one any ideas how to sort this out I did have it working for one image but copy and pasted the other images to the other _pic swf and it stopped working. Not sure what I've done wrong.

Any advice would be of great help

andy
BTW this bit is working fine (_x = 240 ; _y = 100;) just want to know why it will not close????
 
Seems to me you should be using...

on(release){
unloadMovieNum(1);
}
 
cheers works a treat
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top