# Making input text all lower or uppercase

**URL:** https://forum.kirupa.com/t/making-input-text-all-lower-or-uppercase/241520
**Category:** Uncategorized
**Created:** [October 15, 2007, 8:07am UTC](https://forum.kirupa.com/t/making-input-text-all-lower-or-uppercase/241520 "2007-10-15T08:07:59Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![fm47](https://avatars.discourse-cdn.com/v4/letter/f/50afbb/32.png) [@fm47](https://forum.kirupa.com/u/fm47)
#### Post date: [October 15, 2007, 8:07am UTC](https://forum.kirupa.com/t/making-input-text-all-lower-or-uppercase/241520/1 "2007-10-15T08:07:59Z")

</div>

I know it’s a very simple problem, but I is confused -\_-

my input box is called mySearch, and the code is and a button to click on to activate search. There is also an array called searchList

```auto

on (release) {
  var mySeek = mySearch.text;
    for( ii = 0; ii<searchList.length; ii++) {
      if (mySeek = searchList[ii]) {
        trace("Found it!");
      }
    }
}

```

I tried doing mySeek = mySeek.toLowerCase; after var mySeek = mySearch.text;

OOPS!! I looked at the help file again and realized I forgot the () after toLowerCase… that’s why it kept erroring about a function… anyway, I how do I delete a thread such as this?
