Re: 10.0.1rc3, building to iOS: Compulsory 18.1, strange splash screen

2024-12-13 Thread Ben Rubinstein via use-livecode
Hi Panos, Thanks for replying. Re the version of Xcode, I think I was giving too much detail, and this part is probably not relevant. I started working with 13.2, and only launched it (and caused it to auto-update) after encountering problems - but it probably made no difference to the proble

Re: 10.0.1rc3, building to iOS: Compulsory 18.1, strange splash screen

2024-12-12 Thread panagiotis merakos via use-livecode
Hello Ben, Ok, so what you see RE Xcode happens because: - As of LC 10.0.1 RC-2, it is no longer required to have a specific version of Xcode / iOS SDK installed. LiveCode uses the one that is returned if you run this command in the Terminal: xcode-select -p - As of Xcode 15, the simulator runti

10.0.1rc3, building to iOS: Compulsory 18.1, strange splash screen

2024-12-12 Thread Ben Rubinstein via use-livecode
It's been a long time since I tried to build an iOS app, I thought I'd try to get it all working again. Inspired by Panos' release notes, I downloaded 10.0.1 (rc 3), so at least I wouldn't get the dreaded "Selected Xcode must have..." message. I checked the handy table at https://livecode.com

Re: Strange...

2024-08-28 Thread Bob Sneidar via use-livecode
put "777,50,1424,1" into tCoords put item 1 of tCoords > -32768 AND \ item 2 of tCoords > -32768 AND \ item 3 of tCoords < 32767 AND \ item 4 of tCoords < 32767 AND \ "936,474" is within tCoords --> true put "777,50,1424,10" into tCoords put item 1 of tCoords > -32768 AND \ item 2 of tCoor

Re: Strange...

2024-08-28 Thread jbv via use-livecode
Le 2024-08-28 13:52, Klaus major-k via use-livecode a écrit : should suffice for a simple addressbook app. :-) yep, but not for processing any kind of raw data... ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Strange...

2024-08-28 Thread Klaus major-k via use-livecode
> Am 28.08.2024 um 19:07 schrieb Brian Milby via use-livecode > : > > Exactly (that is essentially what I did) > > The actual full rect is: > (-32768,-32768,32767,32767) should suffice for a simple addressbook app. :-) > Brian Milby > br...@milby7.com > >> On Aug 28, 2024, at 11:19 AM, Bob

Re: Strange...

2024-08-28 Thread Brian Milby via use-livecode
Exactly (that is essentially what I did) The actual full rect is: (-32768,-32768,32767,32767) Brian Milby br...@milby7.com > On Aug 28, 2024, at 11:19 AM, Bob Sneidar via use-livecode > wrote: > > Easy enough to test. > > put ("936,474" is within "777,50,1424,32767”) —> true > put ("936,474

Re: Strange...

2024-08-28 Thread Bob Sneidar via use-livecode
Easy enough to test. put ("936,474" is within "777,50,1424,32767”) —> true put ("936,474" is within "777,50,1424,32768”) —> false Bob S > On Aug 28, 2024, at 5:17 AM, Brian Milby via use-livecode > wrote: > > Looks like ~32k is the max value allowed for a coordinate value. > > Brian Milby

Re: Strange...

2024-08-28 Thread Brian Milby via use-livecode
Looks like ~32k is the max value allowed for a coordinate value. Brian Milby br...@milby7.com > On Aug 28, 2024, at 4:22 AM, jbv via use-livecode > wrote: > > ("936,474" is within "777,50,1424,1") -> true > > ("936,474" is within "777,50,1424,10") -> false > > LC 9.6.9 on Mac OSX 10

Strange...

2024-08-28 Thread jbv via use-livecode
("936,474" is within "777,50,1424,1") -> true ("936,474" is within "777,50,1424,10") -> false LC 9.6.9 on Mac OSX 10.15 ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Strange syntax in new widgets!?

2024-05-25 Thread Klaus major-k via use-livecode
Hi Mike, > Am 25.05.2024 um 17:07 schrieb Mike Kerner via use-livecode > : > > a couple of notes on bob's comments: > * the widgets were written by a third party using lcb. lc purchased the > source. AHA! Well, that explains the "inconsistency" in the syntax. > unfortunately, the source is cl

Re: Strange syntax in new widgets!?

2024-05-25 Thread Mike Kerner via use-livecode
a couple of notes on bob's comments: * the widgets were written by a third party using lcb. lc purchased the source. unfortunately, the source is closed, so your ability to improve them is limited. (then there's the whole matter of the property editor and property inspector not being documented, wh

Re: Strange syntax in new widgets!?

2024-05-24 Thread Bob Sneidar via use-livecode
Yes I was very surprised when first working with widgets how limited their list of commands and properties are. The only widget I use is the segmented control, and only then because the tab panel looks godaweful ugly in Windows, and I can maintain visual constancy using the segmented control. We

Re: Strange syntax in new widgets!?

2024-05-21 Thread Klaus major-k via use-livecode
Hi Bob, > Am 21.05.2024 um 17:09 schrieb Bob Sneidar via use-livecode > : > > I find a lot of the widget properties less than useful. Try setting the > widths of all the tabs of a segmented control to a specified width based upon > the total width of the widget. no, I won't! :-D > Bob S > >

Re: Strange syntax in new widgets!?

2024-05-21 Thread Bob Sneidar via use-livecode
I find a lot of the widget properties less than useful. Try setting the widths of all the tabs of a segmented control to a specified width based upon the total width of the widget. Bob S On May 21, 2024, at 7:48 AM, Klaus major-k via use-livecode wrote: Hi firends, this came up in the LC f

Strange syntax in new widgets!?

2024-05-21 Thread Klaus major-k via use-livecode
Hi firends, this came up in the LC forum: How can I delete a line in a PolyGrid? "deleteline" or something did not work, so I searched the dictionary and found that one needs to set a PROPERTY to do so: ... put 2 into tLine set the pgDeleteRow of widget "PolyGrid" to tLine ... Very intuitive in

Re: "normal" Android app icon looks strange in LC 9.6.9 rc1

2022-10-12 Thread Klaus major-k via use-livecode
Hi Panos, > Am 12.10.2022 um 16:18 schrieb panagiotis m via use-livecode > : > > Hello Klaus, > > Nothing should have changed between 9.6.8 and 9.6.9 rc1 RE legacy/adaptive > icons. > > I guess you see this difference because either of these has changed: > - the android device > - the android

Re: "normal" Android app icon looks strange in LC 9.6.9 rc1

2022-10-12 Thread panagiotis m via use-livecode
Hello Klaus, Nothing should have changed between 9.6.8 and 9.6.9 rc1 RE legacy/adaptive icons. I guess you see this difference because either of these has changed: - the android device - the android version on the same device - the default launcher app - something else :) I believe that if you

Re: "normal" Android app icon looks strange in LC 9.6.9 rc1

2022-10-12 Thread Klaus major-k via use-livecode
Hi Panos, > Am 12.10.2022 um 15:08 schrieb panagiotis m via use-livecode > : > > Hello Klaus, > > What you see is the expected result. In fact, this is the reason one has to > use adaptive icons. You can use adaptive icons for non Google Play Store > apps as well. > > So, when you use a legacy

Re: "normal" Android app icon looks strange in LC 9.6.9 rc1

2022-10-12 Thread panagiotis m via use-livecode
Hello Klaus, What you see is the expected result. In fact, this is the reason one has to use adaptive icons. You can use adaptive icons for non Google Play Store apps as well. So, when you use a legacy icon, which is a square png, this does not guarantee that the app icon in the Home screen will

"normal" Android app icon looks strange in LC 9.6.9 rc1

2022-10-12 Thread Klaus major-k via use-livecode
Hi friends, the subject says it all, and here a screenshot: LC 9.6.9 rc 1 on macOS 12.6. I remembered a posting on this list, that one need to first click "Adaptive icon" and then back to "Icon" to force the correct creation of

Strange thing: older App Store app fullscreen shown on iOS 15.2

2021-12-24 Thread William de Smet via use-livecode
Hi there, I got a new iPad 2021 with iOS 15.2 (10.2 inch) and downloaded some of my own older apps on it from the App Store. These apps have been there for several years and the last update was from 2019. I noticed that these apps are shown fullscreen and that is strange because none of these

Re: Strange closeStack behavior

2021-10-04 Thread Bob Sneidar via use-livecode
Okay, so I've come up with a relatively simple way to go about this. The problem is that when in standalone mode, closeStack does not close the splash stack, so the app keeps running even though there are no open windows, so I need to quit when the mainStack closes. But in Development mode, I

Re: Strange closeStack behavior

2021-10-04 Thread Bob Sneidar via use-livecode
Got it thanks. That explains why I cannot even trap for closeStackRequest int othe substack script. The really odd thing is I can in the message box enter "close stack Time Calculator" and it closes without even bothering to ask if I want to save it, even when it is "dirty". I was thinking of

Re: Strange closeStack behavior

2021-10-04 Thread J. Landman Gay via use-livecode
On 10/4/21 12:14 PM, Bob Sneidar via use-livecode wrote: The stack in question is the only substack of a couple without a custom menu, so I am wondering if the last stack with a custom menu becomes the topStack?? If there is no custom menu then LC's menu takes over, and that's the one that tri

