473,748 Members | 10,737 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

need help adding thumbnails and scroll buttons

anfetienne
424 Contributor
ive been through a tutorial on using array for a gallery and wrote the following code.

i need to include thumbnails with left and right buttons on each side to scroll through the thumbnails

MY CODE
Expand|Select|Wrap|Line Numbers
  1. #include "64516994.txt"
  2.  
  3. this.fadeSpeed = 20;
  4. this.pIndex = 0;
  5.  
  6. loadMovie(this.locVar[0], _root.photo);
  7. MovieClip.prototype.changePhoto = function(d) {
  8.     // make sure pIndex falls within pArray.length
  9.     this.pIndex = (this.pIndex+d)%this.locVar.length;
  10.     if (this.pIndex<0) {
  11.         this.pIndex += this.locVar.length;
  12.     }
  13.     this.onEnterFrame = fadeOut;
  14. };
  15. MovieClip.prototype.fadeOut = function() {
  16.     if (this.photo._alpha>this.fadeSpeed) {
  17.         this.photo._alpha -= this.fadeSpeed;
  18.     } else {
  19.         this.loadPhoto();
  20.     }
  21. };
  22. MovieClip.prototype.loadPhoto = function() {
  23.  
  24.     var p = _root.photo;
  25.  
  26.     p._alpha = 0;
  27.     p.loadMovie(this.locVar[this.pIndex]);
  28.     this.onEnterFrame = loadMeter;
  29. };
  30. MovieClip.prototype.loadMeter = function() {
  31.     var i, l, t;
  32.     l = this.photo.getBytesLoaded();
  33.     t = this.photo.getBytesTotal();
  34.     if (t>0 && t == l) {
  35.         this.onEnterFrame = fadeIn;
  36.     } else {
  37.         trace(l/t);
  38.     }
  39. };
  40. MovieClip.prototype.fadeIn = function() {
  41.     if (this.photo._alpha<100-this.fadeSpeed) {
  42.         this.photo._alpha += this.fadeSpeed;
  43.     } else {
  44.         this.photo._alpha = 100;
  45.         this.onEnterFrame = null;
  46.     }
  47. };
  48. // Actions -----------------------------------------
  49. // these aren't necessary, just an example implementation
  50. this.onKeyDown = function() {
  51.     if (Key.getCode() == Key.LEFT) {
  52.         this.changePhoto(-1);
  53.     } else if (Key.getCode() == Key.RIGHT) {
  54.         this.changePhoto(1);
  55.     }
  56. };
  57. Key.addListener(this);
  58.  
i have attached the fla that i would like my gallery to be similar to....if there are tutorials that can help please do tell.
Attached Files
File Type: zip gallery.zip (19.4 KB, 103 views)
Jul 24 '09 #1
0 1680

Sign in to post your reply or Sign up for a free account.

Similar topics

1
7520
by: Jonathan | last post by:
I'm trying to build a scrollable div with "up" and "down" buttons to replicate the action of a scroll bar. The reason I'm not just using "overflow:auto" is because I want to position the scroll buttons on the LEFT side of the box. Don't ask why, I'm not the client ;) Anyway, I've managed to get this working on some browsers by modifying the scrollTop property of the div object, but it seems that this is actually supposed to be...
2
2438
by: Joshua Moore | last post by:
Is there any way to have buttons scroll up and down on a standard textbox? The touchscreen we're using doesn't work very well on scroll bars, so I'd like to create buttons to immitate the Page Up / Page Down functionality? Thanks in advance, Joshua Moore
12
3489
by: Jim H | last post by:
I have a ListBox hold a list of my custom controls (it's UserControl based control with a couple radio buttons and a checkbox). Everything works and displays the way I expected it to. I can move through the list by dragging the scroll bar and it works fine, but if I try to use the up/down scroll bar buttons or page by clicking above or below the scroll thumb button the list does not scroll. Here's my OnDrawItem for the ListBox: ...
0
1369
by: memanwar | last post by:
Throughout our system we use the DataGrid. One problem we've noticed is that the arrow buttons don't always work with our grids, clicking on them sometimes won't move the columns at all, or may move one or two into view, but not all columns. Using the scroll bars works fine. We use a ClmnsSettings class to set the order of the columns. The user is able to hide certain columns and restore them to their default widths. Any suggestions? We...
2
3566
by: ranger7419 | last post by:
I'm trying to figure out why this script will work in IE 6 but not Firefox, and so I need someone here with a far better grasp on javascript to explain this. Basically, I have a page with several thumbnails. Above these thumbnails I placed a large picture with text next to it to describe what the picture is about. So, when you click a thumb, the large pic AND text change dynamically to reflect the thumbnail -- see...
0
1612
by: nevada17 | last post by:
My goal is to find a way to apply scroll bars across the y axis of about 25 check buttons so that my interface isn't too large. I've read about scroll bars and I realize that's its not possible to add scroll bars to a frame, window, or check buttons while using the Perl TK. I was wondering whether anyone has hand any luck with a work around. I've also read about adding a canvas window to a canvas and having widgets inside then applying a...
4
8536
by: Michael R | last post by:
Hello. I would like to replace the defalt Scroll Bars with custom buttons in a continuous form. I've tryed to make command buttons with the goto next/previous record macros, but those aren't acting in the same way as the scroll bars, for example, the control has to be focused in order for the goto next/previous record macros to work. So, is there a way to compose a buttons that will imitate the scroll bar? Much thanks, Michael.
0
8991
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8830
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9541
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9321
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9247
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8242
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
1
6796
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4874
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
3312
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.