Re: Solved: Writing to Mac Application Support folder

2023-07-14 Thread Bob Sneidar via use-livecode
I don’t think there is any way past this. Ultimately the permissions to write to any path must be authorized by the current user agent. If they accept, well and good. If not, there cannot be any way around it. Sent from my iPhone > On Jul 14, 2023, at 16:07, J. Landman Gay via use-livecode >

Re: Solved: Writing to Mac Application Support folder

2023-07-14 Thread Bob Sneidar via use-livecode
Create file and write permissions are very seldom different. Sent from my iPhone > On Jul 14, 2023, at 14:11, scott--- via use-livecode > wrote: > > Hello Jacque, I haven’t encountered this yet so I’m hoping to get some > advice about how to proceed. 2 questions: > > If the file (say a p

Re: Convert date

2023-07-14 Thread Bob Sneidar via use-livecode
account the local date format for the built in date functions. Is that incorrect? Bob S > On Jul 14, 2023, at 11:39 AM, Alex Tweedly via use-livecode > wrote: > > > On 14/07/2023 16:34, Bob Sneidar via use-livecode wrote: >> CASE "sql date" &g

Re: Check connection and timeout

2023-07-14 Thread Bob Sneidar via use-livecode
Hi Ludovic. I use a simple method of sockets to determine if I have a connection to a host. I close the socket first: closeSocket 127.0.0.1:3306 Then I open the socket: Open socket to 127.0.0.1:3306 Put the result into tError If terror begins with “ERROR: “ then — your code here End if

Re: Check connection and timeout

2023-07-14 Thread Bob Sneidar via use-livecode
d EIStsNetGetTimeouts > > Ralph DiMola > IT Director > Evergreen Information Services > rdim...@evergreeninfo.net > > > -Original Message- > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf > Of Bob Sneidar via use-livecode > Sent: Friday, J

Re: Check connection and timeout

2023-07-14 Thread Bob Sneidar via use-livecode
Thanks Ralph, very handy, but is there a way to get the timeout to see if the command to set the timeout worked? I change networks frequently, and if I do not disconnect and reconnect to my SQL database, I run the risk of using a stale connection, and then I face the dreaded 60 second stall befo

Re: Convert date

2023-07-14 Thread Bob Sneidar via use-livecode
Hmmm… I read the enhancement request. I’m still in the dark though on how to get to "2023-07-14 08:30:00" from “7/14/23” using format strings. Here’s my solution for those who do not want to download the masterLibrary. Given these, what else do you need? FUNCTION formatDate theDate, theFormat

Re: Check connection and timeout

2023-07-14 Thread Bob Sneidar via use-livecode
getNetwotkType() is not a valid function. Bob S > On Jul 14, 2023, at 8:14 AM, Ralph DiMola via use-livecode > wrote: > > Ludovic, > > Make sure that tsNet is active: > > command NetworkType > if GetNetworkType() = "libURL" then > answer"tsNet is disabled(LibURL)" > else > an

Re: Check connection and timeout

2023-07-14 Thread Bob Sneidar via use-livecode
I’m interested in this. But how do you GET the timeout? Bob S > On Jul 13, 2023, at 11:26 PM, Ludovic THEBAULT via use-livecode > wrote: > > Hello, > > I use this code to check is there is an internet connection : > > tsNETSETTIMEOUTS 60,0,2000,6,5,1000 > > put tsNetHeadSync("https://

Re: Convert date

2023-07-14 Thread Bob Sneidar via use-livecode
I beg to differ. Again, Livecode is a way to build both the tools and the product made by those tools. Livecode is NOT a collection of every conceivable tool for everything everyone wants to do. No language is. I think the LC dev team is far more useful to everyone if they focus on completing

Re: Field highlited

2023-07-13 Thread Bob Sneidar via use-livecode
at 10:12 AM, Bob Sneidar wrote: > > > Untested > > This in a frontScript: > > on openField > put long id of the target into pField > set the selection to the savedChunk of pField — if you want to restore the > last selection > Set the savedChunk of pFie

Re: Field highlited

2023-07-13 Thread Bob Sneidar via use-livecode
; managed in terms of their rects, depending on the formatted properties of >> the hilted line or lines. They can be shown and hidden as well. >> >> I am struggling not to do this just for fun. So you do it, because I bet >> that the team has bigger fish to fry. >>

Re: Field highlited

2023-07-13 Thread Bob Sneidar via use-livecode
I do not see how that could work. In Windows, buttons can have the focus, which means a field would always lose it. What I do when I need something like this is I save the selection (or selectedChunk or some such thing) as a property of the field upon exitField. You could even put that in a fr

Re: Convert date

2023-07-13 Thread Bob Sneidar via use-livecode
I wrote a formatDate function years ago that called this "sql date". Maybe I should rename it “ISO Date” or just add a case for it. There is also an “sql time” format in the function formatTime. This way you can put format date(the date, “sql date”) && formative(the time, “sql time”) to get an s

Re: Get the nested behaviors of an object

2023-07-11 Thread Bob Sneidar via use-livecode
. Bob S On Jul 11, 2023, at 4:00 PM, Bob Sneidar via use-livecode wrote: Hi all. I’ve got me doots, as Richmond would say, but is there a way to get (and even better SET) the nested behaviors of an object? Now that nested behaviors work for Datagrids, actually *setting* the nested behavior

Get the nested behaviors of an object

2023-07-11 Thread Bob Sneidar via use-livecode
Hi all. I’ve got me doots, as Richmond would say, but is there a way to get (and even better SET) the nested behaviors of an object? Now that nested behaviors work for Datagrids, actually *setting* the nested behavior is problematic. There is no place to actually set it in the Datagrid propert

Re: [OT ish] Visual Code Editor and Line Endings

2023-07-11 Thread Bob Sneidar via use-livecode
For what it’s worth, I use SublimeText which has linters for both Livecode Script and Livecode Builder that were so graciously provided by Trevor Devore. Not sure how many people know it, but we have a Datagrid and also sqlYoga because of Trevor. Bob S On Jul 10, 2023, at 1:08 PM, Bob

Re: Livecode 10.0.0dp5 new reserved words

2023-07-11 Thread Bob Sneidar via use-livecode
Interesting. The reason I’ve never been bit by this I think, is that I like to use more descriptive variables. For instance, I might have use tFileExt. I think I got that from one of the articles (or lessons or books) from one of the Livecode contributors, that variable names should be as descri

Re: Livecode 10.0.0dp5 new reserved words

2023-07-11 Thread Bob Sneidar via use-livecode
Or… he could just go through his code using the find utility and replace every instance of tExt with tExtension. :-) Bob S On Jul 11, 2023, at 5:01 AM, Mark Waddingham via use-livecode wrote: On 2023-07-11 12:28, Paul Dupuis via use-livecode wrote: Does anyone, including folks at the mothers

Re: [OT ish] Visual Code Editor and Line Endings

2023-07-10 Thread Bob Sneidar via use-livecode
Code is not the only editor to “assume” you want to change out all the line endings. Microsoft has been doing this for years. Just OPENING a file where the platform defaults differ from the document results in Microsoft Word altering the file, despite a user closing without saving. It is in my

Re: A stack "revCursors" is already in memory.

2023-07-07 Thread Bob Sneidar via use-livecode
Hmmm… the global variable revSaveAsStandalone does not seem to be available anymore, or is it a global created at build time, then deleted when done? Bob S > On Jul 6, 2023, at 3:39 PM, Bob Sneidar wrote: > > Well….. > > What happens is that when you build an app, every sta

Re: A stack "revCursors" is already in memory.

2023-07-07 Thread Bob Sneidar via use-livecode
done. Bob S > On Jul 6, 2023, at 3:39 PM, Bob Sneidar via use-livecode > wrote: > > Well….. > > What happens is that when you build an app, every stack it uses will be > opened in the IDE, ostensibly to determine what inclusions are necessary. I > have seen where

Re: A stack "revCursors" is already in memory.

2023-07-06 Thread Bob Sneidar via use-livecode
Well….. What happens is that when you build an app, every stack it uses will be opened in the IDE, ostensibly to determine what inclusions are necessary. I have seen where the version of the stack that is open AFTER building the standalone is the one in the STANDALONE! So if you continue to us

Re: Installing mySQL on Windows

2023-07-05 Thread Bob Sneidar via use-livecode
Ah, thanks you. That is helpful. Bob S > On Jul 3, 2023, at 10:30 AM, Andrew at MWCM via use-livecode > wrote: > > The installer itself is 32bit but it will give you 64bit binaries. I had to > upgrade my 5.7.x to the latest version first, but then I could add the x64 > version of 8.0. > >

Re: Writing to Mac Support folder

2023-06-29 Thread Bob Sneidar via use-livecode
Not sure if this helps: I just put this in the message box in the IDE and hit enter, and it created the folder successfully. I don’t remember ever specifically allowing LC to do that, but then I think I have given LC permissions to modify files on the OS drive. put "~/Library/Application Suppo

Re: Installing mySQL on Windows

2023-06-23 Thread Bob Sneidar via use-livecode
tead? As far as i know it is MySQL > compatible. > MariaDB Server is available as .msi Installer. > > Regards, > Matthias > >> Am 23.06.2023 um 18:01 schrieb Bob Sneidar via use-livecode >> : >> >> NVM. I think I found it. Unfortunately it looks live t

Re: Installing mySQL on Windows

2023-06-23 Thread Bob Sneidar via use-livecode
Yes, and as you will note, those are 32 bit installers. I was hoping there was a 64 bit installer. There ARE 64 bit binaries, but no MSI. Bob S On Jun 23, 2023, at 11:55 AM, Andrew at MWCM via use-livecode wrote: Just installed it last week on a Windows Server 2019 VM using the installer fr

Re: Installing mySQL on Windows

2023-06-23 Thread Bob Sneidar via use-livecode
NVM. I think I found it. Unfortunately it looks live there is an installer only for the 32 bit version. I was hoping to install a 64 bit version on a 64 bit server. Oh well. Bob S > On Jun 23, 2023, at 8:50 AM, Bob Sneidar wrote: > > Hi all. > > The PC running mySQL s

Installing mySQL on Windows

2023-06-23 Thread Bob Sneidar via use-livecode
Hi all. The PC running mySQL server I’ve been using for some time took a dump. Thankfully I’ve been running a daily backup. Now I am trying to install mySQL server 64 bit on a new server, but it seems there is no installer! Instructions tell my to run some console commands. Is that the only wa

Re: Android Signing

2023-06-20 Thread Bob Sneidar via use-livecode
If we want digital security to become simpler, we will have to all agree to some significant degree of retaliation against the criminals who are constantly trying to take everything everyone has, and we are not going to do that. We call that, “uncivilized.” As I am wont to say, people do not cha

RE: The Backdrop's Purpose In Life

2023-05-30 Thread Bob Sneidar via use-livecode
indow only brings that one window to the front. No pallets or toolbars come with it. But enabling the backdrop fixes that. Bob Sneidar -Original Message- From: use-livecode On Behalf Of J. Landman Gay via use-livecode Sent: Saturday, May 27, 2023 2:46 PM To: How to use LiveCode

RE: The Backdrop's Purpose In Life

2023-05-26 Thread Bob Sneidar via use-livecode
AM To: use-livecode@lists.runrev.com Cc: Richard Gaskin Subject: Re: The Backdrop's Purpose In Life Bob Sneidar wrote: > HA! I just figured out what the purpose of the backdrop is! > If you have multiple LC windows open and you tab to another > app's window, > then tab

The Backdrop's Purpose In Life

2023-05-26 Thread Bob Sneidar via use-livecode
HA! I just figured out what the purpose of the backdrop is! If you have multiple LC windows open and you tab to another app's window, then tab back to the LC window, ONLY that LC window will appear in the foreground. With Backdrop on, ALL the LC windows will become visible when you tab to any LC

RE: Latest video -- integration of AI into script editor

2023-05-25 Thread Bob Sneidar via use-livecode
I create datagrids with some properties that help me with database queries. For instance one property is the name of the table I source for the data. So I came up with the idea of popping up a menu when I right click on a datagrid, where I can select a column from the table, and then wherever I

Re: [semi OT] mySQL question

2023-05-12 Thread Bob Sneidar via use-livecode
Just as an aside, I do not bother with joins, if I can help it. If I need data from multiple tables I query each table for just the data I need, and save it in discreet arrays, 1 per table. Of course, my needs are pretty simple. I typically have one parent table (the example suggested calls them

Re: Am I using the best mail client?

2023-05-12 Thread Bob Sneidar via use-livecode
I thread my mail in Apple Mail, and I also have a rule which moves incoming mail from the list into its own folder. The trouble with that is that some mail clients quote at the top of the body, and others quote below. That makes reading a long string of emails and quoted replies nearly impossibl

Re: opencard and visual effect

2023-05-02 Thread Bob Sneidar via use-livecode
I can attest that as an old timer, if I am not very careful, I can provide a very wide pool. ;-) Bob S On May 2, 2023, at 15:52, J. Landman Gay via use-livecode wrote: Well, it works better for *you*. I want info to come to me, I don't want to search. My right hand doesn't like all that clic

Re: A spinner that keeps spinning

2023-05-02 Thread Bob Sneidar via use-livecode
That is pretty cool. I created a Spinner app which is a standalone that responds to AppleScript commands or Sockets. Since it is a standalone, it runs under it's own thread. I created internal commands to show or hide itself, as well as setting the displayed message. Using browser widgets seems

Re: Custom property retrieval incorrect

2023-04-27 Thread Bob Sneidar via use-livecode
Well... ;-) Thanks for tracking it down, Mark. I'm not crazy after all. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com _