Re: Strange closeStack behavior

2021-10-04 Thread Bob Sneidar via use-livecode
>> wrote: >>> >>> Hi. >>> >>> Maybe just before the closeStackRequest line, ask for the topStack. Is it >>> possible the mainStack is somehow in front? >>> >>> Craig >>> >>>> On Oct 1, 2021, at 6:22

Re: Strange closeStack behavior

2021-10-04 Thread Bob Sneidar via use-livecode
; >> Maybe just before the closeStackRequest line, ask for the topStack. Is it >> possible the mainStack is somehow in front? >> >> Craig >> >>> On Oct 1, 2021, at 6:22 PM, Bob Sneidar via use-livecode >>> wrote: >>> >>> Hi all.

Re: Strange closeStack behavior

2021-10-04 Thread Bob Sneidar via use-livecode
> >> On Oct 1, 2021, at 6:22 PM, Bob Sneidar via use-livecode >> wrote: >> >> Hi all. >> >> Very strange. I have a substance belonging to a mainstack that has LOTS of >> other sub stacks. Only on this ONE substack, when I click the close button

Re: Strange closeStack behavior

2021-10-04 Thread Craig Newman via use-livecode
Hi. Maybe just before the closeStackRequest line, ask for the topStack. Is it possible the mainStack is somehow in front? Craig > On Oct 1, 2021, at 6:22 PM, Bob Sneidar via use-livecode > wrote: > > Hi all. > > Very strange. I have a substance belonging to a mainstac

Strange closeStack behavior

2021-10-01 Thread Bob Sneidar via use-livecode
Hi all. Very strange. I have a substance belonging to a mainstack that has LOTS of other sub stacks. Only on this ONE substack, when I click the close button (the red dot in the upper left of a MacOS window) it asks me if I want to ave the stack, EVEN THOUGH I have a closeStackRequest in the

Re: Strange script error - pass openStack

