This is a discussion on "How to make a gallery of images scroll continuously" within the Flash & Multimedia Forum section. This forum, and the thread "How to make a gallery of images scroll continuously are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
How to make a gallery of images scroll continuously
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
How to make a gallery of images scrolling continuously
Hello all,
I have created this animation with FLASH CS3 : http://thecrowshow.co.uk/scrollingthumbnails.swf I used the tutorial Scrolling Thumbnail Panel by Lee Brimelow : http://library.creativecow.net/artic...nail_panel.php It's very simple, each image is a Button and all the images are placed in a Movie Clip called panel. The script is : panel.onRollOver = panelOver; function panelOver() { this.onEnterFrame = scrollPanel; delete this.onRollOver; } var b = stoke.getBounds(_root); function scrollPanel() { if(_xmouse<b.xMin || _xmouse>b.xMax || _ymouse<b.yMin || _ymouse>b.yMax) { this.onRollOver = panelOver; delete this.onEnterFrame; } if (panel._x >= -62) { panel._x = -62 } if (panel._x <= -1277.7) { panel._x = -1277.7 } var xdist = _xmouse - 490; panel._x += -xdist / 7; } If you want to have a look at my fla, it's here : http://thecrowshow.co.uk/gallery.fla Now, I'd like the pictures to scroll continuously when the mouse is not over, same effect as here : http://blog.wildform.com/2007/05/5_c..._scroller.html But it seems rather difficult to add this effect to the method developed by Lee Brimelow. I've tried for hours now... Alexandra Last edited by lamialex; Sep 7th, 2007 at 15:19. |
|
|
![]() |
| Tags |
| scrolling, continuously, thumbnails |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| Created Flash Photo Gallery in PhotoShop. How can I put this Gallery INSIDE a page?? | BlackReef | Flash & Multimedia Forum | 3 | Dec 13th, 2007 18:30 |
| Can someone make these images transparent? | charlie019 | Graphics and 3D | 1 | Aug 6th, 2007 23:29 |
| How does one make thumbnail images? | Picard | Website Planning | 3 | Dec 29th, 2006 13:34 |
| Scroll button to scroll flash page | helpmhost | Flash & Multimedia Forum | 3 | Apr 26th, 2006 11:30 |
| Scroll Bar | sho | Flash & Multimedia Forum | 1 | Oct 30th, 2005 13:09 |