Re: In case any of you missed it...

2023-04-20 Thread Bob Sneidar via use-livecode
That is interesting... and a bit scary. Just as I was getting my coffee, and before I saw this email, I was thinking that in less than 20 years we will be coding with sensors attached to our heads and driven by AI and reading our minds and learning from our corrections. Bob S > On Apr 20, 20

Re: card background color

2023-04-19 Thread Bob Sneidar via use-livecode
Won't that revert next time LC is downloaded and installed? Bob S > On Apr 19, 2023, at 15:23, Niggemann, Bernd via use-livecode > wrote: > > Douglas A. Ruisaard wrote > >> When I drag a new object from the >> Tools Palette onto a card, as the object "enters" the destination card, the >> ba

Re: test

2023-04-10 Thread Bob Sneidar via use-livecode
You must be in my guild! Bob S On Apr 9, 2023, at 05:54, Mike Kerner via use-livecode wrote: poor joke. it's like when you're gaming, and someone gets on their headset and asks if anyone can hear them, and everyone replies "No." On Thu, Apr 6, 2023 at 9:07 AM Craig Newman via use-livecode <

Re: How to loop through stacks with same name?

2023-04-07 Thread Bob Sneidar via use-livecode
Whaa? I’m on 9.6.9 I’ll have another peek. Probably typed something wrong in the message box. Sent from my iPhone > On Apr 7, 2023, at 12:47, J. Landman Gay via use-livecode > wrote: > > On 4/6/23 3:06 PM, Bob Sneidar via use-livecode wrote: >> You can supply the full

