如何使用 AS3 清除焦点文本字段?

发布于 2024-09-25 07:53:44 字数 93 浏览 1 评论 0原文

主题问题已经说明了一切。

我在舞台上有一个输入文本字段,在用户输入任何内容之前,其中有一些描述文本的文本。现在,当用户聚焦(单击)该字段时,如何清除此文本?

The theme question sais it all.

I have an input text-field on the stage that has some text describing text in it before the user types anything. Now, how do I clear this text when the user focuses on (clicks) the field?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(4

小女人ら 2024-10-02 07:53:44

侦听文本字段上的 FocusEvent.FOCUS_IN 事件,并在触发后将其清除。
http://www.adobe.com/livedocs/flash /9.0/ActionScriptLangRefV3/flash/events/FocusEvent.html

Listen for the FocusEvent.FOCUS_IN event on your textfield and clear it once that fires.
http://www.adobe.com/livedocs/flash/9.0/ActionScriptLangRefV3/flash/events/FocusEvent.html

君勿笑 2024-10-02 07:53:44

试试这个代码

  txtMessage.addEventListener(FocusEvent.FOCUS_IN, clearBox);
  function textclearBox(FocusEvent)
   {
    txtUser.text="";//To Clear the Text Box
   }

Try this Code

  txtMessage.addEventListener(FocusEvent.FOCUS_IN, clearBox);
  function textclearBox(FocusEvent)
   {
    txtUser.text="";//To Clear the Text Box
   }
丘比特射中我 2024-10-02 07:53:44

这应该可以做到。 (虽然,我的AS3有点生锈了。)

textbox.addEventListener(FocusEvent.FOCUS_IN, clearBox);

function clearBox(e:FocusEvent){
  textbox.setText("");
}

This should do it. (Although, my AS3 is a bit rusty.)

textbox.addEventListener(FocusEvent.FOCUS_IN, clearBox);

function clearBox(e:FocusEvent){
  textbox.setText("");
}
小兔几 2024-10-02 07:53:44

重要:用户名是MovieClip,并且该movieClip的内部有一个名称为txt的TextField。

userName.addEventListener(FocusEvent.FOCUS_IN, clearBox);
function clearBox(evt:FocusEvent):void
{
    userName.text="";
}

important: userName is MovieClip and this movieClip's inside ı have TextField which name is txt.

userName.addEventListener(FocusEvent.FOCUS_IN, clearBox);
function clearBox(evt:FocusEvent):void
{
    userName.text="";
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文