You are the men... Thanks, it´s working... at least for now.
On 8/31/06, Zeh Fernando <[EMAIL PROTECTED]> wrote:
> I have a listBox with 6 labels ( at the moment) and corresponding data. > The > labels are title of a image and the data is the URL of the image. I'm not sure what the problem actually is since it wasn't stated on the email, but if you mean that going to the next 'page' isn't working, it's because of this line: for (z = valor; z <= 4 ; z++) First it will go to 0-4, then it will try going to 5-4 which obviously won't work. You probably want to do so something like this: for (z = valor; z <= valor + 4; z++) I hope that helps, Zeh _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com
-- ------------------------------------------------ Mário Jorge Icq: 164987050 Msn: [EMAIL PROTECTED] Blog: http://www.beedigital.net/blog ------------------------------------------------ Working at: http://www.netliz.pt _______________________________________________ [email protected] To change your subscription options or search the archive: http://chattyfig.figleaf.com/mailman/listinfo/flashcoders Brought to you by Fig Leaf Software Premier Authorized Adobe Consulting and Training http://www.figleaf.com http://training.figleaf.com

