# Flash image slideshow

**URL:** https://forum.kirupa.com/t/flash-image-slideshow/321683
**Category:** Uncategorized
**Created:** [April 27, 2011, 1:30pm UTC](https://forum.kirupa.com/t/flash-image-slideshow/321683 "2011-04-27T13:30:11Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![unz](https://avatars.discourse-cdn.com/v4/letter/u/5f9b8f/32.png) [@unz](https://forum.kirupa.com/u/unz)
#### Post date: [April 27, 2011, 1:30pm UTC](https://forum.kirupa.com/t/flash-image-slideshow/321683/1 "2011-04-27T13:30:11Z")

</div>

Does anyone have a slide show tutorial or example you would recommend?

I have tried unsuccessfully to complete a tutorial from the Layers Magazine at  
[http://www.layersmagazine.com/flash-...e-gallery.html](http://www.layersmagazine.com/flash-...e-gallery.html)

This is a fairly simple slideshow that is supposed to click forward or back and also link to enlarge or go to a website. However, the swap bitmap feature and the next and back buttons do not change slides. Here is the ActionScript 2.0 that is used:

stop();

//next button  
next\_btn.onPress=function(){  
if(mc\_content.\_currentframe==mc\_content.\_totalframes){  
mc\_content.gotoAndStop(1)  
}else{  
mc\_content.nextFrame()  
}  
}

//last button  
last\_btn.onPress=function(){  
if(mc\_content.\_currentframe==1){  
mc\_content.gotoAndStop(mc\_content.\_totalframes)  
}else{  
mc\_content.prevFrame()  
}  
}

Thank you
