Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread Bob Sneidar via use-livecode
I suppose everything networking uses sockets, but these are protocols with standardized ways of establishing the connection and securing it. I was thinking of a custom client server file transfer method, but whether or not it could work for Jacque, I don’t know. Bob S On Mar 24, 2021, at 4:53

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread Richard Gaskin via use-livecode
I don't understand. FTP, SFTP, FTPS, scp, and rsync all use sockets. Are you suggesting Jacque write her own file upload protocol? -- Richard Gaskin Fourth World Systems Bob Sneidar wrote: > Or sockets. > > Bob S > > > On Mar 24, 2021, at 4:22 PM, Richard Gaskin wrote: > >> FTP is a great

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread Richard Gaskin via use-livecode
In this discussion of personal plugins run on macOS, a macOS solution seemed appropriate. And with Windows 10, Microsoft is now embracing Linux in its Windows Subsystem for Linux, so Win folk can enjoy industry standard tooling on all OSes: https://docs.microsoft.com/en-us/learn/modules/get-

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread Bob Sneidar via use-livecode
Or sockets. Bob S On Mar 24, 2021, at 4:22 PM, Richard Gaskin via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: FTP is a great protocol for open-ended traversal of remote file repositories. For just transferring a file, scp or rsync with shared keys is a one-liner via shell(), a

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
- Matthias Rebbe Life Is Too Short For Boring Code > Am 25.03.2021 um 00:22 schrieb Richard Gaskin via use-livecode > : > > FTP is a great protocol for open-ended traversal of remote file repositories. > > For just transferring a file, scp or rsync with shared keys is a one-liner > via shell()

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread Richard Gaskin via use-livecode
FTP is a great protocol for open-ended traversal of remote file repositories. For just transferring a file, scp or rsync with shared keys is a one-liner via shell(), and will be faster in addition to being simpler to code. -- Richard Gaskin Fourth World Systems matthias_livecode_150811

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
what i forgot my previous overview >>> Server scheme use sslis protocol >>> ftp:// false ftp >>> ftp://. true ftp over SSL explicit >>> ftps:// true

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
I've just had a quick look at the documentation of Fetch. It seems Fetch uses ftps:// for both FTPeS (FTP over SSL explicit) and FTPS (FTP over SSL implicit). But it depends on the port number you have entered. If you keep port 21 then FTPS (FTP over SSL implicit) is used. If you set the port

Re: Problem with Script Editor in LC 9.6.2 (rc3)

2021-03-24 Thread Bob Sneidar via use-livecode
Are you sure you do not have a mouseUp handler somewhere in a frontScript? Bob S > On Mar 24, 2021, at 2:58 PM, HENRY LOWE via use-livecode > wrote: > > Thanks Richard. I turned off the line number option and the problem still > occurs. I can reproduce this with any script that extend beyon

Re: Problem with Script Editor in LC 9.6.2 (rc3)

2021-03-24 Thread Bob Sneidar via use-livecode
Same LC version but not Big Sur. I was able to scroll properly while selecting text. Bob S > On Mar 24, 2021, at 2:05 PM, HENRY LOWE via use-livecode > wrote: > > Since updating to LC 9.6.2 (rc3) on a 2019 iMac running Mac OS Big Sur 11.2.3 > I have been experiencing the following intermit

Re: Problem with Script Editor in LC 9.6.2 (rc3)

2021-03-24 Thread HENRY LOWE via use-livecode
Thanks Matthias. I am not using any 3rd party text tools or plug-ins. If anyone else can confirm this issue I will submit a bug report. Henry > On Mar 24, 2021, at 3:17 PM, matthias rebbe via use-livecode > wrote: > > Henry, > > i had a similar problem already with previous LC releases. In m

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread J. Landman Gay via use-livecode
On 3/24/21 4:02 PM, matthias rebbe via use-livecode wrote: Server scheme use sslis protocol ftp:// false ftp ftp://. true ftp over SSL explicit ftps:// true

Re: Problem with Script Editor in LC 9.6.2 (rc3)

2021-03-24 Thread matthias rebbe via use-livecode
Henry, i had a similar problem already with previous LC releases. In my case a 3rd party tool called Popclip was the culprit. Popclip is automatically activated as soon as some text is selected. So when i selected text in the editor some strange things happened, for example the whole text was s

Re: Problem with Script Editor in LC 9.6.2 (rc3)

2021-03-24 Thread HENRY LOWE via use-livecode
Thanks Richard. I turned off the line number option and the problem still occurs. I can reproduce this with any script that extend beyond the bottom of the script editor pane. Select the first line of a script and then (holding the mouse button down) continue dragging down to select additional

Re: Problem with Script Editor in LC 9.6.2 (rc3)

2021-03-24 Thread Richard Gaskin via use-livecode
Henry Lowe wrote: > If I select text in the LC Script Editor and then drag down to select > additional text (e.g. I want to select an entire handler), the editor > starts to autoscroll and does not stop until it reaches the end of the > script text. Nothing I do stops the scrolling and text selec