Re: Ventura 1.3 - revcopyfile

2023-04-06 Thread Bob Sneidar via use-livecode
I just use createFolder. I discovered however that the folder you are creating the new folder in has to exist already. In other words, if the root folder is hdd/users/bob/documents I cannot simply create a folder hdd/users/bob/documents/filetransfer/data/forms. I have to create file transfer, t

Re: How to loop through stacks with same name?

2023-04-06 Thread Bob Sneidar via use-livecode
You can supply the full path of a stack to the close stack command, but not to the delete stack command. That may be worth a look by the devs. Bob S > On Apr 6, 2023, at 12:35, J. Landman Gay via use-livecode > wrote: > > The best solution would be for LC to use file paths instead of stack

Re: How to loop through stacks with same name?

2023-04-06 Thread Bob Sneidar via use-livecode
This begs another question, how high can the id of a stack go? Presently mine is over 33 million! (I use a lot of datagrids). Bob S > On Apr 6, 2023, at 11:55, Bob Sneidar via use-livecode > wrote: > > I just tried to close a stack using it's full path and it did sort of,

Re: How to loop through stacks with same name?

2023-04-06 Thread Bob Sneidar via use-livecode
I just tried to close a stack using it's full path and it did sort of, BUT... it only closes the window. The Window menu in LC still shows the stack! The destroyStack and destroyWindow properties are both true. Is that the expected behavior??? There are of course other stacks in use, library s

