Re: ENTER in scripts

2022-11-09 Thread Bob Sneidar via use-livecode
Hmmm... On MacOS enter does nothing. Return inserts a carriage return. I use tab then cmd-save to format then comile the script. Bob S > On Nov 7, 2022, at 13:29 , Ralph DiMola via use-livecode > wrote: > > Well, you learn something exceedingly simple every day. OK I get it. Enter is > the

Re: LC Date Conversions post 2035

2022-11-09 Thread Bob Sneidar via use-livecode
Probably based on Unix... ;-) Bob S On Nov 7, 2022, at 06:55 , Martin Koob via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Not sure what Window is doing that it is only going to work till 3000. Maybe MicroSoft have decided to EOL Windows then and have plans to release a total

Re: Really OT, but i need the help of native English speakers

2022-10-31 Thread Bob Sneidar via use-livecode
I feel the same way about surveys. I will answer short surveys, but the really long ones are I think a mechanism invented by upper management to get their customers to do their jobs for them. Bob S On Oct 31, 2022, at 12:40 , Mark Wieder via use-livecode mailto:use-livecode@lists.runrev.com>>

Re: Anyone any experience with Livecode under Ventura?

2022-10-25 Thread Bob Sneidar via use-livecode
If you have the resources, just do a Time Machine backup so you can recover if needed. I did an upgrade recently on my home iMac, and it completely borked the boot volume. Luckily I had a TM backup and it saved my arsenal. First time I've seen a MacOS upgrade bork a boot volume. Bob S > On O

Re: Quick and simple web demos?

2022-10-03 Thread Bob Sneidar via use-livecode
This is so rediculously typical of any search features on any number of web sites. Copier partner portals are right up there. You can search for anything and get a plethora of everything EXCEPT anything you are searching for. Bob S > On Sep 30, 2022, at 18:03 , Mark Wieder via use-livecode >

Re: RegEx to convert standard date to sql date

2022-10-03 Thread Bob Sneidar via use-livecode
Jacques Clavel via use-livecode > mailto:use-livecode@lists.runrev.com>> wrote: > > Why not : > set itemdel to "/" > get tDate > put item 3 of it & item 1 of it & item 2 of it into tSql > > JC > > Le ven. 30 sept. 2022 à 19:13, Bob Sneidar vi

Re: RegEx to convert standard date to sql date

2022-09-30 Thread Bob Sneidar via use-livecode
itemdel to "/" > get tDate > put item 3 of it & item 1 of it & item 2 of it into tSql > > JC > > Le ven. 30 sept. 2022 à 19:13, Bob Sneidar via use-livecode < > use-livecode@lists.runrev.com> a écrit : > >> I'm trying to convert a date

RegEx to convert standard date to sql date

2022-09-30 Thread Bob Sneidar via use-livecode
I'm trying to convert a date format like mm/dd/ to an sql date format mmdd. Any ideas? Nothing I found on the interwebs seems to work. Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsub

Re: Calendar interfaces

2022-09-19 Thread Bob Sneidar via use-livecode
Hi Graham. I was just looking at this myself. I think the best way to work with calendars is to send an email with an iCalendar file (.ics). I will send you a zip file of an example with attachment to your personal email. It's pretty straight forward, but the file attachment is base 64 encoded b

Re: System Time Zone

2022-09-14 Thread Bob Sneidar via use-livecode
Well, IDEALLY I would like a way that does not involve a lookup list, but I do not think that is possible. I already downloaded an official list of time zones in the proper format, and their standard and savings time offsets. That should be close enough. Another thing I can do is in a settings p

Re: System Time Zone

2022-09-14 Thread Bob Sneidar via use-livecode
It's not dead easy from the perspective of iCalendar syntax. Zones are defined by text strings. I will need a lookup table for that. Bob S On Sep 14, 2022, at 08:21 , Richmond via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: That seems a bit unnecessary as 'internet date' produc

Re: Standardize Font Appearance

2022-09-13 Thread Bob Sneidar via use-livecode
I already leave a bit of air around my controls. Something I learned from a design guy years ago. Bob S On Sep 13, 2022, at 11:40 , Richard Gaskin via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: > Perhaps what would be useful is if there was an Autofit property for > fields tha

Re: Standardize Font Appearance

