Salve, ho un problema con una rotazione di un testo dinamico creato in AS3
inserito in un movieClip di nome "Testo", non fa vedere il testo
Codice PHP:
    var txtTesto:TextField = new TextField();
    var 
format:TextFormat = new TextFormat();
                  
format.font "Verdana";
                  
format.color 0x000000;//0xFFFFFF;
                  
format.size 10;
    
//txtTesto.embedFonts = false;
    //txtTesto.antiAliasType = "ADVANCED"
    
txtTesto.defaultTextFormat format;
    
txtTesto.text "ciao come stai?"
    
txtTesto.autoSize TextFieldAutoSize.LEFT;
    
txtTesto.multiline false;
    
txtTesto.selectable false;
    
txtTesto.5;
    
testo.addChild(txtTesto);
    
testo.name "testo";
    var 
myXSposta testo.height;
    
//testo.y = sizeH - testo.height;
    
testo.myXSposta;
    
testo.rotation 0.5
ho incorporato un campo di testo di appoggio all'interno dello stage, ma il risultato è lo stesso.
Ho letto dell'antiAliasType e dell'embedFonts ma non è che abbia trovato la soluzione

grazie