Re: How to loop through stacks with same name?

2023-04-05 Thread Bob Sneidar via use-livecode
Whoa! No I'm not! There's over 300 mainstacks just from Livecode! Bob S On Apr 5, 2023, at 08:07, Bob Sneidar via use-livecode wrote: Oooh Pro Tip #276 from Jacque. I'm gonna use that one. Bob S ___ use-livecode mailing li

Re: Sockets (again)

2023-04-05 Thread Bob Sneidar via use-livecode
> line 2 of your data stream > Make line 2 of your data stream the data you want to send > > Then on the receiving end, do a two-step: > - read from socket XYZ for 1 line > - put it into tDataLength > - read from socket XYZ for tDataLength bytes > > > That's all I g

Re: How to loop through stacks with same name?

2023-04-05 Thread Bob Sneidar via use-livecode
Oooh Pro Tip #276 from Jacque. I'm gonna use that one. Bob S On Apr 4, 2023, at 21:42, J. Landman Gay via use-livecode wrote: But if it is necessary for some reason to have multiple same-named stacks open then check the mainstacks rather than the openstacks.

Sockets (again)

2023-04-04 Thread Bob Sneidar via use-livecode
I have sockets working in my File Server Agent, but only using non-blocking calls, that is using "with message". Removing the "with message" bit does not return any response from the server agent. For instance I send a payload using write payload to socket tSocket with message "messageReceived