2022-09-13 Thread Bob Sneidar via use-livecode
For me it's simple. I want the same baseline and alignment on two platforms I work with, MacOS and Windows, when using an embedded font. My particular issue is I think a bug and I am reminded to send Panos a sample stack demonstrating the issue. EXACT PRECICE EQUIVALENCE of font appearance is no

Re: LC converts phone number to scientific notation

2022-09-09 Thread Bob Sneidar via use-livecode
ormatPhone Bob S On Sep 9, 2022, at 08:51 , Klaus major-k via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi Bob, Am 09.09.2022 um 17:38 schrieb Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>>: I have

Re: LC converts phone number to scientific notation

2022-09-09 Thread Bob Sneidar via use-livecode
Someone needs to debug their emails. ;-) Bob S On Sep 9, 2022, at 06:32 , Klaus major-k via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Put (“” & item 9 of globe) onto item 6 of tnewline ___ use-livecode mailing list use-livecode@lis

Re: LC converts phone number to scientific notation

2022-09-09 Thread Bob Sneidar via use-livecode
I have a function called formatPhone() I can modify it to support international notation and send it to you. Are all country codes 2 digits? And why would a phone number have a leading 0? Bob S > On Sep 9, 2022, at 03:00 , Klaus major-k via use-livecode > wrote: > > Hi friends, > > I have

Re: Stylistic question.

2022-09-08 Thread Bob Sneidar via use-livecode
Yes that works. What doesn't work is selecting the card in the list, then clicking the Inspector button in the LC IDE toolbar. It's easier for me to do that because if I click another object in Navigator, the focus of the Inspector (Properties Editor) changes to the selected object. If I do the

Re: System Time Zone

2022-09-08 Thread Bob Sneidar via use-livecode
You can get the timezone of a widget, get a list of ALL time zones, convert to and from universal time. There is no way it seems to geet the current time zone of the system. Bob S > On Sep 7, 2022, at 22:59 , Niggemann, Bernd via use-livecode > wrote: > > Bob Sneidar via use-

Re: System Time Zone

2022-09-08 Thread Bob Sneidar via use-livecode
Returns PDT. I will now have to get a list of all time zone abbreviations and do a lookup table. Bob S On Sep 7, 2022, at 17:14 , Mark Wieder via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: osx: put word -2 of shell("date") ___ use-

System Time Zone

2022-09-07 Thread Bob Sneidar via use-livecode
Hi all. I am exploring the possibility of creating a scheduling module, and am reading up on the iCalendar specification. I can localize the date and time by entering a valid time zone, and can hard code it for where I am at, but I want to be able to use this anywhere. The format of a locali

Re: Stylistic question.

2022-09-07 Thread Bob Sneidar via use-livecode
7, 2022, at 08:03 , Bob Sneidar via use-livecode > wrote: > > Awesome good job. > > Bob S > > >> On Sep 7, 2022, at 24:16 , Geoff Canyon via use-livecode >> wrote: >> >> Okay, I figured it out. When Navigator is displaying whatever the conte

Re: Cross-platform font handling, and why you don't want to do it

2022-09-07 Thread Bob Sneidar via use-livecode
After I start using the font files I added a line to wait 10 ticks with messages. Same thing. I came up with a workaround though. If I set the rect of an object to it's current rect it forces a redraw. Curiously, if I set the rect of the entire stack to it's current rect it does NOT force a redr

Re: Stylistic question.

2022-09-07 Thread Bob Sneidar via use-livecode
rk sets. I want to add > an option on stacks to display all cards within the stack (and maybe all > controls within the stack). And I want to run some tests on how fast > Navigator is at this point, and do some regression testing, and then I'll > release an update. > > Than

Re: Cross-platform font handling, and why you don't want to do it

2022-09-06 Thread Bob Sneidar via use-livecode
I'm going through my code and disabling the places where I check if a standalone is being built. I put that in there to try and get around the problem where I get alerted that stacks are in use, but that code doesn't work anyway. I still have to build one platform at a time, quitting LC between

Re: Standardize Font Appearance

2022-09-06 Thread Bob Sneidar via use-livecode
Yes but I had more in mind then display properties like font size and style. Bob S On Sep 6, 2022, at 15:30 , Richard Gaskin via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Bob Sneidar wrote: > That's great for buttons. I'd like to implement something for all > objects. My goal

Re: alumin(i)um

2022-09-06 Thread Bob Sneidar via use-livecode
I mean first before Alunimium. Bob S On Sep 6, 2022, at 15:22 , Mark Wieder via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On 9/6/22 13:53, Bob Sneidar via use-livecode wrote: So the theoretical substance was dubbed Aluminum first That's "alumium" f

Re: alumin(i)um

2022-09-06 Thread Bob Sneidar via use-livecode
Excerpt from WordOrigins.org: In 1808, British chemist Humphry Davy postulated the existence of a metallic form of alumina ore, which he dubbed alumium. Davy later changed the name to aluminum. He writes in his 1812 Elements of Chemical Philosophy: "As yet Aluminum has not been obtained in a

Re: Cross-platform font handling, and why you don't want to do it

2022-09-06 Thread Bob Sneidar via use-livecode
submitted an issue with support. Bob S On Sep 6, 2022, at 10:13 , Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Sorry to drag this thread on, but it appears that using embedded fonts is worse that I first imagined. After I had set all my label fields to A

Re: Cross-platform font handling, and why you don't want to do it

2022-09-06 Thread Bob Sneidar via use-livecode
also realigns. If I set a label to the default system font, this does not happen. That sucks. Big time. At this point I do not know if it is just this particular font, or if it happens to all embedded fonts, but I am fairly taken back. Bob S On Sep 5, 2022, at 17:02 , Bob Sneidar via use

Re: Stylistic question.

2022-09-06 Thread Bob Sneidar via use-livecode
I went to Github, the latest version is 7.3 RC1 which is what I already had. Not sure where to look for the most recent version. Issue persists for me. Bob S > On Sep 6, 2022, at 08:11 , Bob Sneidar via use-livecode > wrote: > > I'll have a look. > > Bob S > >

Re: Stylistic question.

2022-09-06 Thread Bob Sneidar via use-livecode
I'll have a look. Bob S On Sep 5, 2022, at 19:11 , Geoff Canyon via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On Thu, Sep 1, 2022 at 10:32 AM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com<mailto:use-livecode@lists.runrev.com>> wrote: I wi

Re: Cross-platform font handling, and why you don't want to do it

2022-09-05 Thread Bob Sneidar via use-livecode
Well, I am not aiming for *exact* visual match. What I WOULD expect is that if Livecode thinks the name of a font on the MacOS is “Aclonica Regular” then it would think the same thing on a Windows system. I’m talking about an embedded font file here. That “Aclonica” without the “regular” works o

Re: Text to speech

2022-09-03 Thread Bob Sneidar via use-livecode
I swear I didn’t give him the time warp stack 3 years from now. Sent from my iPhone > On Sep 3, 2022, at 13:30, J. Landman Gay via use-livecode > wrote: > > I just watched the video and this is exactly what I was looking for. I didn't > know until a couple of days ago that I would need to im

Re: Excel Lib fail

2022-09-02 Thread Bob Sneidar via use-livecode
Ya I think it uses a Microsoft API. Mac side, probably Applescript. Sent from my iPhone > On Sep 2, 2022, at 19:51, Mark Wieder via use-livecode > wrote: > > /sigh > Got all excited about using the Excel Library for a new spreadsheet project > and then discovered it doesn't work on linux, *

Re: Standardize Font Appearance

2022-09-02 Thread Bob Sneidar via use-livecode
Should read, drops the object on the card… Sent from my iPhone > On Sep 2, 2022, at 19:31, Bob Sneidar wrote: > > Imagine right-clicking on the card, getting. Menu, field, button, grid, > widget. Next level, named instance of a predefined class. Code drops the > field then registers the obje

Re: Standardize Font Appearance

2022-09-02 Thread Bob Sneidar via use-livecode
Imagine right-clicking on the card, getting. Menu, field, button, grid, widget. Next level, named instance of a predefined class. Code drops the field then registers the object with the class object. Now the class object knows which objects to modify. Sent from my iPhone > On Sep 2, 2022, at

Re: Standardize Font Appearance

2022-09-02 Thread Bob Sneidar via use-livecode
Like any other OOP system. By providing a way to instance an object from the class, and then modify the parameters if necessary. Not saying it wouldn’t take code. But the code would not be difficult to implement. Sent from my iPhone > On Sep 2, 2022, at 19:13, Richard Gaskin via use-livecode

Re: Standardize Font Appearance

2022-09-02 Thread Bob Sneidar via use-livecode
pshots of those buttons, and used those images as >> buttons. >> >> No stress, No mess! >> >> On Fri, 2 Sept 2022, 18:00 Bob Sneidar via use-livecode, < >> use-livecode@lists.runrev.com> wrote: >> >>> I read a blog some years back why it is

Re: Standardize Font Appearance

2022-09-02 Thread Bob Sneidar via use-livecode
ted snapshots of those buttons, and used those images as >> buttons. >> >> No stress, No mess! >> >> On Fri, 2 Sept 2022, 18:00 Bob Sneidar via use-livecode, < >> use-livecode@lists.runrev.com> wrote: >> >>> I read a blog some years back why

Re: Standardize Font Appearance

2022-09-02 Thread Bob Sneidar via use-livecode
That's great for buttons. I'd like to implement something for all objects. My goal is to be able to offer the end user a way to change their "motif" with a single click. Imagine being able to set the properties of an object designated as a "class object", the object then getting a propertyChange

Re: Standardize Font Appearance

2022-09-02 Thread Bob Sneidar via use-livecode
I read a blog some years back why it is so difficult to get nything on Windows to look like it does on the Mac. It is true that Windows renders fonts differently that Mac, so "exactly the same" remains the realm of the imagined. But you can get close. My big issue was that using Arial, labels th

Re: lcb missing manual

2022-09-02 Thread Bob Sneidar via use-livecode
Or slower than both? As I understand it, LCB has the capability to call C externals which themselves would be faster than anything, but on it's own it is slower than both. Bob S On Sep 2, 2022, at 01:00 , Geoff Canyon via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On Thu, Sep

Re: propertyChanged message

2022-09-01 Thread Bob Sneidar via use-livecode
As I see it working in my head, property changes, at least built in properties, would typically only be triggered in the IDE. Custom properties are another matter. Set those aside f or a moment. If we are only talking about built in properties, then the message would almost never get sent unless

Re: propertyChanged message

2022-09-01 Thread Bob Sneidar via use-livecode
Should have read, For INSTANCE, if I had a main class called Labels... On Sep 1, 2022, at 13:34 , Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: For if I had a main class called Labels, ___ use-livecode mailing li

Re: propertyChanged message

2022-09-01 Thread Bob Sneidar via use-livecode
ecode@lists.runrev.com>> wrote: On 9/1/22 12:25, Bob Sneidar via use-livecode wrote: Hi all. I would like to see a propertyChanged message implemented that gets sent to any object when any of it's properties change. There could even be two messages, one for built-in properies and another for c

Re: propertyChanged message

2022-09-01 Thread Bob Sneidar via use-livecode
https://quality.livecode.com/show_bug.cgi?id=23917 > On Sep 1, 2022, at 12:25 , Bob Sneidar via use-livecode > wrote: > > Hi all. > > I would like to see a propertyChanged message implemented that gets sent to > any object when any of it's properties chang

propertyChanged message

2022-09-01 Thread Bob Sneidar via use-livecode
Hi all. I would like to see a propertyChanged message implemented that gets sent to any object when any of it's properties change. There could even be two messages, one for built-in properies and another for custom properties. Imagine being able to change the font or size of a particular obje

Re: Stylistic question.

2022-09-01 Thread Bob Sneidar via use-livecode
by Navigator I was put off by Navigator at first, mainly because it was able to do a LOT, and I was looking for an easy answer to a complex problem: How to set properties for objects in a much more intuitive way that the LC Property Editor. Once I started using it however, I cannot imagine how

Re: Standardize Font Appearance

2022-09-01 Thread Bob Sneidar via use-livecode
yway I'll get around to an enhancement request soon. Bob S > On Aug 31, 2022, at 08:27 , Bob Sneidar via use-livecode > wrote: > > Okay I see there are a butt-ton of them and must be downloaded individually. > They can be had at fonts.com<http://fonts.com>. I alr

Re: lcb missing manual

2022-09-01 Thread Bob Sneidar via use-livecode
Also, when it comes to performance, developers should ask not only is it faster, but would anyone notice the difference? I used to say, "A computer only needs to be fast enough." Some will ask, "Fast enough for what?" To which I reply, "Now you are asking the right question." Bob S On Aug 31,

Re: Standardize Font Appearance

2022-08-31 Thread Bob Sneidar via use-livecode
Okay I see there are a butt-ton of them and must be downloaded individually. They can be had at fonts.com<http://fonts.com>. I already found one I like for my module headers! Bob S On Aug 31, 2022, at 08:17 , Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> w

