# If - else condition

**URL:** https://forum.kirupa.com/t/if-else-condition/293680
**Category:** Uncategorized
**Created:** [August 1, 2009, 2:03pm UTC](https://forum.kirupa.com/t/if-else-condition/293680 "2009-08-01T14:03:39Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![vaidya](https://avatars.discourse-cdn.com/v4/letter/v/5e9695/32.png) [@vaidya](https://forum.kirupa.com/u/vaidya)
#### Post date: [August 1, 2009, 2:03pm UTC](https://forum.kirupa.com/t/if-else-condition/293680/1 "2009-08-01T14:03:39Z")

</div>

Hi,

In the following code the if statement work where as else doesnt take Should I need to add text input for displaying else message.

If a user type small caps it should show the message which is in the else statement but even if i type the small caps its showing the message of if statement.

on (press) {  
var texta = name.text;  
if (texta.restrict = “A-Z 0-9”) {  
message.text = “sorry! caps and num not allowed”;  
cirlcea.gotoAndStop(“red”);  
}  
else {

message.text = “ur name is” +texta;  
cirlcea.gotoAndStop(“green”);  
}

}

Regards  
Vaidyanath
