I'm creating my own system of fonts for a project I'm working on. The way it works is that it retrieves the ASCII value of a letter/symbol, which then points to the corresponding X-index of an array of that value, telling it what graphic to use. The problem is that I've been using the String Parser Object for this and it's worked fine until I decided to add some fancy letters like Å, Ä, Ö, Ü etc... and it seems that the String Parser Object doesn't have any support for the extended ASCII character codes, either that or it's a bug, as it returns the wrong values for those particular symbols. Anyone know which it is? If it's a bug I could just make a bug report and wait for it to be fixed.
As alternatives, I tried the ASCII Character Object which works fine, but it's unfortunately not cross-platform. My last resort is to simply add extra events for any symbols that require it but I'd prefer not to. Any ideas?