Checking for spaces in textbox

I am checking if user has not entered anything in the textbox

on(release)
{
if(input_pname.text=="")
{
trace(“Nothing”);
}
}

Why this code is not working? :frowning: