Search found 5 matches
- Wed Sep 29, 2021 9:07 pm
- Forum: Building Externals
- Topic: JSON doesn't work when app compiled
- Replies: 5
- Views: 17124
Re: JSON doesn't work when app compiled
Next issue: manually include mergeJSON library. JSON operations are great. But GET and POST commands failed
- Tue Sep 28, 2021 8:24 pm
- Forum: Building Externals
- Topic: JSON doesn't work when app compiled
- Replies: 5
- Views: 17124
Re: JSON doesn't work when app compiled
Thank you for your answers!
- Tue Sep 28, 2021 1:28 pm
- Forum: Building Externals
- Topic: JSON doesn't work when app compiled
- Replies: 5
- Views: 17124
JSON doesn't work when app compiled
Hello guyz!
When i using "JSONtoArray" and "ArrayToJSON" in LiveCode shell - everything works great. But when i made an EXE-file - convertation from JSON to Array failed. What it could be? Please help
When i using "JSONtoArray" and "ArrayToJSON" in LiveCode shell - everything works great. But when i made an EXE-file - convertation from JSON to Array failed. What it could be? Please help
- Tue Oct 08, 2019 6:55 pm
- Forum: Windows
- Topic: Datagram memory issue
- Replies: 8
- Views: 8358
Re: Datagram memory issue
Guys, i'm really need to solve this issue... Why the memory consumption is growing up? global cedrPort global lastPacket on Listen put "59876" into cedrPort accept datagram connections on port cedrPort with message gotData end Listen on gotData tIP,nowData ... ... do some things with nowData ... ......
- Tue Nov 13, 2018 5:10 pm
- Forum: Windows
- Topic: Datagram memory issue
- Replies: 8
- Views: 8358
Datagram memory issue
Hello everyone! I have a trouble with memory consumption. My app is using UDP: "accept datagram connections on port 6250 with message "gotData" Other app sends me UDP-datagrams about 20-30 times a second. it is OSC-messages. I receive them, parse and perform some actions depending of what was inside...