Code :
- guideClip=_root.guide.liste_items;
- if(!lastheight || i==0)
- {
- thisheight=0;
- }
- else{
- thisheight=lastheight+thisheight;
- }
- trace(thisheight);
- _guideMC=guideClip.attachMovie("item_guide",_itemGuide+i,i,{_x:7,_y:thisheight});
- _guideMC.id=i;
- _global.numItem++;
- //_guideMC.createTextField("titre",_guideMC.getNextHighestDepth(),0,0,100,5);
- //_guideMC.titre.color=0x664433;
- _guideMC.titre.embedFonts=true;
- _guideMC.titre.autoSize=true;
- _guideMC.titre.wordWrap=true;
- //_guideMC.titre.html=true;
- if(noeud.attributes.couleur=="seek" )
- {
- _guideMC.titre.setNewTextFormat(_root.txtformat_seek);
- }
- else
- {
- _guideMC.titre.setNewTextFormat(_root[noeud.attributes.couleur]);
- }
- _guideMC.titre.text=unescape(noeud.attributes.titre);
- lastheight=_guideMC._height;
|