2
Description of the Project
I’m developing a slide catalog, where there are photos and texts, which are dynamically loaded from urls provided in a list.
Load list displaying this format:
nome_do_item url_da_sua_imagem url_da_sua_descrição
Example:
produtoA http://www.empresa.com.br/img/produtoA.png http://www.empresa.com.br/desc/produtoA.txt
The flash image consists of the following:
- 1° Layer (background): background image;
- 2° Layer (buttons): side rectangle with one button for each item ;
- 3°Layer (mascara_botoes_items): mask so that only the buttons in the center of the lateral rectangle appear;
- 4° Layer (up_down): buttons to lower and raise item buttons;
- 5° Layer (stage): presents the image of the large item and its description below;
Doubts
- For every time you pull the files from the urls and need to clean the library?
- How to dynamically create buttons with the image of the Items, and insert them into a rectangle, which serves as a container, so you can move only the rectangle and not all buttons?
- When clicking an item button, to change the image and stage description, using Actionscript, should I create a frame for each item? or just select a rectangle and a Textfield as the stage and change its value?
If possible, it would also help to know only the Classes I must know for this job.