On my iPad ATM.
Quote: "When I move my character; For example - Left the User can still press any other key which involves multiple sprite animations occurring."
As they can both be equal to 1 at the same time, you'll have to find a way of working out which one was pressed first and to somehow 'disable' the other. I'm not going to simply hand over the exact code you need but more or less put you on the right track.
Depending on how you want this to work, you can make use of checking for two conditions instead of one. E.g
If leftkey() = 1 and rightkey() = 0
do stuff
Endif
You may even have to create some extra variables e.g left_key_allowed to enable and disable the keys. How do you use them? I'll let you have a go at working this out first. Get those brain cells going.
Quote: "Another problem I'm having is the character names. I know Spacekey() and the arrow keys, but I can't find any information on the letters and numbers."
Pretty straight forward answer for this one. Look into key states (there is even a key state helper in the latest IDE).