Re: Standardize Font Appearance

2022-08-31 Thread Bob Sneidar via use-livecode
gt; folder in the root folder of your projects. > Or at least its what I read somewhere in the forums. > > Cheers Bob > > On Tue, Aug 30, 2022 at 7:21 PM Bob Sneidar via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> Hmmm spoke to soon. I see Start Usin

Re: Standardize Font Appearance

2022-08-30 Thread Bob Sneidar via use-livecode
Hmmm spoke to soon. I see Start Using Font in the dictionary. I'll explore. Bob S On Aug 30, 2022, at 16:12 , Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi all. I'm at the point now where I want to clean up the appearance of all my proj

Standardize Font Appearance

2022-08-30 Thread Bob Sneidar via use-livecode
Hi all. I'm at the point now where I want to clean up the appearance of all my projects across all platforms. For instance, I have a Time Calculator stack that calculates total time for any number of start/stop/lunch entries. I have heretofore left my field and label fonts at the default, whic

Re: the script of with line numbers?

2022-08-29 Thread Bob Sneidar via use-livecode
As long as Mathesar is happy, I'm happy. Bob S On Aug 29, 2022, at 16:11 , Paul Dupuis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: No a huge priority in the scheme of things, but a "nice to have" sort of thing. Does that answer the "why?" __

Re: the script of with line numbers?

2022-08-29 Thread Bob Sneidar via use-livecode
That question always reminds me of Mathesar when he discoveres that Commander Peter Quincy Taggert has been lying all along. :-) Bob S On Aug 29, 2022, at 15:58 , Mark Wieder via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On 8/29/22 14:36, Paul Dupuis via use-livecode wrote: I

Re: the script of with line numbers?