test

2023-04-04 Thread Bob Sneidar via use-livecode
This is a test of the use list. Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Sort list alphabetically- ignoring first character if it is a space

2023-02-20 Thread Bob Sneidar via use-livecode
Sort by word 1 to -1 of each Sent from my iPhone > On Feb 20, 2023, at 14:12, Mark Wieder via use-livecode > wrote: > > On 2/20/23 13:29, Niggemann, Bernd via use-livecode wrote: > > ...or to make ChatGPT happy: > > sort tData ascending by word 1 to -1 of each # ignoring spaces > > > > -

Re: Training the AI to write better LiveCode

2023-01-25 Thread Bob Sneidar via use-livecode
If we get to the point where mankind no longer has to work to live (universal basic income), then I fear we will come to experience intimately what the old saying hints at, "An idle mind is the devil's playground." It will be the end of any really productive society. Or else what will develop is

Re: Training the AI to write better LiveCode

2023-01-25 Thread Bob Sneidar via use-livecode
hs to success based upon what an opponent does, and it has to do it by trial and error, which of course is impossible without a way to recall a successful strategy. Bob S > On Jan 24, 2023, at 17:20 , Geoff Canyon via use-livecode > wrote: > > On Tue, Jan 24, 2023 at 8:10 AM

Re: Training the AI to write better LiveCode

2023-01-24 Thread Bob Sneidar via use-livecode
23:26 , Geoff Canyon via use-livecode > wrote: > > On Mon, Jan 23, 2023 at 4:09 PM Bob Sneidar via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> Meh. Don't like using Chess as a measurement of AI competence. Chess is in >> AI's wheelhou

Re: Training the AI to write better LiveCode

2023-01-23 Thread Bob Sneidar via use-livecode
Who gets to decide what the dis is in dis-information though? I think the greatest threat to knowledge is the illusion that information can be filtered to exclude the "dis" in favor of the information. Perhaps my faith in the human psyche is over ambitious, but it seems to me that any person rea

Re: Training the AI to write better LiveCode

2023-01-23 Thread Bob Sneidar via use-livecode
Meh. Don't like using Chess as a measurement of AI competence. Chess is in AI's wheelhouse. Once a computer can store all the possible permutations of chess, it's advantage for AI is that it can reject what worked historically and what didn't, paring down the moves for every situation it can enc

Re: ChatGPT examples

2023-01-20 Thread Bob Sneidar via use-livecode
Doomed, like the guys who left their weapons behind ended up facing their own weapons later. Bob S On Jan 20, 2023, at 07:56 , Geoff Canyon via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On Fri, Jan 20, 2023 at 6:57 AM Craig Newman via use-livecode < use-livecode@lists.runrev.

Re: Maximum field size

2023-01-19 Thread Bob Sneidar via use-livecode
... ok. But first, can you provide an example of ANY application that displays that much text or that many lines in a field? A-Whaaay back when, Microsoft ran into this problem with large Word and Excel files. They got around it by developing a paging system that only kept in memory a certai

Re: Move in Reverse

2023-01-17 Thread Bob Sneidar via use-livecode
Can't he just repeat with i = the number of lines of the points of polygon 1 down to 1? Bob S > On Jan 17, 2023, at 16:34 , Alex Tweedly via use-livecode > wrote: > > He's moving the graphic object "to" the points of a polygon - i.e. to each in > turn. > > So the movement would be reversed

Re: Standalone riddle

2023-01-17 Thread Bob Sneidar via use-livecode
This may be how your Time Travel stack becomes self-aware. Bob S On Jan 15, 2023, at 19:21 , J. Landman Gay via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: How ironic. The stack contains the LC dictionary. I should have asked it. Riddle solved. -- Jacqueline Landman Gay | jac.

Re: Training the AI to write better LiveCode

2023-01-17 Thread Bob Sneidar via use-livecode
Sooo... ChatGPT gives ambiguous answers, much like humans do. But, and I don't want to put too fine a point on this, isn't eliminating that ambiguity why we created computers in the first place? ;-P Bob S On Jan 17, 2023, at 04:46 , Mike Kerner via use-livecode mailto:use-livecode@lists.runre

Re: Training the AI to write better LiveCode

