This is a late response to this thread but it seems relevant.. so with web storage you could do a "compare two values" system event. in web storage you could do this:
WebStorage.LocalValue("highscoreeasykey") which was nice because it grabbed the specific value by identifying the key..
However if I try to do the same thing with LocalStorage, I can't reference a specific key. I can only do something like
LocalStorage.ItemValue
I've used localstorage successfully in other projects, but I never had to do a comparison. This this case I'm trying to compare the stored high score value and if it's great than the existing value, overwrite the other.
Maybe it's expected that I have some local variable instead? I could see that potentially working, but it feels like it would just be adding more steps to the process (I believe and hope) unnecessarily.
here is a picture of them side by side.. i need to understand how to be able to do a value compare in localstorage which is missing the stuff I used when doing webstorage.
Thanks,
Caleb