2022-08-29 Thread Bob Sneidar via use-livecode
Maybe marginally better: ... sort it by word 1 of each Bob S On Aug 29, 2022, at 14:50 , J. Landman Gay via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On 8/29/22 4:36 PM, Paul Dupuis via use-livecode wrote: Is there a way (an existing function or command in the language or IDE

Re: the script of with line numbers?

2022-08-29 Thread Bob Sneidar via use-livecode
Correction: sort it numeric by word 1 of each Bob S On Aug 29, 2022, at 14:55 , Bob Sneidar mailto:bobsnei...@iotecdigital.com>> wrote: Maybe marginally better: ... sort it by word 1 of each Bob S On Aug 29, 2022, at 14:50 , J. Landman Gay via use-livecode mailto:use-livecode@lists.runre

Re: BN Guides

2022-08-26 Thread Bob Sneidar via use-livecode
Works great. Thanks. Bob S On Aug 26, 2022, at 13:25 , Niggemann, Bernd via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi Bob, There is an alternative for guide right now https://livecodeshare.runrev.com/stack/1002/DevGuides-Plugin-Installer and 10.0.0 DP4 has guides built-i

Re: Exclude Keywords from Auto-Complete

2022-08-25 Thread Bob Sneidar via use-livecode
> 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: Thursday, August 25, 2022 1:1

Exclude Keywords from Auto-Complete

2022-08-25 Thread Bob Sneidar via use-livecode
Hi all. I just submitted an enhancement request to create a new global property of keywords to exclude from the SE Auto-Complete feature. The reason is, whenever I type "of me" in the SE, I get suggestions for mergeDeploy, and if I hit tab to reformat the script or to move to the next paramete

Re: BN Guides

2022-08-25 Thread Bob Sneidar via use-livecode
I found the link to the Board Administrator. The board administrator link has been disabled. LOL! Bob S On Aug 25, 2022, at 09:15 , Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: I am then advised to contact the administrator, but there is no link I can fi

Re: BN Guides

2022-08-25 Thread Bob Sneidar via use-livecode
Unfortunately I am unable to login to the forums (again) as the saved password I have for it no longer works. Also, if I ask for the activation link to be resent, both emails I would have used along with the only user name I use for everything (slylabs13), results in Account Not Found. Submittin

BN Guides

2022-08-25 Thread Bob Sneidar via use-livecode
Who wrote BN Guides? Very cool, but there is a conflict with Navigator. When I double-click an object in Navigator to open it's script, I get t he BNGuides script instead. Bob S ___ use-livecode mailing list use-livecode@lists.runrev.com Please visi

Re: Sorting [was: Polygrid sorting]

2022-08-25 Thread Bob Sneidar via use-livecode
Not sure how that happened. If the source is a DATABASE... On Aug 25, 2022, at 08:02 , Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: +1 if the source is a dabs, sort during query. Bob S ___ use-livecode mailing li

Re: Sorting [was: Polygrid sorting]

2022-08-25 Thread Bob Sneidar via use-livecode
+1 if the source is a dabs, sort during query. Bob S On Aug 25, 2022, at 07:21 , Mike Kerner via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: it will probably be faster and more flexible to have your database do your soriting for you, though. On Mon, Aug 15, 2022 at 7:47 PM Paul

Re: Livecode performance problem

2022-08-19 Thread Bob Sneidar via use-livecode
It's probably a lot of text. The engine has to start from the beginning of every string then scan through for every cr or lf or cr/lf or whatever counts as a line break, until if finds the nth one. The more lines, the longer the scan takes each time, and the more text per line the exponentially

Re: Livecode performance problem

2022-08-19 Thread Bob Sneidar via use-livecode
Off the top of my head: split v1 by tab split v2 by tab split v3 by tab split v4 by tab put the keys of v1 into tKeyList sort tKeyList ascending numeric repeat for each line tKey in tKeyList put tKey & tab & v1 [tKey] & tab & v2 [tKey] & tab & v3 [tKey] & tab & v4 [tKey] & cr after tCombined

Re: issue related to Print.PrintSupport.Source.dll

2022-08-18 Thread Bob Sneidar via use-livecode
Not unheard of. Some years back we discovered that if the HP Universal Print Driver had been installed, Toshiba drivers would not work at all. We had to uninstall the HP Universal Driver and replace it with the model-specific driver. Bob S > On Aug 17, 2022, at 16:27 , Mark Wieder via use-liv

Re: the effective width of a stack?

2022-08-17 Thread Bob Sneidar via use-livecode
I think this is why some time ago when I was trying to save and restore the position of windows I ran into the creeping window issue where the top of the window kept creepign up each time I opened it. Bob S > On Aug 17, 2022, at 10:58 , Mark Wieder via use-livecode > wrote: > > You *can* s

Re: the effective width of a stack?

2022-08-17 Thread Bob Sneidar via use-livecode
The effective keyword can be used with the following inherited properties : • backgroundColor property • backgroundPattern property • backgroundPixel property • bottomColor property • bottomPattern property • bottomPixel property • focusColor

Re: Shouldn't space or enter in a menu select the hilited item?

2022-08-16 Thread Bob Sneidar via use-livecode
Bug 23884 Bob S On Aug 16, 2022, at 08:08 , Bob Sneidar mailto:bobsnei...@iotecdigital.com>> wrote: Thanks Craig for confirming, I will put in an enhancement request FWIW. Bob S On Aug 16, 2022, at 05:55 , Craig Newman via use-livecode ma

Re: Shouldn't space or enter in a menu select the hilited item?

2022-08-16 Thread Bob Sneidar via use-livecode
Thanks Craig for confirming, I will put in an enhancement request FWIW. Bob S > On Aug 16, 2022, at 05:55 , Craig Newman via use-livecode > wrote: > > Bob. > > You can always roll your own, > > Craig ___ use-livecode mailing list use-livecode@l

Re: Sorting [was: Polygrid sorting]

2022-08-15 Thread Bob Sneidar via use-livecode
Datagrids have this feature, so yes, I would expect there to be some way to specify what kind of sort you want to do. But it would have to be on a per column basis. But if you are sorting the text yourself, you can use the syntax: sort lines of tText by item n of each. I don't think any assum

Re: Polygrid sorting (problems)

2022-08-15 Thread Bob Sneidar via use-livecode
I think they are trying to be consistent with datagrid terminology, perhaps thinking that a tabular data object has become a new class of objects. Bob S > On Aug 15, 2022, at 16:22 , Alex Tweedly via use-livecode > wrote: > > > On 15/08/2022 20:34, Paul Dupuis via use-livecode wrote: >> So

Re: Shouldn't space or enter in a menu select the hilited item?

2022-08-15 Thread Bob Sneidar via use-livecode
I should also mention that menuPick IS getting triggered, but if I use spacebar or return to select, the parameter for which item got picked is empty. If I click then the parameter is NOT empty it's the item I clicked. Bob S > On Aug 15, 2022, at 15:03 , Bob Sneidar via use-

Re: Shouldn't space or enter in a menu select the hilited item?

2022-08-15 Thread Bob Sneidar via use-livecode
t; interest, clicking Enter or Return executes the menuPick handler. > > Craig > >> On Aug 12, 2022, at 7:37 PM, Bob Sneidar via use-livecode >> wrote: >> >> Hi all. Very odd, I thought this worked. >> >> I am programmatically popping up a menu,

Shouldn't space or enter in a menu select the hilited item?

2022-08-12 Thread Bob Sneidar via use-livecode
Hi all. Very odd, I thought this worked. I am programmatically popping up a menu, then I want to be able to jse the arrow keys to traverse the selections available. If I click any of the choices, the menuPick handler gets the choice as the first parameter. If however I use the spacebar or the

Re: mobileControl placeholderText?

2022-08-11 Thread Bob Sneidar via use-livecode
I see a similar thing when I have a pulldown menu without a label. It will display the menu button name by default. What I will do then is set the label to some prompt or else a space. It's pretty annoying to have to do that though. Bob S > On Aug 11, 2022, at 16:27 , Dan Friedman via use-l

Re: Email via IMAP with HTML body from a template

2022-08-11 Thread Bob Sneidar via use-livecode
I have to say, I've learned more about programming just from being a member of this list, than any book on the suject. Admittedly, I've read very few, as is manifestly evident when going back and re-reading my code. :-) Bob S > On Aug 10, 2022, at 23:23 , Charles Warwick via use-livecode > w

