Re: Changing the scripts of a standalone

2025-08-04 Thread Bob Sneidar via use-livecode
I just use a Login stack and database table. It allows you to provide an interface for addition, deletion and modification of accounts. Bob S > On Aug 2, 2025, at 5:42 AM, jbv via use-livecode > wrote: > > Hi list, > > Years ago I built a desktop app with LC, and the client is still using

Re: Changing the scripts of a standalone

2025-08-03 Thread Mark Clark via use-livecode
Always alternatives. May or not be worth your time investment but here is something that works for me in the case of a quote system for a widely dispered sales team-- I use a launch style stack. This loads a stack from a URL. I do not use a standard web server for this (too much extra stuff) bu

Re: Changing the scripts of a standalone

2025-08-02 Thread Tom Glod via use-livecode
At Canela, we have tech that does this successfully and has been in production for many years. I never looked under the hood to see details so there may be things i am not aware of maybe some things that have to be done a certain way. We encrypt the code on disk, but once its loaded everything is s

Re: How to detect a change in a global variable ?

2025-07-29 Thread Tom Glod via use-livecode
Happy to help. The check for these variables happens every 50 milliseconds on each internal loop of the engine, as per Mark W. Checking a variable is just about the fastest thing you can do, and you can do it millions of times every second. I think last time I did a benchmark was about 25 million

Re: textencoding for MySQL DB

2025-07-29 Thread Klaus major-k via use-livecode
Hi all, > Am 29.07.2025 um 16:16 schrieb Klaus major-k via use-livecode > : > > Hi friends, > > my student has set up an online mySQL database on his PC. > The DB rtextencoding is: utf8mb4 (whatever that may be :-) > Now we are creating GUI for mobile. > > One problem are (still and again) UML

Re: How to detect a change in a global variable ?

2025-07-29 Thread Martin Koob via use-livecode
Hi Tom, That is even easier way to make a variable listener for LiveCode! Thanks for that recipie. I do have a question about this. I would think that ‘wait until [condition is true]’ must have a loop under the hood although probably much faster that running a loop written in LiveCode scri

Re: Android and Font Names

