frozenpeas
Technical User
I want a client to be taken to their protected area when they enter their username on my site. I am getting some wacky results.
This produces: 1.#QNAN
This produces: 0
The field is properly defined and referenced. I have tried a bunch of ways, but it seems to me that this second example should work.
Maybe not?
This produces: 1.#QNAN
Code:
on (release, keyPress "<Enter>") {
user = userName;
trace ("[URL unfurl="true"]http://www.domain.com/protected/"+"user");[/URL]
}
This produces: 0
Code:
on (release, keyPress "<Enter>") {
user = userName;
trace ("[URL unfurl="true"]http://www.domain.com/protected/"+user);[/URL]
}
The field is properly defined and referenced. I have tried a bunch of ways, but it seems to me that this second example should work.
Maybe not?