Jump to content
Fórum Script Brasil
  • 0

LETRAS MAIÚSCULA


walter2161

Question

bom dia a todos.

eu tenho este actionscript:

function onKeyDown(){

if(Key.isDown(Key.ENTER)){

this.output_txt.text += ""+digite+" disse: ";

this.output_txt.text += input_txt.text + newline

this.output_txt.text += ""+ele+" disse: "

this.findAnswer(this.input_txt.text);

this.output_txt.text += ""+ newline

this.output_txt.scroll = this.output_txt.maxscroll;

this.input_txt.text = "";

Selection.setFocus(this.input_txt);

}

}

e preciso que quando o texto transforme em letras maiúsculas antes de chamar a função em XML.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

Então companheiro!

Ficaria assim?

function onKeyDown(){

if(Key.isDown(Key.ENTER)){

this.output_txt.text += ""+digite+" disse: ";

this.output_txt.text += input_txt.text + newline

this.output_txt.text += ""+ele+" disse: "

this.findAnswer(this.input_txt.text);

this.output_txt.text += ""+ newline

this.output_txt.scroll = this.output_txt.maxscroll;

this.input_txt.text = "";

digite.toUpperCase();

Selection.setFocus(this.input_txt);

não esta funcionando!!!

Eu sou muito chuco em programação.

}

}

Link to comment
Share on other sites

  • 0

Tente assim:

function onKeyDown(){
 if(Key.isDown(Key.ENTER)){
 this.output_txt.text += ""+digite.toUpperCase()+" disse: "; 
this.output_txt.text += input_txt.text + newline 
this.output_txt.text += ""+ele+" disse: " 
this.findAnswer(this.input_txt.text);
 this.output_txt.text += ""+ newline 
this.output_txt.scroll = this.output_txt.maxscroll;
 this.input_txt.text = ""; 
Selection.setFocus(this.input_txt);

 } 
}

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.



  • Forum Statistics

    • Total Topics
      152.2k
    • Total Posts
      652k
×
×
  • Create New...