2021-09-23 Thread Curry Kenworthy via use-livecode
Craig: > I will indeed get an error in the message box > if I just invoke “openStack” directly. So Peter, make sure whether this bug is your original issue, and not just a red herring from the debugging itself. Either way: > 3. But the home.livecodescript code could be more robust. > (Always

Re: Strange script error - pass openStack

2021-09-23 Thread Craig Newman via use-livecode
Hi. You are getting the error message in the message box? If I make a new stack and place your handler in the card script, I will indeed get an error in the message box if I just invoke “openStack” directly. Of course, if I “send openStack to this card” all works fine. Placing a red dot shoul

Re: Strange script error - pass openStack

2021-09-23 Thread Curry Kenworthy via use-livecode
Peter: > I’ve just tried making a new stack that has: > on openStack >pass openStack > end openStack 1. Make sure this openStack is in your first CARD's script. > I poked into the script of the stack home.livecodescript > and see these lines > if the short name of the owner of the target

Strange script error - pass openStack

2021-09-22 Thread Peter Bogdanoff via use-livecode
In trying to debug a problem with my music program, at one point I got an error dialog: Message execution error: Error description: Object Name: Hint: stack "/Applications/LiveCode Business 9.6.1.app/Contents/Tools/Toolset/home.livecodescript” So, I tried stepping through an openStack handler I

Re: [bug] strange memory leak in LC

2021-03-31 Thread Richard Gaskin via use-livecode
Andre Garzia wrote: > The stack that was opened is a project that has many mainstacks in > it’s stackfiles. Some of those stacks make use of the browser > widget... Don't know if this may be related to the leak, but worth heeding anyway - apparently WebKit has some serious issues, including an

Re: [bug] strange memory leak in LC

2021-03-31 Thread Andre Garzia via use-livecode
Hi Panos, The stack that was opened is a project that has many mainstacks in it’s stackfiles. Some of those stacks make use of the browser widget but the stacks that were open during the problem were not using it. I don’t recall the dictionary being open at that time either. I simply killed LC

Re: [bug] strange memory leak in LC

2021-03-31 Thread panagiotis merakos via use-livecode
Hello all, After a brief Google search it seems there are some other apps that have a similar memory leak after upgrading to Big Sur: https://discussions.apple.com/thread/252276774 https://discussions.apple.com/thread/252090206 The issue folks here (in this list) have mentioned does not seem to

Re: [bug] strange memory leak in LC

2021-03-28 Thread Andrew at MidWest Coast Media via use-livecode
/memory_leak.png?dl=0 I have 40GB of physical RAM, but LC was trying to use almost 300GB (virtual?) —Andrew Bell > > From: Phil Davis > To: How to use LiveCode > Subject: Re: [bug] strange memory leak in LC > Message-ID: <968340be-831e-f86f-7f1e-9cda1ed22...@pdslabs.net> >

Re: [bug] strange memory leak in LC

2021-03-26 Thread Phil Davis via use-livecode
I created a little "leak test" stack that runs the "leaks" shell command against the processID of the LC engine that runs the stack. It checks for new leaks every 60 seconds and lists the number and size of each new leak found. I'm running it in LC 9.6.1 on 3 Macs right now - Catalina, High Sierra

Re: [bug] strange memory leak in LC

2021-03-26 Thread John Balgenorth via use-livecode
I am not personally using Bug Sur but if you make a standalone does it leak memory too or is this only with the development system? JB > On Mar 26, 2021, at 7:29 PM, scott--- via use-livecode > wrote: > > I’m running Big Sur and just got a warning from the OS that I was out of > application

Re: [bug] strange memory leak in LC

2021-03-26 Thread scott--- via use-livecode
I’m running Big Sur and just got a warning from the OS that I was out of application memory. Livecode was using 133.52 GB of memory. It had been open for a couple days but it wasn’t doing anything. -- Scott Morrow Elementary Software (Now with 20% less chalk dust!) web https://elementarys

Re: [bug] strange memory leak in LC

2021-03-26 Thread Andre Garzia via use-livecode
Sean, The stack was not running anything. It was simply opened. I don’t believe it would leak like that. Anyway, I’m monitoring to see if it happens again. A > On 26 Mar 2021, at 13:01, Sean Cole (Pi) via use-livecode > wrote: > > Wow, Andre, that's impressive. That amounts to about 34MB per

Re: [bug] strange memory leak in LC

2021-03-26 Thread Sean Cole (Pi) via use-livecode
Wow, Andre, that's impressive. That amounts to about 34MB per minute over 48hrs. I've had a pretty massive stack (226MB file at the moment) on my Mac sitting here over the last week. Looking in the activity monitor, LC has 987MB associated with it. and watching it over a period of time it remains s

[bug] strange memory leak in LC

2021-03-26 Thread Andre Garzia via use-livecode
I have no idea what happened. I’m running LC 9.6.2-rc-3 on macOS Big Sur on M1 ISA (so it is running under Rosetta 2). I kept the IDE opened for a couple days, I was working on a gaziliion stacks at the same time and was not yet ready to close them. The stacks were not doing anything, they were

Re: Strange bug

2020-11-24 Thread Bob Sneidar via use-livecode
I will attest to the fact that strange things happen with drag drop and not just with Livecode. For instance if I drag a PDF to a mounted share, often, but not every time, Mail becomes unresponsive and I have to quit it and relaunch it. Also when drag dropping files from the Finder onto a

Re: Strange bug

2020-11-24 Thread Richmond via use-livecode
Yes, as described (LC 9.6.1, macOS 11.1 Beta). On 24.11.20 14:32, Klaus major-k via use-livecode wrote: Hi friends, FYI: I found a very strange and serious bug, if you have a minute, please take a look: <https://quality.livecode.com/show_bug.cgi?id=22992> A real showstopper in my o

Re: Strange bug

2020-11-24 Thread Klaus major-k via use-livecode
Hi Matthias, > Am 24.11.2020 um 14:02 schrieb Klaus major-k : > > Hi Matthias, > >> Am 24.11.2020 um 13:46 schrieb improve-revolution-010...@m-r-d.de: >> >> May this is because the drapDrop message is still processed or how this is >> called in english. > > yes, that is what I think, too. >

Re: Strange bug

2020-11-24 Thread Klaus major-k via use-livecode
> Am 24.11.2020 um 13:32 schrieb Klaus major-k via use-livecode > : > > Hi friends, > > FYI: I found a very strange and serious bug, if you have a minute, please > take a look: > <https://quality.livecode.com/show_bug.cgi?id=22992> > A real showstopper in

Strange bug

2020-11-24 Thread Klaus major-k via use-livecode
Hi friends, FYI: I found a very strange and serious bug, if you have a minute, please take a look: <https://quality.livecode.com/show_bug.cgi?id=22992> A real showstopper in my opinion! With an example stack (in my dropbox, my browser does not allow me to select a file as attachment!?).

RE: Strange behavior between Mysql, MariaDB and SSL.

2020-08-27 Thread Heriberto Torrado via use-livecode
Thanks Mattias, I appreciate your knowledge. You are very useful and kind (as always). Best, Hery From: matthias_livecode_150...@m-r-d.de Sent: Thursday, August 27, 2020 12:09 PM To: How to use LiveCode Cc: htorr...@networkdreams.net Subject: Re: Strange behavior between Mysql

RE: Strange behavior between Mysql, MariaDB and SSL.

2020-08-27 Thread Heriberto Torrado via use-livecode
Subject: Re: Strange behavior between Mysql, MariaDB and SSL. You are correct. But as Heriberto wort, it is an inhouse app, i thought using ODBC connector from Oracle might be better than lowering the security level of the database. - Matthias Rebbe Life Is Too Short For Boring Code > Am 27.08.2

RE: Strange behavior between Mysql, MariaDB and SSL.

2020-08-27 Thread Heriberto Torrado via use-livecode
20 11:41 AM To: How to use LiveCode Cc: Bob Sneidar Subject: Re: Strange behavior between Mysql, MariaDB and SSL. Just a heads up, ODBC is a local service, not a network protocol. You have to create a DSN on the client OS which handles the network communications for you. So every client that con

Re: Strange behavior between Mysql, MariaDB and SSL.

2020-08-27 Thread matthias rebbe via use-livecode
necting to MySQL using ODBC instead of the built-in LiveCode > MySQL client? > > Best, > Hery > > -Original Message- > From: use-livecode On Behalf Of > matthias rebbe via use-livecode > Sent: Wednesday, August 26, 2020 10:42 AM > To: How to use LiveCode > Cc:

Re: Strange behavior between Mysql, MariaDB and SSL.

2020-08-27 Thread matthias rebbe via use-livecode
Of course it was meant to be "But as Heriberto wrote,.." - Matthias Rebbe Life Is Too Short For Boring Code > Am 27.08.2020 um 17:55 schrieb matthias_livecode_150...@m-r-d.de: > > You are correct. > But as Heriberto wort, it is an inhouse app, i thought using ODBC connector > from Oracle m

Re: Strange behavior between Mysql, MariaDB and SSL.

2020-08-27 Thread matthias rebbe via use-livecode
You are correct. But as Heriberto wort, it is an inhouse app, i thought using ODBC connector from Oracle might be better than lowering the security level of the database. - Matthias Rebbe Life Is Too Short For Boring Code > Am 27.08.2020 um 17:40 schrieb Bob Sneidar via use-livecode > : > >

Re: Strange behavior between Mysql, MariaDB and SSL.

2020-08-27 Thread Bob Sneidar via use-livecode
Just a heads up, ODBC is a local service, not a network protocol. You have to create a DSN on the client OS which handles the network communications for you. So every client that connects will need to have this DSN set up first. For the experienced, this is no big deal, but for the first time in

RE: Strange behavior between Mysql, MariaDB and SSL.

2020-08-26 Thread Heriberto Torrado via use-livecode
: matthias_livecode_150...@m-r-d.de Subject: Re: Strange behavior between Mysql, MariaDB and SSL. There are also free MySQL Connectors/ODBC available for different operating systems. The current ones are for Server 8.0,5.7 and 5.6. https://dev.mysql.com/downloads/connector/odbc/ They connectors can be downloaded

RE: Strange behavior between Mysql, MariaDB and SSL.

2020-08-26 Thread Heriberto Torrado via use-livecode
09 AM To: How to use LiveCode Cc: panagiotis merakos Subject: Re: Strange behavior between Mysql, MariaDB and SSL. Hello all, This is because MySQL 8 supports a stronger authentication method based on SHA256, and this method is used by default. LiveCode (as well as some other MySQL conne

RE: Strange behavior between Mysql, MariaDB and SSL.

2020-08-26 Thread Heriberto Torrado via use-livecode
- From: use-livecode On Behalf Of Bob Sneidar via use-livecode Sent: Tuesday, August 25, 2020 11:40 AM To: How to use LiveCode Cc: Bob Sneidar Subject: Re: Strange behavior between Mysql, MariaDB and SSL. mySQL for which platform? Last I checked, the build for Windows did NOT support

Re: Strange behavior between Mysql, MariaDB and SSL.

2020-08-26 Thread matthias rebbe via use-livecode
There are also free MySQL Connectors/ODBC available for different operating systems. The current ones are for Server 8.0,5.7 and 5.6. https://dev.mysql.com/downloads/connector/odbc/ They connectors can be downloaded without the need to be logged in. So no need for an account registration at dev

Re: Strange behavior between Mysql, MariaDB and SSL.

2020-08-26 Thread panagiotis merakos via use-livecode
Hello all, This is because MySQL 8 supports a stronger authentication method based on SHA256, and this method is used by default. LiveCode (as well as some other MySQL connectors/clients) do not support this authentication method yet. In this case, you could configure your MySQL installation to u

Re: Strange behavior between Mysql, MariaDB and SSL.

2020-08-25 Thread Bob Sneidar via use-livecode
mySQL for which platform? Last I checked, the build for Windows did NOT support encryption. There is a special branch that does, but I could never get it to work. What I came up with is an agent that resides on the SQL server, built in Livecode that listens for connections. It then handles the

Strange behavior between Mysql, MariaDB and SSL.

2020-08-24 Thread Heriberto Torrado via use-livecode
Dear livecode programmers, For a few years we ran an internal app that accessed a MariaDB database (no PHP or LiveCode Server middleware, just a raw connection) using SSL. The server running the database is old, so we moved to a new one. The new one comes with a Mysql 8 Database instead of Mar

Re: Small and strange problem

2020-05-14 Thread Paul Hibbert via use-livecode
Hi Graham, Thank you for the update. Sorry to hear about the flood, I know from personal experience what that’s like so I really wish you and your family well, and that you can get your home and life back in to normal very soon.. Paul > On May 14, 2020, at 03:17, Graham Samuel via use-livecode

Re: Small and strange problem

2020-05-14 Thread Graham Samuel via use-livecode
Hi Paul Sorry for the delay in replying but my house has just been inundated (it happened on Monday and we are still clearing up! Worst flood in more than 40 years in my French village). Anyway, the bug is registered as 22730. The problem is acknowledged - as I said in my submission, I’m not cl

Re: Small and strange problem

2020-05-11 Thread Paul Hibbert via use-livecode
Good point Ben, looks like that was my mistake. I don’t remember where I learned to use "if tError then”, but what I forgot was that it should have been testing for a false condition, so “if not tError then” does show the error when one occurs and skips when no error occurs. Fixing this returns

Re: Small and strange problem

2020-05-11 Thread Mark Waddingham via use-livecode
On 2020-05-11 18:18, Graham Samuel via use-livecode wrote: As I tiny bit of background, the script tries to parse a string that represents a longitude, copied from a web site. It certainly has some weird characters in it, but I thought I’d got round then. FWIW, the string is 004° 31′ 50″ W I am

Re: Small and strange problem

2020-05-11 Thread Graham Samuel via use-livecode
I set this hare running initially. I really do think there is a bug, because the thing works when stepped through but not if it’s allowed to run without interruption. In the stepped-through activity it’s easy to see that tMins does have a value. In my example it’s 31, or maybe it’s a string of w

Re: Small and strange problem

2020-05-11 Thread Ben Rubinstein via use-livecode
And re this part: >> Interestingly this >> >> on mouseUp pMouseButton >> try >> put (tMins/60) into tMins >> catch tError >> if tError then answer "An Error Occurred;" && tError & return & "tMins =" && tMins >> end try >> end mouseUp >> >> does NOT through an error or a catch err

Re: Small and strange problem

2020-05-11 Thread Rick Harrison via use-livecode
Hi Andy, Yes, tMins has to have a value or the statement makes no sense because LC has no context for what you are trying to do. LC doesn’t know if tMins is a string or something else. Rick > On May 11, 2020, at 4:24 AM, AndyP via use-livecode > wrote: > > I seem to have my posts dropped a

Re: Small and strange problem

2020-05-11 Thread Colin Holgate via use-livecode
Do you have an earlier line where you have set tMins? If it has never been set, would you export tMins/60 to work? Aside from that, there was a change in LiveCode 7 or 8, where you could no longer create a variable on the first line that it is used. You need to have declared it earlier on. >

Small and strange problem

2020-05-11 Thread AndyP via use-livecode
I seem to have my posts dropped at the moment hence this, I'm seeing the same error with on mouseUp pMouseButton put (tMins/60) into tMins answer tMins end mouseUp button "Button": execution error at line 2 (Operators /: error in left operand), char 1 Interestingly this on mouseUp pMous

Re: Small and strange problem

2020-05-10 Thread scott--- via use-livecode
How does tMins acquire the data? Are you certain it contains what you expect when you aren’t stepping through the code (and slowing things down)? perhaps a “put tMins" or “answer tMins” would expose something. (Probably not, but we are curious!) — Scott > On May 10, 2020, at 12:52 PM, Tom Glod

Re: Small and strange problem

2020-05-10 Thread Tom Glod via use-livecode
try putting a space between the left and right of the / and see if you still get it. On Sun, May 10, 2020 at 1:10 PM Paul Hibbert via use-livecode < use-livecode@lists.runrev.com> wrote: > No replies so far, so I had a few minutes spare and tried to recreate this > problem, but couldn’t. No matte

Re: Small and strange problem

2020-05-10 Thread Paul Hibbert via use-livecode
No replies so far, so I had a few minutes spare and tried to recreate this problem, but couldn’t. No matter what I put into tMins first, even an empty variable still returned 0, so my suggestion would be to wrap the script in a try - catch to see what’s going on with the left operand (tMins) dur

Small and strange problem

2020-05-09 Thread Graham Samuel via use-livecode
I’m using LC 9.6.0 dp4 and 9.5.1 - this issue is seen in both versions. I have a script with a very simple statement: put (tMins/60) into tMins tMins contains a number, and as expected I get a numeric result, for example if tMins is 31, I get 0.516667 but ONLY when I step through the script i

Re: Strange times, amazing projects

2020-04-03 Thread Devin Asay via use-livecode
Skip, have you tried the Google geocoding web service? Give it an address or landmark, and get back latitude/longitude coordinates. https://developers.google.com/maps/documentation/geocoding/start Fairly simple to get into, a snap to implement in LiveCode, and free until you exceed a certain nu

Strange times, amazing projects

2020-04-03 Thread Skip Kimpel via use-livecode
Good afternoon LC'ers (evening to some), Enjoyed the Zoom chat today and it was good to see all of your faces again. It has been way too long. Over the past couple of years I have been sidetracked from LC as I have not had the need to be as hands on as I once was. Now, however, I am forced to p

Re: strange problems with SEND: SOLVED

2020-01-17 Thread Klaus major-k via use-livecode
Hi all, DIY problems are the best, right? 8-) OK, everything works as advertized when you substitute the CORRECT variable for X in for "send... in X secs". I was adding "the seconds" which explains the resulting year 2070! :-D Sorry for the false alarm and thanks for the feedback and hints! I

Re: strange problems with SEND

2020-01-17 Thread Klaus major-k via use-livecode
Hi Mark, > Am 17.01.2020 um 18:31 schrieb Mark Waddingham via use-livecode > : > > On 2020-01-17 17:24, Klaus major-k via use-livecode wrote: >> ouch, sorry, TRUE! :-/ >> However the other message "onlinekursinfo" is also from me and I have >> no idea why it should be delivered on: >> Sunday, Fe

Re: strange problems with SEND

2020-01-17 Thread Mark Waddingham via use-livecode
On 2020-01-17 17:24, Klaus major-k via use-livecode wrote: ouch, sorry, TRUE! :-/ However the other message "onlinekursinfo" is also from me and I have no idea why it should be delivered on: Sunday, February 2, 2070, I did not script that!? I think you did ... Accidentally... THAT script als

Re: strange problems with SEND

2020-01-17 Thread Klaus major-k via use-livecode
Hi Matthias, > Am 17.01.2020 um 17:28 schrieb Matthias Rebbe via use-livecode > : > > Tested here with LC 9.51 and 9.6.0DP2 and both were successfull. yes, error on my side, THIS pending message is correct. It is another handler that I will have to check again. Thanks! Best Klaus -- Klaus M

Re: strange problems with SEND

2020-01-17 Thread Klaus major-k via use-livecode
Hi Mark, > Am 17.01.2020 um 17:29 schrieb Mark Waddingham via use-livecode > : > > Double check your pending messages after the send - the line you quoted > doesn’t match the name of the handler in send... ouch, sorry, TRUE! :-/ However the other message "onlinekursinfo" is also from me and I

Re: strange problems with SEND

2020-01-17 Thread Matthias Rebbe via use-livecode
Tested here with LC 9.51 and 9.6.0DP2 and both were successfull. I´ve extended your script, so it also checks/show the delivery time. on mouseup put the date into tDatum convert tDatum from date to dateitems add 1 to item 8 of tDatum put 8 into item 4 of tDatum ## dateitems: # 1. the year

Re: strange problems with SEND

2020-01-17 Thread Mark Waddingham via use-livecode
Double check your pending messages after the send - the line you quoted doesn’t match the name of the handler in send... Warmest Regards, Mark. Sent from my iPhone > On 17 Jan 2020, at 15:46, Klaus major-k via use-livecode > wrote: > > HI all, > > I want to execute a handler in the future

Re: strange problems with SEND

2020-01-17 Thread Klaus major-k via use-livecode
Hi Bob, > Am 17.01.2020 um 17:21 schrieb Bob Sneidar via use-livecode > : > > This got me thinking, I've pondered a way to run scheduled tasks, and how I > would go about it. I think what I would do is have a faceless standalone that > once launched sent a command in time every second, or 5 se

Re: strange problems with SEND

2020-01-17 Thread Bob Sneidar via use-livecode
This got me thinking, I've pondered a way to run scheduled tasks, and how I would go about it. I think what I would do is have a faceless standalone that once launched sent a command in time every second, or 5 seconds or whatever, and the handler would then check a list or a database for tasks w

Re: strange problems with SEND

2020-01-17 Thread Klaus major-k via use-livecode
Hi all, > Am 17.01.2020 um 16:58 schrieb Klaus major-k via use-livecode > : > > Just tested this in LC 5.02 and it worked as exspected! > The pendingmessages show 1579330812.096689 as "delivery" time > which resolves nicely to -> Saturday, January 18, 2020 > > Tested also in LC 9.05 and it work

Re: strange problems with SEND

2020-01-17 Thread Klaus major-k via use-livecode
Just tested this in LC 5.02 and it worked as exspected! The pendingmessages show 1579330812.096689 as "delivery" time which resolves nicely to -> Saturday, January 18, 2020 Tested also in LC 9.05 and it works as exspected, too!? A new bug? :-/ > Am 17.01.2020 um 16:46 schrieb Klaus major-k via u

Re: strange problems with SEND

2020-01-17 Thread Klaus major-k via use-livecode
Hi all, this is on LC 9.5.1 on macOS 10.14.6. > Am 17.01.2020 um 16:46 schrieb Klaus major-k via use-livecode > : > > HI all, > > I want to execute a handler in the future -> tomorrow at 8:00 AM > So I scripted: > ... > put the date into tDatum > convert tDatum from date to dateitems > add 1 t

strange problems with SEND

2020-01-17 Thread Klaus major-k via use-livecode
HI all, I want to execute a handler in the future -> tomorrow at 8:00 AM So I scripted: ... put the date into tDatum convert tDatum from date to dateitems add 1 to item 3 of tDatum put 8 into item 4 of tDatum ## dateitems: # 1. the year # 2. the month number # 3. the day of the mon

Re: Strange artifacts DG2 on Android and Native fields not always sowing

2019-07-09 Thread JJS via use-livecode
Created a bug report and send video to Panos. https://quality.livecode.com/show_bug.cgi?id=22231 Op 8-7-2019 om 22:37 schreef JJS via use-livecode: Hi, i'm getting strange artifacts on 2 different Android devices. 1st is a tablet Android 4.4.2 2nd is a phone Android 8.1 The DG2 is a

Strange artifacts DG2 on Android and Native fields not always sowing

2019-07-08 Thread JJS via use-livecode
Hi, i'm getting strange artifacts on 2 different Android devices. 1st is a tablet Android 4.4.2 2nd is a phone Android 8.1 The DG2 is a table of which i made the rows a bit higher so the text is bigger and better readable. In IDE lc951dp1 it looks perfect, every line on it's own

Re: Strange error from iOS Standalone Builder

2018-05-29 Thread Bob Sneidar via use-livecode
Not knowing much specifically about these problems, but having some experience in secure communications as an IT person, encryption standards are in a state of constant flux. Old ciphers are abandoned over time and new ones are implemented. I've mentioned before the debaucle in the copier indust

RE: Strange error from iOS Standalone Builder

2018-05-29 Thread Ralph DiMola via use-livecode
...@lists.runrev.com] On Behalf Of Sannyasin Brahmanathaswami via use-livecode Sent: Monday, May 28, 2018 1:33 PM To: How LiveCode Cc: Sannyasin Brahmanathaswami Subject: Strange error from iOS Standalone Builder We had our 3-year hardware refresh (sell all old Macs, enterprise wises and get new

Re: Strange error from iOS Standalone Builder

2018-05-29 Thread Bob Sneidar via use-livecode
That is a good point. You can have an account with no password set, but a number of things will not work with it, including the keychain which I believe MUST have a password. Bob S > On May 28, 2018, at 11:16 , prothero--- via use-livecode > wrote: > > I think this is the admin password fo

Re: Strange error from iOS Standalone Builder

2018-05-28 Thread prothero--- via use-livecode
I think this is the admin password for your Macintosh. If you haven’t set one, you do this in System Preferences, under the Apple symbol at upper left. Click on “Users and Groups” and you will see the “Change Password” button. Bill William Prothero http://earthlearningsolutions.org > On May 28

Strange error from iOS Standalone Builder

2018-05-28 Thread Sannyasin Brahmanathaswami via use-livecode
We had our 3-year hardware refresh (sell all old Macs, enterprise wises and get new ones) and I have a new MacBook Pro. It still running High Sierra 10.13.4, just as the old did I set up if iOS with new certificate / provisioning profiles X Code 9.2. / LC9 Run my build on the new machine an

Re: Strange problem with tsNet external on Windows

2018-03-16 Thread Graham Samuel via use-livecode
I finally answered my own question - it was simple and I was nearly right in my first guess. I forgot to include the ‘Externals’ folder in the files and folders encapsulated by the PC installer maker. I suppose I live too much in the Mac world. The live program looks for an ‘Externals’ folder in

RE: Strange problem with tsNet external on Windows

2018-03-15 Thread Ralph DiMola via use-livecode
ispatch "revLoadLibrary" to stack "tsNetLibUrl" 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 Graham Samuel via use-livecode Sent: Thursday, M

  1   2   3   4   5   >