2025-07-28 Thread Klaus major-k via use-livecode
Hi Håkan, > Am 28.07.2025 um 15:19 schrieb ha...@exformedia.se : > > Hi Klaus, > I remember dabbling with this a long time ago and I think it was kind of: > - Find the offset for the name table in the file > - Find the postscript name in that table. Was often (always?) saved under ID > 6 (or was

Re: Android and Font Names

2025-07-28 Thread Hakan--- via use-livecode
Hi Klaus, I remember dabbling with this a long time ago and I think it was kind of: - Find the offset for the name table in the file - Find the postscript name in that table. Was often (always?) saved under ID 6 (or was it 5?) But this is just from the top of my head. I’m pretty sure I have some

Re: How to detect a change in a global variable ?

2025-07-26 Thread Tom Glod via use-livecode
When I need to detect a change in another variable I use "wait until variable_name is not "x" with messages" ... obviously your condition has to match what you are trying to detect. no loop needed On Sat, Jul 26, 2025 at 8:14 AM Martin Koob via use-livecode < use-livecode@lists.runrev.com> wrote

Re: How to detect a change in a global variable ?

2025-07-26 Thread Martin Koob via use-livecode
Hi Another way to do this is to use a setProp handler to set the global variable and create in essence a listener for changes to the global variable. In the setProp handler you set the global but then you can include other commands to be issued or sent or dispatched when the global variable is

Re: How to detect a change in a global variable ?

2025-07-26 Thread scott--- via use-livecode
Oops… just for thoroughness: In the last handler I forgot to add the line “put empty into sFlag” after the repeat loop -- Scott Morrow Elementary Software (Now with 20% less chalk dust!) web https://elementarysoftware.com/ email sc...@elementarysoftware.com booth1-360-734-4701 ---

Re: How to detect a change in a global variable ?

2025-07-26 Thread scott--- via use-livecode
The way that the loop is written would make it blocking. If you wanted the loop to start running and then stop after the mouseUp happens I think you would need to add a "wait x millisec with messages” Fo example: global myVar on elsoTester put 0 into myVar -- some code repeat unti

Re: Android and Font Names

2025-07-25 Thread Klaus major-k via use-livecode
Hi Matthias, > Am 25.07.2025 um 11:39 schrieb Matthias Rebbe via use-livecode > : > > There are tools available, which allow to view and change the properties of a > font. With such a tool, you could read out the postscript. I see, thanks, but was hoping to be able to do this with LC somehow.

Re: Android and Font Names

2025-07-25 Thread Matthias Rebbe via use-livecode
There are tools available, which allow to view and change the properties of a font. With such a tool, you could read out the postscript. If you like, you can send me the font file and check it for you. Matthias Von meinem iPhone gesendet > Am 25.07.2025 um 11:32 schrieb Klaus major-k via use-l

Re: Android and Font Names

2025-07-25 Thread Klaus major-k via use-livecode
No brilliant ideas? > Am 23.07.2025 um 16:35 schrieb Klaus major-k via use-livecode > : > > Hi friends, > > I have a custom TTF font that I will include in my mobile app. > Now read this warning in the LC lesson: > - > Android and Font Names > > There is

Re: Default backdrop

2025-07-24 Thread jbv via use-livecode
Thank you Klaus. I don't see how I could have missed that... Le 2025-07-24 11:57, Klaus major-k via use-livecode a écrit : Hi jbv, uncheck "Backdrop" in menu "View", that should do the trick. :-) ___ use-livecode mailing list use-livecode@lists.run

Re: iOS and http (not httpS)

2025-07-24 Thread Matthias Rebbe via use-livecode
Yes, that will do the trick. Von meinem iPhone gesendet > Am 24.07.2025 um 17:25 schrieb panagiotis merakos via use-livecode > : > > Hello Klaus, > > I am not in my office right now, but I think you can still access http > connections on iOS as well, you just have to check "Disable ATS" in t

Re: Default backdrop

2025-07-24 Thread Klaus major-k via use-livecode
Hi jbv, > Am 24.07.2025 um 17:53 schrieb jbv via use-livecode > : > > Hi list, > > For the past few months at startup of the IDE, no matter > which version of LC I use, the backdrop is set to white > by default. And each time I have to set it to "none" in > the message box. > Is there a way to

Re: iOS and http (not httpS)

2025-07-24 Thread Bob Sneidar via use-livecode
I’m going to make a wild guess and say that stands for Advanced TLS Security Bob S > On Jul 24, 2025, at 8:24 AM, panagiotis merakos via use-livecode > wrote: > > Hello Klaus, > > I am not in my office right now, but I think you can still access http > connections on iOS as well, you just ha

Re: iOS and http (not httpS)

2025-07-24 Thread panagiotis merakos via use-livecode
Hello Klaus, I am not in my office right now, but I think you can still access http connections on iOS as well, you just have to check "Disable ATS" in the iOS settings. Cheers, Panos On Thu, 24 Jul 2025, 17:14 Klaus major-k via use-livecode, < use-livecode@lists.runrev.com> wrote: > Hi friends

Re: Android and Font Names

2025-07-23 Thread Bob Sneidar via use-livecode
I have the same problem between Windows and MacOS. On MacOS some truetype variants like bold and italic are their own typefaces and register as such, but on Windows the typeface is always the base, then you have to select bold or italic as a style. This makes Start Using Font a real pain in the

Re: ChatGPT for LC scripting - and ports

2025-07-23 Thread Mike Kerner via use-livecode
what up, curry? * on the LC side: i am not paying stupid money per year for every mobile device we deploy to. i'm also not a fan of web-based rad tools. so unless something changes wildly, we're SO out. disappointed, and annoyed, and out. i'm not going to hold on, hoping that something is going to

Re: Signing a Windows app

2025-07-22 Thread Bob Sneidar via use-livecode
Hi all. Thanks for the help. I DID get to where I could sign my standalone! However... After all that it turns out I was not having a signing issue at all. For some reason the app I created will not run on just this one person’s PC unless I run it as administrator and enter my domain admin cre

Re: Signing a Windows app

2025-07-22 Thread Tom Glod via use-livecode
Hi Bob, I never did the test certificates but I assume they work similar. 4 concepts: A certificate - Test or real one, which you got A project - a project for your app - A signing policy - This is just a way of organizing different policies, I guess. Artifact Configuttion - This is how u configu

Re: Signing a Windows app

2025-07-22 Thread Matthias Rebbe via use-livecode
You’ll still need (to purchase) a Code Signing certificate. But the “new” ones cannot be exported anymore. Your private key is either stored on a usb token or in a virtual token in the cloud. In both cases (hardware token or virtual token) you will need to install additonal software. For the har

Re: Signing a Windows app

2025-07-22 Thread Bob Sneidar via use-livecode
OK I am trying that out. I created my first self-signed certificate. Not sure where to go from here. Do I need to create a project, or can I just download the certs, and then what do I do with them? Thanks for any assistance you can give. Bob S > On Jul 22, 2025, at 2:31 PM, Tom Glod via us

Re: Signing a Windows app

2025-07-22 Thread Tom Glod via use-livecode
Hi Bob, I think there were changes to this over the last few years, and now signing windows software requires hardware keys and etc. So yes I think the lesson is burnt toast. Which is why I use a signpath.io Their fee includes the hardware key and the user experience is great, you upload your

Re: ChatGPT for LC scripting - and ports

2025-07-22 Thread Curry Kenworthy via use-livecode
Mike: > because the announced 2027 lc pricing forced me to start looking > for alternatives. using llm's, i was able to quickly write four > good-enough apps in flutter. then i was able to generate similar > apps with an llm in delphi, and xojo. Which IDE worked out best for your apps? (Or wou

Re: xojo pricing

2025-07-22 Thread Mike Kerner via use-livecode
the reaction, over there, reminds me of the reaction, over here - but there are so many more people, over there, that it looks like it's a bigger reaction On Mon, Jul 21, 2025 at 4:29 PM pere xavier Rossello via use-livecode < use-livecode@lists.runrev.com> wrote: > https://blog.xojo.com/2025/07/

Re: xojo pricing

2025-07-21 Thread pere xavier Rossello via use-livecode
https://blog.xojo.com/2025/07/21/xojo-pricing-changes/ El lun, 21 jul 2025, 22:08, Mike Kerner via use-livecode < use-livecode@lists.runrev.com> escribió: > did anyone see the new xojo pricing? it just dropped. > > -- > On the first day, God created the heavens and the Earth > On the second day

Re: Direct access to MySQL on mobile Part 2

2025-07-08 Thread Klaus major-k via use-livecode
Hi all, > Am 08.07.2025 um 15:49 schrieb Klaus major-k : > Before I forget, this is an Android app/cellphone we ware testing. >> Am 08.07.2025 um 15:46 schrieb Klaus major-k via use-livecode >> : >> Hi all, >> we finally resolved the problem of "Database not found" by supplying >> the actual IP a

Re: Direct access to MySQL on mobile Part 2

2025-07-08 Thread panagiotis merakos via use-livecode
Hello Klaus, Just a shot in the dark, in the Android settings, have you checked the "Internet" and the "Allow http connections" permissions? Cheers, Panos On Tue, 8 Jul 2025 at 16:51, Klaus major-k via use-livecode < use-livecode@lists.runrev.com> wrote: > Before I forget, this is an Android a

Re: Direct access to MySQL on mobile Part 2

2025-07-08 Thread Klaus major-k via use-livecode
Before I forget, this is an Android app/cellphone we ware testing. > Am 08.07.2025 um 15:46 schrieb Klaus major-k via use-livecode > : > > Hi all, > > we finally resolved the problem of "Database not found" by supplying > the actual IP address. > > Recommended or not, we currently want to use

Re: Direct access to MySQL on mobile Part 2

2025-07-08 Thread Klaus major-k via use-livecode
Hi all, we finally resolved the problem of "Database not found" by supplying the actual IP address. Recommended or not, we currently want to use direct access from the cellphone to an online MySQL database. We may change that later. LC 10.0.2 macOS 15.5 Now we get: Can't create TCP/IP socket

Re: Google alert: My app needs to support Android 15 (API-Level 35)

2025-07-06 Thread Klaus major-k via use-livecode
Hi Panos, > Am 06.07.2025 um 19:52 schrieb panagiotis merakos via use-livecode > : > > Hello Klaus, > > Yes, we will address this issue in the next release, great, thank you for the confirmation! > which will happen > before the end of August. Preferably. :-D > Kind regards, > Panos > > On

Re: Google alert: My app needs to support Android 15 (API-Level 35)

2025-07-06 Thread panagiotis merakos via use-livecode
Hello Klaus, Yes, we will address this issue in the next release, which will happen before the end of August. Kind regards, Panos On Fri, 4 Jul 2025, 12:26 Klaus major-k via use-livecode, < use-livecode@lists.runrev.com> wrote: > Dear mothership, > > > Am 01.07.2025 um 19:57 schrieb Klaus major

Re: how to format data in LC for posting them to a PHP script?

2025-07-06 Thread Alex Tweedly via use-livecode
Should it not be. &pw=PWD& In the middle of that reply? Alex Sent from my iPhone > On 6 Jul 2025, at 16:30, Klaus major-k via use-livecode > wrote: > > Hi jbv, > >> Am 06.07.2025 um 17:24 schrieb jbv via use-livecode >> : >> >> Hi Klaus, >> >> This should work : >> >> put "ben=USER

Re: how to format data in LC for posting them to a PHP script?

2025-07-06 Thread jbv via use-livecode
Hi Klaus, This should work : put "ben=USER&password=PWD&sprach=de" into tData post urlencode(tData) to URL "http://XXX/X.php"; jbv Le 2025-07-06 10:17, Klaus major-k via use-livecode a écrit : Hi friends, quick question, how to format the data in LC for posting them to a PHP script lik

Re: how to format data in LC for posting them to a PHP script?

2025-07-06 Thread Klaus major-k via use-livecode
Hi jbv, > Am 06.07.2025 um 17:24 schrieb jbv via use-livecode > : > > Hi Klaus, > > This should work : > > put "ben=USER&password=PWD&sprach=de" into tData > post urlencode(tData) to URL "http://XXX/X.php"; ah, yes the &, that was it, thank you, will try that! :-) > jbv > > > Le 2025-0