Set and get dgData and dgText delay

2021-03-24 Thread Pi Digital via use-livecode
Hi All This has been a bit of a mind bender, mainly because in a test stack it works just fine, but... Has anyone ever had problems with something like this: on myHandle — ...some code Set the dgData of grp “myDG” to tDataA Put the dgText of grp “myDG” into tDataS — tDataS returns empty — proce

Problem with Script Editor in LC 9.6.2 (rc3)

2021-03-24 Thread HENRY LOWE via use-livecode
Since updating to LC 9.6.2 (rc3) on a 2019 iMac running Mac OS Big Sur 11.2.3 I have been experiencing the following intermittent issue: If I select text in the LC Script Editor and then drag down to select additional text (e.g. I want to select an entire handler), the editor starts to autoscro

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
 - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.03.2021 um 21:47 schrieb J. Landman Gay via use-livecode > : > > On 3/24/21 3:00 PM, matthias rebbe via use-livecode wrote: >> tsNET returns the 'standard' curl error codes. I have bookmarked the >> followingurl to get help, if i

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread J. Landman Gay via use-livecode
On 3/24/21 3:00 PM, matthias rebbe via use-livecode wrote: tsNET returns the 'standard' curl error codes. I have bookmarked the followingurl to get help, if i got stuck with tsNET and its error code. https://curl.se/libcurl/c/libcurl-errors.html Thanks, that will be convenient. TSNet also gav

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
Jacque, tsNET returns the 'standard' curl error codes. I have bookmarked the followingurl to get help, if i got stuck with tsNET and its error code. https://curl.se/libcurl/c/libcurl-errors.html - Matthias Rebbe Life Is Too Short For Boring Code > Am 24.03.2021 um 20:39 schrieb J. Landman G

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread J. Landman Gay via use-livecode
On 3/24/21 2:12 PM, J. Landman Gay via use-livecode wrote: My server didn't like it and returned TSNet error 60. I fixed it! The issue was that the certificate name didn't match my domain name since I'm on a shared host. I had to set up Fetch to always trust the certificate anyway. As the Wi

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread J. Landman Gay via use-livecode
On 3/23/21 10:53 PM, scott--- via use-livecode wrote: Scott: I followed the lesson here: My server didn't like it and returned TSNet error 60. Andre: After TSNet failed, I did try to use A

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread J. Landman Gay via use-livecode
On 3/24/21 12:11 PM, Mark Wieder via use-livecode wrote: my code just seems happier in general these days. To paraphrase: If code ain't happy, ain't nobody happy.* *For our non-US friends, it's an American dialect thing, originally: "If mama ain't happy, ain't nobody happy." And you can beli

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread Mark Wieder via use-livecode
On 3/24/21 8:19 AM, Bob Sneidar via use-livecode wrote: The question I always ask myself is, will I ever benefit from this again? Additionally, can anyone else ever benefit from this? I think there may be other questions in play as well. Will I learn anything from doing this? Will I have fun e

xAPI in LiveCode Week #8 Zoom Meeting, Session #1

2021-03-24 Thread Brian K. Duck via use-livecode
Today’s meeting will begin at 3:30 PM EDT in zoom: Topic: xAPI in LiveCode Week #8 Zoom Meeting, Session #1 Time: Mar 24, 2021 03:30 PM America/Detroit Join Zoom Meeting https://us04web.zoom.us/j/8757225479?pwd=UHRDY0VLQUZGamJxeGxCR1BjVEd2dz09 Meeting ID: 875 722 5479 Passcode: 5xer2f Thanks f

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread Bob Sneidar via use-livecode
The question I always ask myself is, will I ever benefit from this again? Additionally, can anyone else ever benefit from this? Bob S On Mar 23, 2021, at 7:32 PM, J. Landman Gay via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: I read it today too and it was inspiring, which was

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread Andre Garzia via use-livecode
Folks, Thanks a lot for the kind words, it really made my day! <3 Mark, I guarantee that I learned more from you than you from me. Scott, exploding tea infusers are quite dangerous. We managed to get a refund but I’m still terrified of what happened. As for coffee, I’m deep into coffee stuff,

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
"Sometimes 3 times, because have to projects i create for Win/Mac/Linux and that several times a month." meant to be Sometimes 3 times, because i have two projects i create for Win/Mac/Linux several times a month and the tasks has to be done for each standalone and platform. - Matthias Reb

Re: [ANN] This Week in LiveCode 259

2021-03-24 Thread matthias rebbe via use-livecode
Jacque, > Am 24.03.2021 um 03:32 schrieb J. Landman Gay via use-livecode > : > > I read it today too and it was inspiring, which was the whole point really. A > couple of the footnotes made me laugh. I already make a lot of my own tools > and plugins but I did get some ideas from the book. >