Here´s my prob:

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.

And at my stage i have a movieClip with 5 placeHolders and 5 text fields.
The idea is to show the image and title on those clips.

At the stage i also have a button to browse the listBox to display the
thumbnails at the clips...

So that at the start i have the first 5 labels and 5 images displayed at the
main clip and if i click forward i will get the next five...

This is the code i have so far...

function listaSet1 (valor)
{
   for (z = valor; z <= 4 ; z++)
   {
       foto = _root.categoria1.lista.getItemAt (z).data;
       tema = _root.categoria1.lista.getItemAt (z).label;
       if (foto)
       {
           _root.categoria1["blindBtn" + (z + 1)]._visible = false;
           _root.categoria1["foto" + (z)].loadMovie (foto);
       }
       if (tema)
       {
           _root.categoria1["tema" + (z)].text = tema;
       }
   }
}
valor=0;
listaSet1 (valor);

Thanks for any help,



--
------------------------------------------------
Mário Jorge
Icq: 164987050
Msn: [EMAIL PROTECTED]
Blog: http://www.beedigital.net/blog
------------------------------------------------
_______________________________________________
Flashcoders@chattyfig.figleaf.com
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

Reply via email to