Re: Tracking requests in browser widget

2025-07-05 Thread Tom Glod via use-livecode
Hi Ben, PM me and I can send you some code that is likely going to work, On Fri, Jul 4, 2025 at 6:09 AM Ben Rubinstein via use-livecode < use-livecode@lists.runrev.com> wrote: > We can use the browserDocumentLoadxxx and browserFrameDocumentLoadxxx > messages > to track requests for, in effect, HT

Re: Google alert: My app needs to support Android 15 (API-Level 35)

2025-07-04 Thread Klaus major-k via use-livecode
Dear mothership, > Am 01.07.2025 um 19:57 schrieb Klaus major-k : > > Hi all, > > is LC 10.0.2 supporting the new requirements of Google? > Android 15 (API-Level 35) > > If not, will there be an update soon? > Deadline is end of August. we are sure there will be an appropriate update of LC in

Re: Direct access to MySQL on mobile

2025-07-02 Thread Bob Sneidar via use-livecode
I store the credentials in an encrypted format, and the encryption library that contains the key is a different file and is itself password protected. Only I know the. keys and passwords. That probably isn’t even enough for a lot of people who would still not recommend this, but frankly I do not

Re: Direct access to MySQL on mobile

2025-07-02 Thread Klaus major-k via use-livecode
Hi Matthias, > Am 02.07.2025 um 19:46 schrieb Matthias Rebbe via use-livecode > : > > I would say that first depends on if the app is for ones own use or available > to the public. > And 2nd for inhouse solutions direct access should not be a problem. > But if the mySQL server is hosted on the

Re: Direct access to MySQL on mobile

2025-07-02 Thread Matthias Rebbe via use-livecode
I would say that first depends on if the app is for ones own use or available to the public. And 2nd for inhouse solutions direct access should not be a problem. But if the mySQL server is hosted on the internet even if the app is for ones own use, direct remote access wouldn‘t be a good idea. T

Re: Direct access to MySQL on mobile

2025-07-02 Thread panagiotis merakos via use-livecode
Hello all, Off-topic (or maybe not) - it is not suggested to access the MySQL database directly from the client app, either it is a Desktop app or a mobile one. Accessing the DB directly means the credentials are stored in the app, so theoretically a malicious actor could extract those from the ap

Re: Direct access to MySQL on mobile

2025-07-02 Thread Klaus major-k via use-livecode
Hi Bob, > Am 02.07.2025 um 17:13 schrieb Bob Sneidar via use-livecode > : > Yes, but the wifi could be routed, in which case there can still be a > firewall issue. I'll let him check this, thank you. > Bob S > >> On Jul 2, 2025, at 8:10 AM, Klaus major-k via use-livecode >> wrote: >> >> Hi

Re: Direct access to MySQL on mobile

2025-07-02 Thread Bob Sneidar via use-livecode
Yes, but the wifi could be routed, in which case there can still be a firewall issue. Bob S > On Jul 2, 2025, at 8:10 AM, Klaus major-k via use-livecode > wrote: > > Hi Bob, > >> Am 02.07.2025 um 17:04 schrieb Bob Sneidar via use-livecode >> : >> >> I doubt that the issue is encryption.

Re: Direct access to MySQL on mobile

2025-07-02 Thread Klaus major-k via use-livecode
Hi Bob, > Am 02.07.2025 um 17:04 schrieb Bob Sneidar via use-livecode > : > > I doubt that the issue is encryption. The error is that the host is unknown. > I would check to make sure your android has good router and dns settings, and > that port 3306 is not firewalled somewhere. the tablet h

Re: Direct access to MySQL on mobile

2025-07-02 Thread Klaus major-k via use-livecode
Hi Matthias, > Am 02.07.2025 um 16:59 schrieb Matthias Rebbe via use-livecode > : > > Klaus, > using shell on Mac or Windows you could do a ping HOSTNAME which then would > return the ip adress. > Or you do use the LC function hostNameToAdress. ;) ah, yes! :-) Thank you, will try that. > Reg

Re: Direct access to MySQL on mobile

2025-07-02 Thread Bob Sneidar via use-livecode
I doubt that the issue is encryption. The error is that the host is unknown. I would check to make sure your android has good router and dns settings, and that port 3306 is not firewalled somewhere. Also try and ping the hostname from somewhere outside the hosts local network, it doesn’t matter

Re: Direct access to MySQL on mobile

2025-07-02 Thread Matthias Rebbe via use-livecode
Klaus, using shell on Mac or Windows you could do a ping HOSTNAME which then would return the ip adress. Or you do use the LC function hostNameToAdress. ;) Regards, Matthias Von meinem iPad gesendet > Am 02.07.2025 um 16:30 schrieb Klaus major-k via use-livecode > : > > Hi Matthias, > >> A

Re: Direct access to MySQL on mobile

