I'm trying to add a Armorbot high score table in my game using actionscript 1.0. Everything except the name submission works (only submits blank names) and I don't know what is causing this. I have relooked at my variables several times and don't believe that is the problem.
You might be able to narrow down the problem to one of two areas in the code:
A) Where the name string is originally given the players name.
B) Where the name is sent to Armorbot.
I would try using the trace function to output the name string. Output the name string just after 'A' and right before 'B'. This would help you narrow down where the problem is.
If your new to actionscript, here's how you call the trace function:
trace(name);
If you still need help, I suggest posting some of the code on here. It would be easier if there was something to look at.
Well, the code looks fine. I have a theory though:
Are you only setting bXlnYW1lX25hbWVfdmFyaWFibGU with _root.myName.text only once at start up? If so, then _root.myName.text is an empty string to start with. So when you call __rankz_send__, you do so without first setting bXlnYW1lX25hbWVfdmFyaWFibGU with an actual name.