Re: iPhoneSafeAreaInsets() and Android

2022-08-11 Thread Bob Sneidar via use-livecode
It seems to me, someone who has done zero mobile development, that this function has no meaning on an android, and should therefore return empty to avoid unanticipated runtime errors. There should be however a function to get the screen rects of an android. Does the effective working screenrec

Re: Windows standalone settings

2022-08-10 Thread Bob Sneidar via use-livecode
I do only because I have a special case where I grabbled a 32 bit windows PC to serve mySQL and Spiceworks, and to host my SQL Socket Agent. Bob S > On Aug 10, 2022, at 13:14 , J. Landman Gay via use-livecode > wrote: > > Does anyone still build for Windows x86 or is x86-64 sufficient now?

Re: Datagrid internal error

2022-08-10 Thread Bob Sneidar via use-livecode
Well the question came up if there was some limit on the number of records, and controlling the population of the datagrid would solve that. As far as the number of columns, I suspect there may be a limit on the number of *displayed* columns, and probably an issue with what characters are allowe

Re: Getting the visible rect of a stack with fullscreenmode "showall"

2022-08-10 Thread Bob Sneidar via use-livecode
Wait, there is a more effectiver working screenrect than the effective one?? ;-P Bob S > On Aug 10, 2022, at 08:44 , Klaus major-k via use-livecode > wrote: > > ah, yes, "the effectiver working screenrect"! 8-) ___ use-livecode mailing list use-li

Re: Datagrid internal error

2022-08-10 Thread Bob Sneidar via use-livecode
, 2022, at 06:51 , Craig Newman via use-livecode > wrote: > > This seems like a fragment of a longer thread, but the “dgText” and the > “dgData” are the two methods I use to extract, process and reload the content > of a data grid. > > Craig > >> On Aug 9, 2022

Re: Datagrid internal error

2022-08-09 Thread Bob Sneidar via use-livecode
I believe there is a property you set, after which you programmatically control the population of the datagrid. I am in a hurry so I can't look it up right now, but it is in the datagrid API in livecode lessons. Bob S > On Aug 9, 2022, at 05:09 , Paul Dupuis via use-livecode > wrote: > > I

Re: Datagrid internal error

2022-08-08 Thread Bob Sneidar via use-livecode
Nope I take that back it's lines. I remember now wondering why that was. Bob S > On Aug 8, 2022, at 16:53 , Bob Sneidar wrote: > > I believe dgProp ["columns"] is a comma delimited list. > > Bob S > > >> On Aug 8, 2022, at 09:26 , Paul Dupuis via use-livecode >> wrote: >> >> A customer

Re: Datagrid internal error

2022-08-08 Thread Bob Sneidar via use-livecode
I believe dgProp ["columns"] is a comma delimited list. Bob S > On Aug 8, 2022, at 09:26 , Paul Dupuis via use-livecode > wrote: > > A customer encountered the following execution error (below) in our app > (built on Livecode 9.6.7, MacOS 12.5). This error is occurring in the scrips > for