2025-07-02 Thread Klaus major-k via use-livecode
Hi Matthias, > Am 02.07.2025 um 16:20 schrieb Matthias Rebbe via use-livecode > : > > It looks like that the android phone cannot get the correct IP address for > the domain name. > Did you already try to use the IP address of my server, instead of the domain > name? will have to check if mys

Re: Direct access to MySQL on mobile

2025-07-02 Thread Matthias Rebbe via use-livecode
It looks like that the android phone cannot get the correct IP address for the domain name. Did you already try to use the IP address of my server, instead of the domain name? Von meinem iPhone gesendet > Am 02.07.2025 um 15:41 schrieb Klaus major-k via use-livecode > : > > Hi friends, > > w

Re: Google alert: My app needs to support Android 15 (API-Level 35)

2025-07-01 Thread Bob Sneidar via use-livecode
The danger of using Google services (especially the free ones) from the start is that they could change or eliminate it at any time. So here we are. > On Jul 1, 2025, at 10:57 AM, Klaus major-k via use-livecode > wrote: > > Hi all, > > is LC 10.0.2 supporting the new requirements of Google?

Re: LiveCode Community on Mac M4 ?

2025-06-29 Thread Roger Guay via use-livecode
Thank you, Rolf! I will treasure this post in case I ever need it in the future, when we lose LiveCode Classic Roger > On Jun 29, 2025, at 2:46 AM, Rolf Kocherhans via use-livecode > wrote: > > Hi all, > > I just wanted to clarify a common misconception: > > The reason LiveCode Community do

Re: LiveCode Community on Mac M4 ?

2025-06-29 Thread Rolf Kocherhans via use-livecode
Hi all, I just wanted to clarify a common misconception: The reason LiveCode Community doesn’t run on newer Macs isn’t due to the M4 chip. The real issue stems from a change Apple introduced starting with macOS 14 (Sonoma)—specifically, changes to how the Edit menu behaves and additional comm

Re: Fwd: LiveCode Community on Mac M4 ?

2025-06-28 Thread Tim Selander via use-livecode
Trying once more An earlier version of this failed. Because there were links? Attachments? I don't know. Greetings, I found the patches still on my machine, but no instructions on how to use them -- it was a bit convoluted as I recall. I found the original online reference (I think

Re: Browser widget and javascript

2025-06-28 Thread Tom Glod via use-livecode
Sometimes triggering the callback is tricky, here is a simple working example. The widget has a javascript handler called "ReturnPageHeight" which receives the result in its first parameter command getPageHeight pBrowser local tScript -- JavaScript code to get the page's scrollable height

Re: LiveCode Community on Mac M4 ?

2025-06-28 Thread harrison--- via use-livecode
Eons ago LC worked on Raspberry Pi. I don’t remember if it was the community version or not. Might have been version 6.x.x I don’t remember the details. Good luck! Rick > On Jun 27, 2025, at 12:12 PM, Bob Sneidar via use-livecode > wrote: > > Did Community ever work on ARM based processors?

Re: Browser widget and javascript

2025-06-28 Thread Andreas Bergendal via use-livecode
Certainly! 1) put ”liveCode.MyCommand(T.length);" at the end of your JavaScript code. 2) Add ”MyCommand” to the browser widget’s javascriptHandlers (either by script or in the field for it in the inspector) 3) Add the handler ”on MyCommand pT” to the browser’s script (or your card script or sta

Re: LiveCode Community on Mac M4 ?

2025-06-27 Thread Tim Selander via use-livecode
Awhile back there was a fellow who wrote a patch to let Community run on M1 macs. He was not an LC user, but wrote it for a friend. There was some wondering if it was really ok since no one knew him. But I ran the patch, and have been using Community on my M1 mac air. I will try to dig out tha

Re: LiveCode Community on Mac M4 ?

2025-06-27 Thread jbv via use-livecode
Le 2025-06-27 15:47, Roger Guay via use-livecode a écrit : I believe it was Richmond, but I’ve tried it on my M1 Mac and I Couldn’t get it to work. Did it crash at startup ? Did you use Rosetta ? Which Community version dis you try ? ___ use-live

Re: LiveCode Community on Mac M4 ?

2025-06-27 Thread Roger Guay via use-livecode
Crashed on startup. Did not use Rosetta. Livecode Community 9.6.3 > On Jun 27, 2025, at 12:55 PM, jbv via use-livecode > wrote: > > Le 2025-06-27 15:47, Roger Guay via use-livecode a écrit : >> I believe it was Richmond, but I’ve tried it on my M1 Mac and I Couldn’t get >> it to work. > > Did

Re: LiveCode Community on Mac M4 ?

2025-06-27 Thread Roger Guay via use-livecode
I believe it was Richmond, but I’ve tried it on my M1 Mac and I Couldn’t get it to work. Roger > On Jun 27, 2025, at 9:25 AM, jbv via use-livecode > wrote: > > I think I read on this list or on the forum that someone > used it on M1 or M2 Mac. Perhaps with Rosetta ? > > Le 2025-06-27 12:

