Search found 5 matches

by isabellspivey
Mon Mar 30, 2026 5:53 am
Forum: Internet
Topic: Using Digital Ocean Spaces and/or AWS S3 in Livecode
Replies: 1
Views: 31524

Re: Using Digital Ocean Spaces and/or AWS S3 in Livecode

Hello,
Each HMAC step must use the binary output of the previous step, not hex.

Example (signing key chain):

put "AWS4" & tSecretKey into tKey
put hash(tDate, tKey, "SHA256") into tDateKey
put hash(tRegion, tDateKey, "SHA256") into tRegionKey
put hash("s3", tRegionKey, "SHA256") into tServiceKey ...
by isabellspivey
Mon Mar 09, 2026 7:55 am
Forum: Internet
Topic: Issue with parsing the JSON in livecode
Replies: 5
Views: 19659

Re: Issue with parsing the JSON in livecode


I would suggest setting a breakpoint and inspecting what is in your array. Then you'll see the structure of the array created:
Screenshot 2025-08-18 at 10. 46. 20. png
Instead of tDataArray["email"], you need to reference this as tDataArray["data"][1]["email"]


Thanks for your suggestion. I got ...
by isabellspivey
Mon Mar 02, 2026 4:50 am
Forum: Talking LiveCode
Topic: tsNetCustom and HTTP/0.9 error
Replies: 1
Views: 12605

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 ...
by isabellspivey
Mon Mar 02, 2026 4:46 am
Forum: Getting Started with LiveCode - Complete Beginners
Topic: Quick Code Question
Replies: 3
Views: 7995

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: 5
Views: 19659

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 ...