How to make a gallery of images scroll continuously

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.



Go Back   Webforumz.com > Main Forums > Design Your Website > Flash & Multimedia Forum

Notices


Reply
 
LinkBack Thread Tools
  #1 (permalink)  
Old Sep 7th, 2007, 14:54
New Member
Join Date: Sep 2007
Location: Cambridge
Age: 31
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
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... Any help would be much appreciated

Alexandra

Last edited by lamialex; Sep 7th, 2007 at 15:19.
Reply With Quote

Reply

Tags
scrolling, continuously, thumbnails

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On

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


All times are GMT. The time now is 20:16.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43