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

SWF on screen placement

Status
Not open for further replies.

aph

Technical User
Jul 8, 2000
134
GB
Hi I have a gallery page that when clicked on thumb nails (images as buttons)it opens the full size image how do I open the images im the middle of the screen.

this is how I'm opening the larger images (which are within a swf).

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

I'm using Flash 8 BTW

cheers for any help
 
Just use a blank MC instance named image_mc, position on the stage as desired and use:

thumb1.onRelease = function() {
image_mc.loadMovie("animage.png");
}
 
not sure what a black MC instance is?
But how would I set the X Y placment of the SWF?
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top