Bonjour,

je suis donc en flash MX 2004 et j'ai un fichier style.css pour
mes textfield

good;

mais par exemple


Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
 
.taTitle { 
   font-family: arial; 
   font-size: 12px; 
   font-weight: bold; 
   text-decoration: none; 
   text-shadow:1.em, 1.5em ; 
   font-variant: small-caps ; 
   color: #727272; 
   letter-spacing : 1px ;     
   text-align: left; 
}
ne marche pas ni por text-shadow, ni pour font-variant, ni
pour letter-spacing (plus emmerdant celui-ci)

Quelqu'un pourrait me dire comment faut-il faire??

je l'utilse avec actionscript comme ceci:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
 
 
                     cible[nom_categorie].createTextField("libelle",200+i,0,current_y,_global.WIDTH_VIGNETTE*3,20); 
                     cible[nom_categorie].libelle.border = false; 
                     cible[nom_categorie].libelle.multiline = false; 
                     cible[nom_categorie].libelle.html = true; 
                     cible[nom_categorie].libelle.wordWrap = false; 
                     cible[nom_categorie].libelle.styleSheet = my_ss; 
                     cible[nom_categorie].libelle.htmlText = '<p class="taTitle">' + monNode.attributes.libelle_Fr + "</p>" ;