Re: LiveCode Community on Mac M4 ?

2025-06-27 Thread jbv via use-livecode
I think I read on this list or on the forum that someone used it on M1 or M2 Mac. Perhaps with Rosetta ? Le 2025-06-27 12:12, Bob Sneidar via use-livecode a écrit : Did Community ever work on ARM based processors? Bob S On Jun 26, 2025, at 10:35 PM, jbv via use-livecode wrote: Hi list, H

Re: LiveCode Community on Mac M4 ?

2025-06-27 Thread Bob Sneidar via use-livecode
Did Community ever work on ARM based processors? Bob S > On Jun 26, 2025, at 10:35 PM, jbv via use-livecode > wrote: > > Hi list, > > Has anyone tried to use a version of LiveCode Community > on a Mac M4 with Sequoia ? > Every installation I tried crashed at startup (9.6.2 fo > instance), a

Re: Animations in LC

2025-06-26 Thread Bob Sneidar via use-livecode
I have heard that they may work or they may not. No one knows. Bob S > On Jun 21, 2025, at 10:58 AM, J. Landman Gay via use-livecode > wrote: > > Agnostibiotics! I've always wondered what was in those "health supplements" > that do nothing. > > -- > Jacqueline Landman Gay | jac...@hyperact

Re: Animations in LC

2025-06-22 Thread harrison--- via use-livecode
Hi Richard, I realize that email is a terrible substitute for verbal communication. I did not read anywhere that Klaus was offering to file a bug report for me in what he wrote. It sounded more like he wanted me to write to LC support privately about my concerns. In no way should anyone have

Re: Animations in LC

2025-06-22 Thread Richard Gaskin via use-livecode
Rick Harrison wrote: > The compiler would have helped to speed up > things so we could make better animations > and games. I have been tapping my foot for > years for that.    Maybe not.  The compiler will improve performance for many areas of computation, but the biggest bottleneck for animation

Re: Animations in LC

2025-06-21 Thread J. Landman Gay via use-livecode
Agnostibiotics! I've always wondered what was in those "health supplements" that do nothing. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On June 20, 2025 7:20:33 AM Martin Koob via use-livecode wrote: Hi Klaus How did you manage

Re: Android what API with LC 10.0.2

2025-06-20 Thread Klaus major-k via use-livecode
Hi Paul, > Am 20.06.2025 um 17:18 schrieb Paul Dupuis via use-livecode > : > > Likewise - no iOS or Android development, just macOS and Windows here > Did you try asking on the Forums? My impressions is that more of the newer > Livecoders use the Forum and it is mostly old folks on the email li

Re: Android what API with LC 10.0.2

2025-06-20 Thread J. Landman Gay via use-livecode
Sorry I can't help either, I haven't worked with LC 10 much. This is probably a question for LC support. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On June 20, 2025 6:43:54 AM Klaus major-k via use-livecode wrote: Noone a helpful

Re: Choosing a vps hosting with GPU

2025-06-20 Thread Tom Glod via use-livecode
Digital ocean just released a service where they offerGen AI models as a simple endpoint. https://www.digitalocean.com/products/gen-ai This looks like a good alternative to rolling your own with a vps. On Tue, Jun 17, 2025 at 6:52 AM jbv via use-livecode < use-livecode@lists.runrev.com> wrote

Re: Android what API with LC 10.0.2

2025-06-20 Thread Klaus major-k via use-livecode
Hi Jacqueline, > Am 20.06.2025 um 19:01 schrieb J. Landman Gay via use-livecode > : > > Sorry I can't help either, I haven't worked with LC 10 much. I think this is not a version but a general problem with SDKs and LC. > This is probably a question for LC support. Yep, I tried to avoid this,

Re: Android what API with LC 10.0.2

2025-06-20 Thread Klaus major-k via use-livecode
Hi Paul, > Am 20.06.2025 um 17:18 schrieb Paul Dupuis via use-livecode > : > > Likewise - no iOS or Android development, just macOS and Windows here > Did you try asking on the Forums? My impressions is that more of the newer > Livecoders use the Forum and it is mostly old folks on the email li

Re: Android what API with LC 10.0.2

2025-06-20 Thread Paul Dupuis via use-livecode
Likewise - no iOS or Android development, just macOS and Windows here Did you try asking on the Forums? My impressions is that more of the newer Livecoders use the Forum and it is mostly old folks on the email lists. On 6/20/2025 10:13 AM, Alex Tweedly via use-livecode wrote: On 20/06/2025

Re: Animations in LC