2023-01-12 Thread Bob Sneidar via use-livecode
Sooo... it's ARTIFICIAL intelligence, meaning there's a programmer behind it telling it how to respond, or else how not to. Obviously I'm not a huge believer in AI. It seems more like WIKI to me. Bob S > On Jan 12, 2023, at 01:16 , Heather Laine via use-livecode > wrote: > > Yes, it only r

Re: Anyone else experience this bug?

2023-01-04 Thread Bob Sneidar via use-livecode
Seems there ought to be a crash log somewhere that could give clues. On the Mac you can open the Console app, click the Crash Reports in the left pane, and search for Livecode. But I am not exactly sure that the crash logs will indicate application crashes. Bob S On Jan 4, 2023, at 08:22 , To

Re: Anyone else experience this bug?

2023-01-04 Thread Bob Sneidar via use-livecode
Not that it helps, but I haven't had CTDs in a long time. I will note however that one of the causes of past CTDs is an endless loop. If the engine gets so many loops in a short period of time, it's my understanding it will CTD. If it's a click anywhere in the app, I would look at any front or b

Re: Anyone any experience with Livecode under Ventura?

2022-12-22 Thread Bob Sneidar via use-livecode
What version LC? There was a version that was exhibiting this behavior, but it was fixed. This may be a regression. Bob S On Dec 22, 2022, at 01:01 , Simon Knight via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Well I've had issues with Ventura and how Livecode requests permiss

Re: Lock screen and animated gif

2022-12-21 Thread Bob Sneidar via use-livecode
I hope you know where to get Genuis Enhancement pills on the internet, because we are all going to need them before diving into THAT series. Bob S On Dec 21, 2022, at 05:22 , Paul Dupuis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Thank you. In a future Livecode Global you

Re: Lock screen and animated gif

2022-12-20 Thread Bob Sneidar via use-livecode
A while back I created a Spinner standalone that listened for messages via sockets. It worked quite well actually. I sent it commands to show and hide itself, and start and stop the spinner, as well as text to display. Since it was a standalone app it was not subject to the inline message queue.

Re: Lock screen and animated gif

2022-12-20 Thread Bob Sneidar via use-livecode
this is the exact same thing I was experiencing a few years back which got me away from even referring to the defaultStack. Or topStack for that matter. I was using wait and send in time a lot back then. Now I explicitly refer to a stack by it's filename or better yet a card by it's long id. B

Re: Lock screen and animated gif

2022-12-20 Thread Bob Sneidar via use-livecode
It's okay, I'm sure you will be here all w... oh wait, is that the manager motioning you off the stage? Bob S > On Dec 20, 2022, at 07:40 , harrison--- via use-livecode > wrote: > > Thingle, It could also be: I’m single - but with a lisp! LOL > > Ok, I’ll stop now. > > Rick > > > > __

Re: ChatGPT

2022-12-20 Thread Bob Sneidar via use-livecode
You didn't know that? ;-P Bob S On Dec 19, 2022, at 17:10 , Mark Wieder via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On 12/18/22 12:15, Richard Gaskin via use-livecode wrote: A Twitter thread with ChatGPT botsplaining how 77 is a prime number: https://twitter.com/bellafusari1

Re: krampus is coming

2022-12-17 Thread Bob Sneidar via use-livecode
Is krampus the name of one of the reindeer? Sent from my iPhone > On Dec 17, 2022, at 08:59, Mike Kerner via use-livecode > wrote: > > i heard that there was going to be something new to break before krampus > maybe i heard wrongly > > -- > On the first day, God created the heavens and the

Re: Mobile Clipboard?

2022-12-16 Thread Bob Sneidar via use-livecode
All the clipboard functions are for Win, Mac and Linux. I searched the dictionary for Android, and nothing seems to be available for Android. I reviewed ALL the Merg commands and functions. Perhaps mefgNotify can be of assistance, but there s nothing specific to the clipboard. Bob S > On Dec

Re: ChatGPT

2022-12-15 Thread Bob Sneidar via use-livecode
That's a good read. > On Dec 15, 2022, at 07:43 , Paul Dupuis via use-livecode > wrote: > > Another perspective on ChatGPT: > https://www.sciencealert.com/chatgpt-could-revolutionize-the-internet-but-its-secrets-have-experts-worried > ___ use-liv

How to use font files in development AND standalones

2022-12-09 Thread Bob Sneidar via use-livecode
Hi all. I finally figured out how to use font files in a way that works in development AND in a standalone. In the preOpenStack handler in the first card script: -- load fonts put specialFolderPath("resources") into tPath start using font file tPath & "/Fonts/Aclonica.ttf" start u

