Search found 227 matches

by pink
Mon Mar 02, 2026 12:02 am
Forum: Internet
Topic: libURLDownloadToFile issue
Replies: 10
Views: 2979

Re: libURLDownloadToFile issue

Switched to tsNetGetFile and now I get my downloads reliably.
by pink
Fri Feb 27, 2026 12:03 am
Forum: Internet
Topic: libURLDownloadToFile issue
Replies: 10
Views: 2979

Re: libURLDownloadToFile issue

bn wrote:
Fri Feb 20, 2026 10:58 am
Hi Greg,
Did you solve the problem? If so what was the problem?
Kind regards
Bernd
The problem seems to repeat, and it is usually solved by restarting Livecode.
by pink
Wed Feb 18, 2026 10:24 pm
Forum: Internet
Topic: libURLDownloadToFile issue
Replies: 10
Views: 2979

Re: libURLDownloadToFile issue

I didn't get anything with go url, no files were saved or downloaded, and it didn't trigger DownloadComplete I wonder why you are using libURL when you could use go url "https://unmixr.s3.amazonaws.com/a/167eb769-a1b9-47ac-b7ae-86ae6e5af3ed.mp3" ? Possibly like this: command mp.downloadFile put "htt...
by pink
Wed Feb 18, 2026 7:52 pm
Forum: Internet
Topic: libURLDownloadToFile issue
Replies: 10
Views: 2979

Re: libURLDownloadToFile issue

Hi Klaus! I just get: File failed to download. error Hi Greg, what is in URLstatus at that time? on DownloadComplete pUrl, pStatus if pStatus = "Downloaded" then answer information "File download!" else ## Check it right here: answer warning "File failed to download." & CR & pStatus end if unload ur...
by pink
Wed Feb 18, 2026 5:57 pm
Forum: Internet
Topic: libURLDownloadToFile issue
Replies: 10
Views: 2979

libURLDownloadToFile issue

So I have a hiccup I can't seem to fix. I am trying to download a file (mp3). So 2 things: 1. I can test out the URL in a browser and the file downloads. 2. Livecode does have access to my Downloads folder (using MacOS). I keep getting the failure message, and I am not sure if I am just missing some...
by pink
Thu Feb 20, 2025 5:08 am
Forum: Internet
Topic: tsneterr: (28) Operation too slow
Replies: 2
Views: 15406

Re: tsneterr: (28) Operation too slow

Turned out to be something else entirely (didn't like my SMTP settings on the backend)
by pink
Mon Feb 17, 2025 11:22 pm
Forum: Internet
Topic: tsneterr: (28) Operation too slow
Replies: 2
Views: 15406

tsneterr: (28) Operation too slow

I am using the API maker "Twidget" I am having one problem with one specific endpoint: "forgot-password" tData is just a JSON with an email address: {"email":"123@abc.com"} tHeader is "Content-type: application/json" tURL is https://somesecretcodehere.twidget.io/auth/forgot-password I am using the f...
by pink
Mon Jul 29, 2024 1:52 am
Forum: Talking LiveCode
Topic: PolyList and Image data
Replies: 6
Views: 9915

Re: PolyList and Image data

thanks Bernd, I wouldn't have thought of that

Also, just so it is listed somewhere, the size of the item/column/row DOES NOT have to be the same as the image being put into it.

The content fit of the item (fill, cover, or contain) will fit the image regardless of the size of the original.
by pink
Sun Jul 28, 2024 9:18 pm
Forum: Talking LiveCode
Topic: PolyList and Image data
Replies: 6
Views: 9915

Re: PolyList and Image data

also trying to fool around with the PolyGrid with the same results
by pink
Sun Jul 28, 2024 9:07 pm
Forum: Talking LiveCode
Topic: PolyList and Image data
Replies: 6
Views: 9915

Re: PolyList and Image data

So I added 128x128 images to the stack, and set the size of the item (Columns tab) to 128x128, and the item height of the item to 128 and the width of the column to 128.

Still no luck.
by pink
Sun Jul 28, 2024 5:41 pm
Forum: Talking LiveCode
Topic: PolyList and Image data
Replies: 6
Views: 9915

PolyList and Image data

I am trying to use the PolyList widget, however I cannot get the image-data to display. This is very simple setup... I have a PolyList that only has the item "image" which is set to the content type of "image-data". There are 2 images in the card that I am testing with. I have the following button s...
by pink
Sun Jun 16, 2024 12:59 pm
Forum: Internet
Topic: Delete URL with data (and Patch)
Replies: 3
Views: 27940

Re: Delete URL with data (and Patch)

The command I've been trying to play with is tsNetCustomUploadSync put "APIkey: " & pAPIkey & cr into tHeader put "Content-Type: application/json" after tHeader set the httpHeaders to tHeader put tsNetCustomUploadSync(tTableURL, "DELETE", tHeader, tJSON, rOutHeaders, rResult, rBytes) into tResult I ...
by pink
Fri Jun 14, 2024 5:46 pm
Forum: Internet
Topic: Delete URL with data (and Patch)
Replies: 3
Views: 27940

Delete URL with data (and Patch)

For an API I am working with, data needs to be sent with the delete command. I've been running rumming through documentation and can't seem to find my help. See below as an example. curl --request DELETE 'https://api.tabluar.io/v1/public/tabular/xyzzy/data' \ --header 'ApiKey: <YourAPIKey>' \ --head...
by pink
Mon Mar 04, 2024 10:23 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: tsneterr: (35) SSL peer handshake failed
Replies: 7
Views: 5003

Re: tsneterr: (35) SSL peer handshake failed

Went through all of my extensions and plugins. It looks as though the problem was the PowerDebug plugin. Honestly forgot it was in there.

I am finally up and running.

Thanks again Klaus and Bernd