Suggestion: PBM and PPM image filters
Probably won't be added, but it's definitely an interesting finding...
I've discovered these two image file types: PBM and PPM
These two filters are similar to BMP, but the whole point of the is that you can create those with plain text.
PBM is B&W and PPM is full color.
The most interesting part of it is that it would be possible to generate images during runtime on any platform with it, without a special extension.
For example, an value array could be converted into a visual image.
Thought about these cause I use Surface to generate a temp image that I then load on Active Picture object, but this wouldn't work on mobile cause there's no Surface object for it.
Being able to draw with plain text would be fun and might be useful.
Bug: Get Last Caret Position issues
Seems like Get Last Caret Position can only update either if you click on the text or press up/down. Left or right will not update it, it does move the caret but doesn't update the value, which I think it's a bug.
Interesting enough it also won't update if you press up or down if your cursor is not on top of it, even when the Edit box have focus.
On Android it behaves similarly but has its own issues, hooking a keyboard to my device I noticed that left and right wouldn't move the caret at all. (up/down does move it tho)