Re: Build in Answer Dialog

2022-12-06 Thread Bob Sneidar via use-livecode
I am sure you can, after you open it once on a Mac. I was replacing the datagrid behavior for every download this way. I would brick the bundle though if I replaced anything before opening it first. Bob S On Dec 6, 2022, at 09:34 , Klaus major-k via use-livecode mailto:use-livecode@lists.runr

Re: sqlYoga wierdness

2022-11-28 Thread Bob Sneidar via use-livecode
I see why. sqlquery_delete does not take anything into account except for the where clause. The join and distinct properties are ignored. I will have to recode using some other method. Bob S > On Nov 28, 2022, at 16:30 , Bob Sneidar via use-livecode > wrote: > > I don't

Re: sqlYoga wierdness

2022-11-28 Thread Bob Sneidar via use-livecode
I don't think there is a way to do this with sqlYoga. I tried "... service.siteid AS siteid1..." and then referring to the columns with their aliases, but that still does not work. Bob S > On Nov 28, 2022, at 16:17 , Bob Sneidar via use-livecode > wrote: > > N

Re: sqlYoga wierdness

2022-11-28 Thread Bob Sneidar via use-livecode
NVM. Of course, the query is going to rename the second siteid column for sites to siteid2. Bob S > On Nov 28, 2022, at 16:11 , Bob Sneidar via use-livecode > wrote: > > Hi all. > > If anyone has any experience in using sqlYoga for joins, I have a curious > issu

sqlYoga wierdness

2022-11-28 Thread Bob Sneidar via use-livecode
Hi all. If anyone has any experience in using sqlYoga for joins, I have a curious issue. The following code produces a variable tFoundOrphans containing a list of service record IDs with no corresponding siteid in the Sites table, so I know the query object works. However, when I use sqlquery_d

Re: use-livecode Digest, Vol 230, Issue 17

2022-11-28 Thread Bob Sneidar via use-livecode
I can imagine a lock/unlock wrapper that registers every lock screen request and will only unlock the screen if called from the same handler or uses the same passed ID as the lock handler. You could have a property for each registered lock to allow or disallow override from another unlock. Tha

Re: itemoffset & wholematches

2022-11-15 Thread Bob Sneidar via use-livecode
Tweedly via use-livecode a écrit : That would deal with the last item in a line - but not the first. Should do replace CR with TAB & CR & TAB in ... and reverse later if needed. Alex. On 14/11/2022 18:43, Bob Sneidar via use-livecode wrote: oic. Odd use case. I suppose a lineOffset func

Re: IP address and Country

2022-11-14 Thread Bob Sneidar via use-livecode
Is that a fixed thing? Can it ever change? Seems like there must be a web site for that. I found https://www.ipvoid.com/ip-to-country/. They may license the tool that does this. Bob S On Nov 14, 2022, at 16:50 , harrison--- via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Greet

Re: Auto-Complete

2022-11-14 Thread Bob Sneidar via use-livecode
As usual, nvm. I found it in the SE Edit Menu. I think Jacque answered this for me before. Bob S > On Nov 14, 2022, at 11:57 , Bob Sneidar wrote: > > I've probably asked this before, or someone has, but while I really like the > suggestions when editing a script, I deci

Auto-Complete

2022-11-14 Thread Bob Sneidar via use-livecode
I've probably asked this before, or someone has, but while I really like the suggestions when editing a script, I decidedly do NOT like the auto-encapsulation of things, by which I mean if I type a quote, it happens another quote right after. If I type a left square bracket, it appends a right

Re: itemoffset & wholematches

2022-11-14 Thread Bob Sneidar via use-livecode
oic. Odd use case. I suppose a lineOffset function followed by is among the items could be used. If he needs the lines to remain intact he could also replace cr with tab & cr first. Bob S On Nov 14, 2022, at 10:15 , Mike Kerner via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: t

Re: Anyone any experience with Livecode under Ventura?

2022-11-14 Thread Bob Sneidar via use-livecode
There is a utility that can actually modify the schedule. I downloaded it and am using it at home, but currently I am at work. I'll try to remember to check that when I get home, but you can google it. Bob S On Nov 13, 2022, at 24:02 , Mark Smith via use-livecode mailto:use-livecode@lists.run

Re: itemoffset & wholematches

2022-11-14 Thread Bob Sneidar via use-livecode
Why not just use is among the items? Bob S > On Nov 14, 2022, at 04:51 , jbv via use-livecode > wrote: > > Hi list, > > I have a variable with a content of 3 lines as follows : > 1 sombre brunprofond > 2 flouincertain > 3 inexploré mystérieux inconnu > > The

