hi,
I'm clickteam beginner and I started some months ago to make some windows .exe applications.
I was trying to make some HTML5 version of an existing clickteam .exe project but I'm facing the following issues:
1) HTML5 exporter doesn't hide vertical scroll bar in list, it still appears when unchecked, contrary to .exe application
2) Get Object received content isn't the same between .exe application and html5 exported. I was handling to remove the encoding characters for .exe application at start of received content, but its seems HTML5 Get Object received content differs
3) My Get Object receives a list of strings A|B|C|D that is splitted by string parser, then a fast loop iterates on each substring to feed a list. No problem in .exe version :
- .exe resulting list: A, B, C, D
but whenever exported with Steam Clickteam 2.5 (R287.9) + HTML5 exporter :
- Firefox or Edge: resulting list is empty not entering the fast loop
- Chrome or Opera: resulting list comes with each value added 2 times, so A, A, B, B, C, C, D, D
If someone has any idea, please explain me why fast loop behavior is different with HTML5 exporter