Search found 225 matches

by pink
Wed Feb 18, 2026 10:24 pm
Forum: Internet
Topic: libURLDownloadToFile issue
Replies: 8
Views: 431

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: 8
Views: 431

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: 8
Views: 431

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: 14500

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: 14500

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: 9793

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: 9793

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: 9793

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: 9793

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: 26898

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: 26898

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: 4881

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
by pink
Mon Mar 04, 2024 8:07 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: tsneterr: (35) SSL peer handshake failed
Replies: 7
Views: 4881

Re: tsneterr: (35) SSL peer handshake failed

One possible final weird note about this. Still, on my Mac(s) the API calls do not work in Livecode. However, if I save as a standalone on the same Macs, the API call DOES work. So Windows works, curl works, standalone on Windows and Mac work. The only place where I am getting the tsnet error is in ...
by pink
Fri Mar 01, 2024 10:04 pm
Forum: Getting Started with LiveCode - Complete Beginners
Topic: tsneterr: (35) SSL peer handshake failed
Replies: 7
Views: 4881

Re: tsneterr: (35) SSL peer handshake failed

So there is one more wrinkle in this issue, it only occurs on the MacOS.

This error gets thrown on both M1 and Intel Macs (Sonoma 14.3.1), but I get the expected return using Windows.

Before I try and open a ticket, any idea as to why this might be and what could be done?