Re: About that Enter key

2022-11-14 Thread Bob Sneidar via use-livecode
Ahah! For my part, I just recently updated to RC2 because of the Nested Datagrid Behavior fix. (Thanks again LC). But it really doesn't matter to me as I am in the habit of using Tab to format the script, and Save as a means of compiling and saving at the same time. Bob S > On Nov 12, 2022,

Re: Easy Android adaptive icons

2022-11-14 Thread Bob Sneidar via use-livecode
I am always learning new things as well, only on account of I forget so much. Bob S On Nov 12, 2022, at 11:08 , Klaus major-k via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi Jacque, Am 12.11.2022 um 19:24 schrieb J. Landman Gay via use-livecode mailto:use-livecode@lists.run

Re: Return of Hilited text of Popup Menu items

2022-11-11 Thread Bob Sneidar via use-livecode
If they mounted 4 20mm cannons on the Hellcat, I might agree. Bob S > On Nov 11, 2022, at 09:15 , Craig Newman via use-livecode > wrote: > > Nope > > Grumman F6F. > >> On Nov 11, 2022, at 12:03 PM, Bob Sneidar via use-livecode >> wrote: >> >

Re: Return of Hilited text of Popup Menu items

2022-11-11 Thread Bob Sneidar via use-livecode
Or the greatest WWII fighter plane ever made. > On Nov 11, 2022, at 08:56 , Craig Newman via use-livecode > wrote: > > And a corsair is what a pirate aspires to. > > Craig > >> On Nov 11, 2022, at 11:11 AM, Bob Sneidar via use-livecode >> wrote: >>

Nested Datagrid Behaviors is implemented!

2022-11-11 Thread Bob Sneidar via use-livecode
Hi all. For those of you who were interested in nested datagrid behaviors, it has now been implemented in LC 9.6.9 (rc2). I can confirm it works as advertised. I use to have to replace one of the script only stacks in LC with a modified one of my own, but now no more. Thanks LC Dev team, you a

Re: Return of Hilited text of Popup Menu items

2022-11-11 Thread Bob Sneidar via use-livecode
A Curser is what I was as a sailor. A Cursor is the icon on your monitor that indicates where the mouse is located. ;-) Bob S On Nov 10, 2022, at 18:28 , Roger Guay via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Is there a way to return the hilited menu items of a popup menu b

Re: Anyone any experience with Livecode under Ventura?

2022-11-10 Thread Bob Sneidar via use-livecode
Don't get me wrong, I keep some of my documents in the cloud, especially the important ones, but the conversation was abount having iCloud be the primary storage for ALL your documents. I lost a ton of really good photos when they went from .MAC to me.com. True I was warned, but w

Re: ENTER in scripts

2022-11-10 Thread Bob Sneidar via use-livecode
; HyperActive Software | http://www.hyperactivesw.com > On November 10, 2022 10:00:28 AM Bob Sneidar via use-livecode > wrote: > >> It does nothing, but to be fair I am using a Windows xternal keyboard (if >> there is such a thing these days,) on a MacOS laptop, and both

Re: ENTER in scripts

2022-11-10 Thread Bob Sneidar via use-livecode
if it turns green. >> >> -- >> Jacqueline Landman Gay | jac...@hyperactivesw.com >> HyperActive Software | http://www.hyperactivesw.com >> On November 9, 2022 4:19:36 PM Bob Sneidar via use-livecode >> wrote: >> >>> Hmmm... On MacOS enter does nothing. Return inse

Re: ENTER in scripts

2022-11-10 Thread Bob Sneidar via use-livecode
ns green. > > -- > Jacqueline Landman Gay | jac...@hyperactivesw.com > HyperActive Software | http://www.hyperactivesw.com > On November 9, 2022 4:19:36 PM Bob Sneidar via use-livecode > wrote: > >> Hmmm... On MacOS enter does nothing. Return inserts a carriage return. I use >>

Re: Anyone any experience with Livecode under Ventura?

2022-11-09 Thread Bob Sneidar via use-livecode
FYI I NEVER am going to consolidate all my documents in iCloud. That's like hanging a copy of all my keys in the community center that's open 24 hours a day to everyone. One day someone is going to lock the doors... Bob S On Nov 8, 2022, at 13:22 , Geoff Canyon via use-livecode mailto:use-liv

<    1   2   3   4   5   6   7   8   9   10   >