2025-06-20 Thread Klaus major-k via use-livecode
Hi Martin, > Am 19.06.2025 um 17:53 schrieb Martin Koob via use-livecode > : > > There was an animation library for LiveCode called animationEngine developed > by Malte Brill. > He stopped development, changed the licence to public domain and put it up on > GitHub. > > https://github.com/de

Re: Android what API with LC 10.0.2

2025-06-20 Thread Alex Tweedly via use-livecode
On 20/06/2025 12:41, Klaus major-k via use-livecode wrote: Noone a helpful hint? This is s sad nowadays, a couple of years ago I would have been flooded with responses immediately, with or without cheese... :-/ Sorry Klaus, Android is outside my experience or knowledge. Alex __

Re: Animations in LC

2025-06-20 Thread Martin Koob via use-livecode
Hi Klaus How did you manage to stop? I’ve tried everything, antacids, probiotics, antibiotics and even agnostibiotics. No relief, always with the belkking. People pretend not to notice, but I know they know. Oh the pain of belkosoritiosis! ; • ) Have a good weekend. BTW I did not know ab

Re: Android what API with LC 10.0.2

2025-06-20 Thread Klaus major-k via use-livecode
Noone a helpful hint? This is s sad nowadays, a couple of years ago I would have been flooded with responses immediately, with or without cheese... :-/ > Am 18.06.2025 um 17:40 schrieb Klaus major-k via use-livecode > : > > Additional infos: > >> Am 18.06.2025 um 15:38 schrieb Klaus major-

Re: Animations in LC

2025-06-19 Thread Martin Koob via use-livecode
There was an animation library for LiveCode called animationEngine developed by Malte Brill. He stopped development, changed the licence to public domain and put it up on GitHub. https://github.com/derbrill/animationEngine/blob/master/README.md animationEngine/README.md at master · derbrill/an

Re: Animations in LC

2025-06-18 Thread harrison--- via use-livecode
Hi Klaus, Oops, I thought I was just having a conversation. I forgot we aren’t supposed to ever say anything publicly that might be construed to be negative on this list. Sorry about that. Maybe you could rephrase it more like, "We could sure use a compiler for LC to help make all animations run

Re: Android what API with LC 10.0.2

2025-06-18 Thread Klaus major-k via use-livecode
Additional infos: > Am 18.06.2025 um 15:38 schrieb Klaus major-k via use-livecode > : > > Hi friends, > > I have a student who started to work with a DEMO version today and now has 9 > days left. > He will defintively BUY a license once we get ANDROID setup correctly and > ONLY if we > get

Re: Animations in LC

2025-06-18 Thread Klaus major-k via use-livecode
Hi Rick, > Am 17.06.2025 um 23:26 schrieb harrison--- via use-livecode > : > > Hi Klaus, > > While you are at it, please ask them whatever > happened to our compiler that we paid for and > never received! > > The compiler would have helped to speed up > things so we could make better animation

Re: Animations in LC

2025-06-17 Thread Andreas Bergendal via use-livecode
Hi Klaus, It would indeed be nice to have APNG supported in the image object. In the meantime, one workaround would be to render APNGs in the browser widget. I threw together a small example here: https://wheninspace.com/test/apng/ (Incidentally also proving that it works smoothly as web deployme

Re: Animations in LC

2025-06-17 Thread harrison--- via use-livecode
Hi Klaus, While you are at it, please ask them whatever happened to our compiler that we paid for and never received! The compiler would have helped to speed up things so we could make better animations and games. I have been tapping my foot for years for that. Maybe we should receive a a full re

Re: Animations in LC

2025-06-17 Thread harrison--- via use-livecode
Hi Klaus, While you are at it, please ask them whatever happened to our compiler that we paid for and never received! The compiler would have helped to speed up things so we could make better animations and games. I have been tapping my foot for years for that. Maybe we should receive a a full re

Re: Bill Atkinson, Inventor or HyperCard, dies aged 74

2025-06-10 Thread JosebaTELUR via use-livecode
A big one. Hypercard was a great software. He made even those of us who = didn't know how to program did it. Thank you Bill. Un saludo. Joseba Aguayo Fern=C3=A1ndez (jagu...@telur.es) ___ use-livecode mailing list use-livecode@lists.runrev.com Please vi

Re: Remotedebuuger error on startup

2025-06-09 Thread Bob Sneidar via use-livecode
This happens to me when I am using a modal dialog and there is a runtime er= ror while the dialog is in use.=20 Bob S > On Jun 9, 2025, at 1:32 PM, Paul Dupuis via use-livecode wrote: >=20 > Help, >=20 > When I start up the mainstack of our app under LC 9.6.13 STABLE, LC 10.0.= 1 STABLE or 10.0

Re: Bill Atkinson, Inventor or HyperCard, dies aged 74

