hello all

this is swishmax file

i have 2 input text ( user name, pass)

how to set input text hit as you see in web form ( Enter your name )

my code is :


PHP Code:
onSelfEvent (load) {

    
name_txt._text.border true;
    
// how to set border size
    
name_txt._text.background=true ;
    
name_txt._text.backgroundColor 0xB35604;
    
name_txt._text.borderColor 0xFF0000;
    
name_txt._text.textColor 0xCCCCCC;
    
// how to set hint text 
    // ex : name_txt.hintext = "Enter your name";
}
onFrame (1) {
    
  
this.name_txt.onChanged = function(textfield_txt:TextField) {
   
// i cant change textColor to black 
    
stop();
};

swishmax file : https://app.box.com/s/hu01ebqtwkr6widb8pp0q3ujy81wyim8

thanks for help