Hi all,
Firstly, I was so used to "WebStorage" in C2, it was just perfect! Now, shifting to C3, I can no longer use it (can I?), so I'm stuck with this frustrating LocalStorage where I cannot even compare two keys together?
I have made two keys "name" and "team" as the user writes their name and selects the team. This information is stored correctly in each key.
Now, I have a button sprite, On Touched, I want to check if "name is not empty" and "team is not empty", before proceeding to the next layout.
How do I check? In WebStorage, I would have done: Compare two values: "if(Webstorage.Localstorage("name") != "") and (Webstorage.Localstorage("team") != "")
How can I replicate the same here?
Note: I want to 'check' both keys together ONLY upon Touch button.