2025-06-09 Thread Bob Sneidar via use-livecode
SG1tbeKApiBOT1Qgc3dpdGNoaW5nIHRvIHBsYWluIHRleHQgZm9yIHRoZSBmb3JtYXR0aW5nIG9m IG15IGVtYWlsIHNlZW1zIHRvIGhhdmUgY29ycmVjdGVkIHRoZSBpc3N1ZSB3aXRoIHRoZSBhZGRp dGlvbmFsIGNoYXJhY3RlcnMuIA0KDQpCb2IgUw0KDQoNCj4gT24gSnVuIDksIDIwMjUsIGF0IDEx OjIxIEFNLCBCb2IgU25laWRhciA8Ym9ic25laWRhckBpb3RlY2RpZ2l0YWwuY29tPiB3

Re: Bill Atkinson, Inventor or HyperCard, dies aged 74

2025-06-09 Thread Bob Sneidar via use-livecode
My first Hypercard app was for a radio ministry. It tracked call in respons= es to promotions we aired so we could see what stations were effective. Eve= ntually it had a weighted formula for calculating cost vs. income for airin= g on each radio station. It even cut checks!=20 Bob S > On Jun 9,

Re: Bill Atkinson, Inventor or HyperCard, dies aged 74

2025-06-09 Thread Jeff Reynolds via use-livecode
Very sorry to hear that. HC turned a hobby and research aid in grad school i= nto being the nucleus to bring together a number of hats into a career for 3= 5 years. Certainly gave me a new and interesting path in life when I decided= not to be a prof after post doc. I was able to use HC for some p

Re: Bill Atkinson, Inventor or HyperCard, dies aged 74

2025-06-08 Thread Kaveh Bazargan via use-livecode
He was the best. And shame on Jobs for killing HC. Sent from MetroMail On Mon, 9 Jun 2025 at 01:02, Pi Digital via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi all > > I thought many of you would find nostalgia and be interested to know that > de= > ar Bill Atkinson, inventor of so

Re: macOS Sequoia (15.5..0) and permissions

2025-06-05 Thread Bob Sneidar via use-livecode
know most macOS users have full admin of their computers, but in some o= f our users are students on university lab systems where permissions are re= stricted. >=20 > I have run into a problem where 'the detailed folders' is failing with an= execution error "get: error in ex

Re: Testing the list

2025-06-05 Thread Bob Sneidar via use-livecode
Others too. I am using Apple Mail.=20 Bob S > On Jun 5, 2025, at 8:14 AM, harrison--- via use-livecode wrote: >=20 > Hi Bob, >=20 > Emails from you appear to be messed up. >=20 > Rick >=20 >> On Jun 5, 2025, at 11:07 AM, Bob Sneidar via use-livecode =3D > wrote: >> =3D20 >> Apparently neither

Re: Testing the list

2025-06-05 Thread Bob Sneidar via use-livecode
Apparently neither is mine.=20 Bob S > On Jun 5, 2025, at 8:01 AM, Bob Sneidar via use-livecode wrote: >=20 > Yours is not.=3D20 >=20 > Bob S >=20 >=20 >> On Jun 5, 2025, at 5:41 AM, Mike Kerner via use-livecode sts.runrev.com> wrote: >> =3D20 >> your email is fine. >> =3D20 >> On Thu, Jun 5,

Re: Testing the list

2025-06-05 Thread harrison--- via use-livecode
Hi Bob, Emails from you appear to be messed up. Rick > On Jun 5, 2025, at 11:07 AM, Bob Sneidar via use-livecode = wrote: >=20 > Apparently neither is mine.=3D20 >=20 > Bob S >=20 >=20 >> On Jun 5, 2025, at 8:01 AM, Bob Sneidar via use-livecode = sts.runrev.com> wrote: >> =3D20 >> Yours is not

Re: Testing the list

2025-06-05 Thread Bob Sneidar via use-livecode
Looks good.=20 Bob S > On Jun 5, 2025, at 2:50 AM, Heather Laine via use-livecode wrote: >=20 > How is the formatting today? >=20 > Heather Laine > Customer Services Manager > LiveCode Ltd > www.livecode.com > Build Software You'll Never Outgrow >=20 > __

Re: Testing the list

2025-06-05 Thread Bob Sneidar via use-livecode
Yours is not.=20 Bob S > On Jun 5, 2025, at 5:41 AM, Mike Kerner via use-livecode wrote: >=20 > your email is fine. >=20 > On Thu, Jun 5, 2025 at 5:51=3DE2=3D80=3DAFAM Heather Laine via use-liveco= de < > use-livecode@lists.runrev.com> wrote: >=20 >> How is the formatting today? >>=20 >> Heathe

Re: Testing the list

2025-06-05 Thread panagiotis merakos via use-livecode
Looks good to me. Wondering how this message will show up. Cheers, Panos On Thu, 5 Jun 2025 at 16:53, harrison--- via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Heather, > > It looks Ok for the little bit you sent. > Perhaps you should do a test with a > lot more text in it to se

  1   2   3   4   5   6   7   8   9   10   >