Code Signing Certificates: Where to put?

2022-08-08 Thread Bob Sneidar via use-livecode
I went through the process of creating the 2 certs needed to sign, notarize and staple an app bundle. I imported the certs into my Keychain in System (login didn't seem like the place to put it) and now MrSign'n'Notarize Helper V3 is generating an error which seems to indicate it cannot find the

Re: Is there a way to create a generic setprop handler?

2022-08-03 Thread Bob Sneidar via use-livecode
If I understand you then no. The only thing I would suggest is to use dispatch to trigger the "general handler" in all of your virtual properties (custom property is not the right phrase when referring to getProp/setProp). Bob S > On Aug 3, 2022, at 11:13 , David Epstein via use-livecode >

Re: Dispatch

2022-08-03 Thread Bob Sneidar via use-livecode
One correction. If a value is returned by the handler that was called, the result will be that value. Bob S > On Aug 3, 2022, at 08:53 , Mark Wieder via use-livecode > wrote: > > One, if I'm calling a handler in a different object that is outside the > normal message path then I'll dispatc

Re: Is Livecode (the company) closed for holiday?

2022-08-03 Thread Bob Sneidar via use-livecode
All my prayers. Bob S > On Aug 3, 2022, at 08:33 , Heather Laine via use-livecode > wrote: > > *Monday was a bank holiday. I see that today is Wednesday so my comment that > yesterday was a bank holiday was erroneous. It was Tuesday. As previously > mentioned, I am working around some fami

Re: Dispatch

2022-08-03 Thread Bob Sneidar via use-livecode
That should read, "Dispatch cannot use 'in time'" > On Aug 3, 2022, at 08:23 , Bob Sneidar via use-livecode > wrote: > > Dispatch cannot use send in time ___ use-livecode mailing list use-livecode@lists.runrev.com Pl

Re: Dispatch

2022-08-03 Thread Bob Sneidar via use-livecode
Send allows you to send in time. However the command or function must exist or you will throw an error. Dispatch cannot use send in time, but if a handler does not exist in the message path of the object you dispatch to, no error will be thrown. This can come in handy. Let's say you have assig

Re: wait 0 with messages (and the defaultStack)

2022-08-01 Thread Bob Sneidar via use-livecode
As my application(s) became more complex, I also ran into topstack and curentcard issues. As a result, I am in the habit now of either using "of me" appended to every command of in a card or stack script, or else sending the long id of an object to a command or function that is not in the messag

Re: wait 0 with messages (and the defaultStack)

2022-08-01 Thread Bob Sneidar via use-livecode
It's my understanding that wait allows idle messages from the engine to be sent. When that happens, any send in time messages are processed. Wait with messages allows any other messages including engine messages to be processed. For instance, I have a FindBar object that uses wait 1 second with

Re: wait 0 with messages

2022-08-01 Thread Bob Sneidar via use-livecode
This is correct. Bob S > On Jul 31, 2022, at 12:14 , J. Landman Gay via use-livecode > wrote: > > On 7/31/22 12:04 AM, Mark Wieder via use-livecode wrote: >> I don't think "wait 0" by itself does anything useful. Make a stack with two >> buttons. Running the script in the first button will

Re: sqlYoga queries

2022-07-26 Thread Bob Sneidar via use-livecode
Thanks Trevor. I'll give it a go. Bob S > On Jul 26, 2022, at 08:47 , Trevor DeVore via use-livecode > wrote: > > On Tue, Jul 26, 2022 at 10:08 AM Bob Sneidar via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> sqlYoga can define table objects

sqlYoga queries

2022-07-26 Thread Bob Sneidar via use-livecode
Hi. This is directed at Trevor Devore, although if anyone else knows they can chime in. sqlYoga can define table objects and relations in a database object. Heretofore I have not availed myself of this, being content to only work with query objects and record objects. Now as I am trying to opt

Re: Debugging libraries

2022-07-19 Thread Bob Sneidar via use-livecode
, but apparently not. It's a function so the code never got around to executing. DOH! Bob S > On Jul 19, 2022, at 10:45 , Mark Wieder via use-livecode > wrote: > > On 7/19/22 09:00, Bob Sneidar via use-livecode wrote: >> Hi all. >> There is a global variable, I t

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