A Flash Developer Resource Site

Results 1 to 2 of 2

Thread: [mx04]

  1. #1
    Junior Member
    Join Date
    Aug 2008
    Posts
    12

    Question [mx04]

    I have a website that used to have a gallery page of photos. Now I have upgraded the site I have sorted through the photoos and made swf slideshows. I have eight different swf files but want to activate them through one page. I want thumbnails of the slideshows on the left of the page giving a breif description of the slideshow but when either mousover or on click I want the swf file to play on the right side of the page. If you want to see an example of what I want to see I have found a website but theirs is in java script. I want the same look but want to see the thumbnails and I want to do this in flash not java/script. Can anyone help. the URL to look at is.
    http://www.millcraftconservatories.co.uk/portfolio.asp.
    thanks

  2. #2
    Member
    Join Date
    May 2004
    Posts
    60
    There are a number of ways to do this.

    You can set up your pictures on the left as movieclips (name them pic1_mc, pic2_mc, etc) Then place your slideshows where you want them (make sure they're movieclips (slideshow1_mc, slideshow2_mc, etc)

    Then on the first frame....

    Code:
    //Make slideshows invisible
    slideshow1_mc._visible = false
    
    //when pic is clicked show slideshow
    pic1_mc.onRelease = function(){
    	slideshow1_mc._visible = true;
    }

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  




Click Here to Expand Forum to Full Width

HTML5 Development Center