Search found 3 matches

by isabellspivey
Mon Mar 02, 2026 4:50 am
Forum: Talking LiveCode
Topic: tsNetCustom and HTTP/0.9 error
Replies: 1
Views: 5275

Re: tsNetCustom and HTTP/0 .9 error

Hello, you’re getting that error because tsNet is treating the connection as HTTP, but your device is returning raw TCP text (ACK + CRCR) — not an HTTP response. You do not need to send headers. Instead of tsNetCustom, use raw socket mode: - tsNetOpen - tsNetWrite - Handle "data" in the callback Exa...
by isabellspivey
Mon Mar 02, 2026 4:46 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Quick Code Question
Replies: 1
Views: 610

Quick Code Question

Hello,
How can I stop the application from proceeding until a field contains a minimum number of characters? I’m at the end of a kiosk workflow where patients swipe their cards, and I need the script to remain idle until the required data has been entered.
by isabellspivey
Mon Aug 18, 2025 3:28 am
Forum: Internet
Topic: Issue with parsing the JSON in livecode
Replies: 4
Views: 9559

Issue with parsing the JSON in livecode

Hello, I'm trying to create a simple mobile app that queries an API and parses the response to display certain values. The mobile has 2 fields viz: 1. Button to query the api 2. Large text box to display the contents In my livecode stack, I've the following inclusions: 1. JSON Library 2. mergJSON 3....