Re: Unicode mysteries

2020-03-26 Thread Bob Sneidar via use-livecode
I see the flag here. Bob S On Mar 25, 2020, at 11:53 PM, Neville Smythe via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Taking a look at the Emoji ‘flag of Scotland’ character 🏴󠁧󠁢󠁳󠁣󠁴󠁿 which won’t display here but exists in the Apple Color Emoji font and in corresponding fonts

Disabled objects semi translucent??

2020-03-26 Thread Bob Sneidar via use-livecode
Hi all. I’m noticing (for the first time it seems) that disabled objects are semi-transparent! Is this intentional?? This means any background pattern I set for the card shows through the disabled objects! Boo! Bob S ___ use-livecode mailing list u

Navigator won't go away!

2020-03-26 Thread Bob Sneidar via use-livecode
I have removed every instance of Navigator from my hard drive (I searched for them and deleted them) in preparation of installing the latest version. I did this because on my home Mac, I keep getting a 2.5 beta version of the plug-in every time I launch! I verified my plugin folder is set to /

Re: Navigator won't go away!

2020-03-26 Thread Bob Sneidar via use-livecode
work. Bob S > On Mar 26, 2020, at 10:33 AM, Bob Sneidar via use-livecode > wrote: > > I have removed every instance of Navigator from my hard drive (I searched for > them and deleted them) in preparation of installing the latest version. I did > this because on my home Mac

Re: Navigator won't go away!

2020-03-26 Thread Bob Sneidar via use-livecode
Whoopsie, NO plugins are loading from the /Users//Documents/Livecode/PlugIns/ folder! Wha??? Bob S > On Mar 26, 2020, at 10:41 AM, Bob Sneidar via use-livecode > wrote: > > FOUND IT! It was in the actual MacOS APPLICATION BUNDLE!!! > > Hey LC, I appreciate the freebies,

Re: Navigator won't go away!

2020-03-26 Thread Bob Sneidar via use-livecode
OK Sorry for the noise. I see now that the Files & Memory/User Extensions setting in preferences needs to be pointed at /Users//Documents/Livecode/ and NOT the plugins folder. Now all the plugins are loading properly. Bob S > On Mar 26, 2020, at 10:45 AM, Bob Sneidar via use-l

Re: Its very quiet

2020-03-27 Thread Bob Sneidar via use-livecode
All I am doing right now is working in Livecode! Very refreshing. How about we all chime in on what we are currently working on? Currently I am working on a basic SQL Query Builder. I recently revamped my Database Setup stack, dramatically simplifying it so all that is needed is to add it to th

Re: Its very quiet

2020-03-27 Thread Bob Sneidar via use-livecode
That’s odd. Here in ‘Merica we only have to stay 6 feet away. Bob S > On Mar 27, 2020, at 8:09 AM, Alex Tweedly via use-livecode > wrote: > > It's social distancing. > > I have to stay 2 metres away from the message - and I can't reach the > keyboard. > > Alex. > > On 27/03/2020 15:08, H

Re: Determining a scroll based on code unit offsets

2020-03-27 Thread Bob Sneidar via use-livecode
is there a formattedTextHeight? Bob S On Mar 27, 2020, at 10:58 AM, J. Landman Gay via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: 1,103,7 While 7 is a line number, multiplying that by the textheight doesn't give consistent results due to line wrap. The first two items are cod

Re: Determining a scroll based on code unit offsets

2020-03-27 Thread Bob Sneidar via use-livecode
There is a formattedHeight On Mar 27, 2020, at 11:00 AM, Bob Sneidar mailto:bobsnei...@iotecdigital.com>> wrote: is there a formattedTextHeight? Bob S On Mar 27, 2020, at 10:58 AM, J. Landman Gay via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: 1,103,7 While 7 is a line numb

Re: Determining a scroll based on code unit offsets

2020-03-27 Thread Bob Sneidar via use-livecode
That needs to be turned into a function and added to the MasterLibrary! (If it works…) Bob S On Mar 27, 2020, at 12:47 PM, Mark Waddingham via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Maybe (the formattedHeight of codeunit 1 to OFFSET of FIELD - the formattedHeight of codeu

Re: Determining a scroll based on code unit offsets

2020-03-27 Thread Bob Sneidar via use-livecode
If someone can come up with a name for the function I’ll post it. Bob S On Mar 27, 2020, at 1:49 PM, Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: That needs to be turned into a function and added to the MasterLibrary! (If it works…)

The TopLevel Stack

2020-03-27 Thread Bob Sneidar via use-livecode
Hi all. I’m having fits here. I have a stack that opens another stack invisible. It supposedly closes itself, then returns to the first stack. At that point, it *should* be the topStack… BUT IT’S NOT! Subsequent commands like setting the text of a field fail with no such object! How do I FO

Re: The TopLevel Stack

2020-03-27 Thread Bob Sneidar via use-livecode
NVM. The defaultStack. Not sure why it stops being the defaultStack though. Going to another stack then going to me in the stack script *should* make it the defaultStack again, but it doesn’t. Bob S On Mar 27, 2020, at 3:40 PM, Bob Sneidar via use-livecode mailto:use-livecode

Re: Downloaded LC 9.5.1 for macOS and got this error message

2020-03-28 Thread Bob Sneidar via use-livecode
Try right-clicking it and selecting Open. Bob S > On Mar 28, 2020, at 6:55 PM, kee nethery via use-livecode > wrote: > > “LiveCode Indy 9.5.1.app” can’t be opened because Apple cannot check it for > malicious software. > This software needs to be updated. Contact the developer for more inf

Re: Downloaded LC 9.5.1 for macOS and got this error message

2020-03-28 Thread Bob Sneidar via use-livecode
imposes. > Kee > >> On Mar 28, 2020, at 6:58 PM, Bob Sneidar via use-livecode >> wrote: >> >> Try right-clicking it and selecting Open. >> >> Bob S >> >> >>> On Mar 28, 2020, at 6:55 PM, kee nethery via use-livecode >>> wrot

Re: Ordering text

2020-03-29 Thread Bob Sneidar via use-livecode
You took the SQL right out of my query. :-) Bob S On Mar 29, 2020, at 7:32 AM, Rick Harrison via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi Terry, Try having your database retrieval perform the sort and not LiveCode. Use the SQLite: ORDER BY clause. See if that gives you

Re: Ordering text

2020-03-29 Thread Bob Sneidar via use-livecode
Not enough info but something like: SELECT SUM(OLD -NEW) as balance FROM some_table WHERE need_to_calc IS true order by balance; (or order by whatever column. Not sure balance is what you are trying to sort by.) Bob S > On Mar 29, 2020, at 11:54 AM, doc hawk via use-livecode > wrote: > > I

Re: Hide stack change focus not supported 64bit

2020-03-29 Thread Bob Sneidar via use-livecode
Whaaa?? That is what I was seeing! In my case I used go invisible . The stack I went to got focus, but going back to the calling stack did NOT return focus. What I ended up doing is using set the defaultStack to Bob S On Mar 29, 2020, at 2:17 PM, Bill Vlahos via use-livecode mailto:use-livec

Re: Hide stack change focus not supported 64bit

2020-03-29 Thread Bob Sneidar via use-livecode
I just read the documentation. It seems to be talking about DontUseQT and DonUseQTEffects, not hide stack itself. Bob S On Mar 29, 2020, at 2:21 PM, Bob Sneidar mailto:bobsnei...@iotecdigital.com>> wrote: The documentation in 9.5.1 says that hide stack is not supported in 64bit. What is the

Re: DataGrid question...

2020-03-29 Thread Bob Sneidar via use-livecode
I thought you could embed checkboxes in a data grid? Not in a field of course, but that’s always been the case. When have we ever been able to embed another object in a field? Bob S On Mar 29, 2020, at 4:32 PM, Pi Digital via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Fields:

Re: DataGrid question...

2020-03-29 Thread Bob Sneidar via use-livecode
The mouseControl. > On Mar 29, 2020, at 7:06 PM, Sean Cole (Pi) via use-livecode > wrote: > >> >> Working out which cell has been clicked: Sorry, that's not accurate >> either. Yes, we do have that! Also for a long time. >> > > Hi, > > As Curry's now unfortunately out of the conversation,

Re: DataGrid question...

2020-03-29 Thread Bob Sneidar via use-livecode
The mouseControl! Bob S On Mar 29, 2020, at 8:35 PM, Pi Digital via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi Jerry Thanks for the heads up about Bernd’s code. But I was interested in learning how to get the cell index of a table field when clicked as we are told it was s

Re: DataGrid question...

2020-03-29 Thread Bob Sneidar via use-livecode
on mouseUp put the mouseControl into tControl put the long id of tControl into tID put the short name of tControl into tName end mouseUp The short name will reveal the column number. The dgHilitedLine will give you the line. > On Mar 29, 2020, at 8:37 PM, Bob Sneidar via use-livec

Re: DataGrid question...

2020-03-29 Thread Bob Sneidar via use-livecode
OIC. I was struggling with that earlier today. The problem is, there is no cell. Just a field. You can get the line with the clickLine, but I discovered that even with cell editing on, the table field acted erratically, adding lines when I didn’t want them. Since you know the tabstops, you can

Re: Using Shift + Cmd + 1 as a menu short in LiveCode

2020-03-30 Thread Bob Sneidar via use-livecode
Cmd-E will eject a mounted removable disk. I've never heard of Cmd-Shift-1. Bob S > On Mar 25, 2020, at 11:09 , doc hawk via use-livecode > wrote: > > Isn’t that the key sequence for ejecting the internal floppy, err, first > removable disk? > > It does seem to be removed from recent relea

Re: specialFolderPath, Microsoft Window, and 64 bits

2020-03-31 Thread Bob Sneidar via use-livecode
Isn’t the defaultFolder the app folder when you launch it? Bob S On Mar 31, 2020, at 5:37 AM, Paul Dupuis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Under LiveCode 9.x.x (up to 9.6.0dp3) I can see no way to obtain the 64bit application installation folder using SpecialFold

Re: specialFolderPath, Microsoft Window, and 64 bits

2020-03-31 Thread Bob Sneidar via use-livecode
The Windows Registry uses HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths as the path to the installation folder for all installed applications. put queryRegistry("HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\App Paths\AcroRd32.exe\path") seems to work.

Re: specialFolderPath, Microsoft Window, and 64 bits

2020-03-31 Thread Bob Sneidar via use-livecode
Well that certainly complicates things! :-) Bob S On Mar 31, 2020, at 9:52 AM, Paul Dupuis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On 3/31/2020 12:26 PM, Bob Sneidar via use-livecode wrote: The Windows Registry uses HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\W

Re: Answer dialog enhancement...

2020-03-31 Thread Bob Sneidar via use-livecode
The answer dialog is simply a stack in and of itself if I am not mistaken. I’m wondering if you couldn’t find that stack and clone it for your own purposes… Bob S On Mar 31, 2020, at 12:24 PM, Paul Dupuis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Here is another attempt t

Re: Answer dialog enhancement...

2020-03-31 Thread Bob Sneidar via use-livecode
n 3/31/2020 6:10 PM, Bob Sneidar via use-livecode wrote: The answer dialog is simply a stack in and of itself if I am not mistaken. I’m wondering if you couldn’t find that stack and clone it for your own purposes… Bob S Yes. That is easy enough. Turn on "Show IDE Stacks in List" from the

dgIndexOfLine not returning index

2020-04-01 Thread Bob Sneidar via use-livecode
Hi all. Not sure if this is a bug or expected behavior. In a vertically scrolled data grid I have a mouseUp handler. Ignore the fiddly bits that are irrelevant. The last two lines are the important ones: on mouseUp put the mouseControl into tControl put word 1 of the name of tControl into t

Re: DataGrid question...

2020-04-01 Thread Bob Sneidar via use-livecode
Hi all. I’m not sure I understand the nature of the problem anymore as the thread is so long, but if you are using the data grid, it is very easy to get the actual index and column number of a cell that has been clicked on. If you put this into your data grid script, you can see it at work.

Re: Ordering text

2020-04-01 Thread Bob Sneidar via use-livecode
So this is a database schema issue. Typically what you will want to do with things like balances is to store the balance in a column as each value in the equation changes. You are asking your SQL server to do all the calculations for all your records all at once. If SLQ only has to calculate whe

Re: Tar and a gz Archive [OT]

2020-04-01 Thread Bob Sneidar via use-livecode
Looks like Tar is a Windows 10 only command line utility. I’m sure you know but tar /? should get you the options available. Whether or not you can grok what they actually mean is another thing. There are some powershelgl scripts out there but not with the specificity you need. Bob S On Apr

Re: DataGrid question: Suggestions for further enhancements

2020-04-02 Thread Bob Sneidar via use-livecode
Not to belabor the point, but why would the data grid be overkill in relation to a table field? In what way? Cell editing actually works great. Double click a cell and edit the contents. Finding and getting data is far easier in a data grid than in a table field. dispatch findIndex to group “my

Re: Our first Community Zoom Session

2020-04-02 Thread Bob Sneidar via use-livecode
Just so everyone is aware… https://community.spiceworks.com/topic/2265244-snap-more-zoom-flaws-t-mobile-merger-nasa-launch-delays-rick-and-morty?utm_campaign=community&utm_medium=app&utm_source=app_ui Bob S ___ use-livecode mailing list use-livecode@li

Re: Our first Community Zoom Session

2020-04-02 Thread Bob Sneidar via use-livecode
Ah. Point taken. You would think that the Spiceworks authors would have done the homework so I, the unsuspecting consumer would not have to. :-) One could make the point that if end users must now do all the research, what’s the point of news? Hmmm… Bob S > On Apr 2, 2020, at 12:05 PM, Pi Di

Answer Dialog in Stack now

2020-04-02 Thread Bob Sneidar via use-livecode
Hi all. I just created a standalone for a new project for the first time. Now every time I open it, it complains that there is already and answer Dialog stack in memory! What’s worse, any time I use the form Answer Password I can see what I type!!! Livecode Devs, MAKE IT STOP!!! You cannot POS

Re: Answer Dialog in Stack now

2020-04-02 Thread Bob Sneidar via use-livecode
Okay crisis temporarily averted. For whatever reason the Standalone Builder copied several Livecode UI stacks as substacks of my Mainstack! THAT’S NOT SUPPOSED TO HAPPEN! Bob S On Apr 2, 2020, at 2:54 PM, Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote:

Re: Answer Dialog in Stack now

2020-04-02 Thread Bob Sneidar via use-livecode
:01 PM, Bob Sneidar via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Okay crisis temporarily averted. For whatever reason the Standalone Builder copied several Livecode UI stacks as substacks of my Mainstack! THAT’S NOT SUPPOSED TO HAPPEN! Bob S On Apr 2, 2020, at 2

Re: Hide stack change focus not supported 64bit

2020-04-03 Thread Bob Sneidar via use-livecode
Open Stack Properties, add to the stackfiles. Also in the standalone builder you can add other files and folders that are not stack files. Bob S On Apr 2, 2020, at 9:33 PM, Bill Vlahos via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: I don’t see it in the inclusions tab. How do

Re: How to find the column and row of a basic tableField

2020-04-03 Thread Bob Sneidar via use-livecode
Probably has to do with margins. Bob S On Apr 2, 2020, at 11:42 PM, Håkan Liljegren via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: It works for tables with or without date but doesn’t handle tables with variable row heights as that was not the case at the moment. To get it pi

Re: DataGrid question: Suggestions for further enhancements (Bob Sneidar)

2020-04-03 Thread Bob Sneidar via use-livecode
:-) I wasn’t arguing, just pointing out that before the data grid, the community was practically begging RunRev for some kind of robust table object, BECAUSE the table field was so unwieldy. That others have found ways in the interim to enhance the table field is nothing short of astounding, an

Re: Go to card has become slow

2020-04-03 Thread Bob Sneidar via use-livecode
What may help in the future to eliminate possible script issues, is to use a text editor that has the capability of comparing two scripts and showing you the difference. Most of the code editors have addams that will do this. Bob S On Apr 3, 2020, at 1:25 AM, Terence Heaford via use-livecode

Re: Go to card has become slow

2020-04-03 Thread Bob Sneidar via use-livecode
Mark, you may have answered why it is my Forms Generator app is running so slow on Windows. I don’t use transactions and I make multiple queries for most transactions. Bob S On Apr 3, 2020, at 1:42 AM, Mark Waddingham via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On 2020-04-

Re:

2020-04-03 Thread Bob Sneidar via use-livecode
Ralph, this is brilliant. I remember trying to do something similar years ago, and giving up because I didn't know how to do the math. I suck at math, or rather I am too lazy and impatient to work the problem. Bob S > On Apr 3, 2020, at 14:27 , Ralph DiMola via use-livecode > wrote: > > Gra

Re: Our first Community Zoom Session

2020-04-04 Thread Bob Sneidar via use-livecode
Richard, Without going into the details of the API, do you think a kind of Customer Support portal could be built into LC? Bob S On Apr 3, 2020, at 10:27 PM, Richard Gaskin via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Mark Wieder wrote: > I'm *very* impressed with Zoom's e

Re: Getting started with geographical coordinates

2020-04-04 Thread Bob Sneidar via use-livecode
[ALERT: Waxing Philosophical] I wholeheartedly agree. These people UNDERSTOOD Mathematics. This was a big problem for me as a child. I failed 6th grade math and had to go to summer school to pass, partly because I was lazy and wouldn’t do my home work, but also because I would sit in class and

Script Only Stack Properties

2020-04-04 Thread Bob Sneidar via use-livecode
Hi all. I just discovered an interesting aspect of script only stacks. They CAN have Custom Properties… but ONLY while in memory! Once closed, the properties disappear. Seems like a slight mod would be able to save these properties as a separate file so that they can remain persistent. Gonna

Re: Getting started with geographical coordinates

2020-04-04 Thread Bob Sneidar via use-livecode
y be there and so there would be no time. And no space for that matter. Bob S On Apr 4, 2020, at 9:20 AM, Mark Wieder via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On 4/4/20 8:37 AM, Bob Sneidar via use-livecode wrote: Once I caught on, I realized that Mathematics was

Re: Script Only Stack Properties

2020-04-04 Thread Bob Sneidar via use-livecode
Hmmm… If that is the case then theoretically, on closeStack the new properties could be arrayEncoded and saved to disk, and then on openStack they could be read and then arrayDecoded and reset again. Bob S On Apr 4, 2020, at 10:20 AM, J. Landman Gay via use-livecode mailto:use-livecode@lists.

Re: Script Only Stack Properties

2020-04-04 Thread Bob Sneidar via use-livecode
True, but with properties, I can envision a use case for persistent values between sessions. This is quite separate from GUI objects. By saving and reloading properties of a script only stack, everything is still text file only based. Bob S On Apr 4, 2020, at 11:17 AM, Richard Gaskin via use-

Re: Getting started with geographical coordinates

2020-04-04 Thread Bob Sneidar via use-livecode
Exactly. :-) Bob S On Apr 4, 2020, at 10:59 AM, J. Landman Gay via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: A quip from my college days: Time is what keeps everything from happening all at once. Space is what keeps everything from happening to YOU. -- Jacqueline Landman Ga

Re: HilitedItem of a navbar

2020-04-04 Thread Bob Sneidar via use-livecode
Try empty Bob S On Apr 4, 2020, at 12:30 PM, J. Landman Gay via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: I can't set this to 0? I need to. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: Go to card has become slow

2020-04-05 Thread Bob Sneidar via use-livecode
s subject. > > I don’t know the answer? > > Best regards > > Terry > > > >> On 3 Apr 2020, at 17:00, Bob Sneidar via use-livecode >> wrote: >> >> Mark, you may have answered why it is my Forms Generator app is running so >> slow on Windo

Re: Go to card has become slow

2020-04-05 Thread Bob Sneidar via use-livecode
I don’t think LC accepts multiple statement transactions at all, does it? Bob S On Apr 5, 2020, at 11:00 AM, doc hawk via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: If server performance is at all an issue, SQLite may be the wrong choice. It has a kind of, very reluctant, sim

Socket Help

2020-04-05 Thread Bob Sneidar via use-livecode
Hi all. I am creating a client/server socket based app and I am trying to develop both the client and server on the same workstation, and I am having difficulty. I *think* the issue is that the client and server cannot both be on the same system, but I’m not entirely sure. I’m asking the syste

Re: Socket Help

2020-04-05 Thread Bob Sneidar via use-livecode
back in to the server port. Server replies from its port to the client port (client is waiting for a reply). Try talking to your server with a browser on your computer and see what the server response looks like. Kee Nethery On Apr 5, 2020, at 11:22 AM, Bob Sneidar via use-livecode mailto:use

Re: Socket Help

2020-04-06 Thread Bob Sneidar via use-livecode
Hi Phil. Thanks for the reply. I’m curious how this client server method handles multiple simultaneous connections? I had the idea of having a listener agent spawn an SQL Agent stack the first time a client connected, that would then listen on a random port. The listener agent would return the

Re: Maximum field height?

2020-04-06 Thread Bob Sneidar via use-livecode
There’s the rub I think. For RunRev (is the company still called that?) to make what mobile objects they can universal, and leave the others as is would then create a situation where developers would have to know what controls were universal, and which were Mobile/Desktop only. It just adds anot

Re: Maximum field height?

2020-04-06 Thread Bob Sneidar via use-livecode
I think that would kill the Apple Desktop OS. Bob S On Apr 6, 2020, at 6:37 AM, Paul Dupuis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Apple is absolutely working towards iOS and macOS being highly similar. However, if you're hoping that brings increased simplicity of appl

Re: Go to card has become slow

2020-04-06 Thread Bob Sneidar via use-livecode
Hi Richard. In review, I tested saving stacks on a standalone Windows Workstation, a VMWARE VM on a very robust server host, a Parallels VM on a workstation and my Mac. As I am saving the stack, I am watching the folder the stack is in. I see the tilde version pop up and go away. On Mac it’s al

Re: Socket Help

2020-04-06 Thread Bob Sneidar via use-livecode
I was a big believer that SSL was never going to be compromised… until it was. The retooling of industry security standards over the last 6 years or so has taught me the opposite: NEVER rely on out of the box security if you can help it. Asking a web server to get data and return it introduces

Re: Go to card has become slow

2020-04-06 Thread Bob Sneidar via use-livecode
Control doesn’t return to the application until the tilde version goes away. On Apr 6, 2020, at 9:28 AM, Richard Gaskin via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Your application writing data to disk is a very different thing from Windows Desktop Explorer automatically refr

Re: Go to card has become slow

2020-04-06 Thread Bob Sneidar via use-livecode
You are testing low level file operations. I am testing the saving of a Livecode stack. I don’t think this test applies. Bob S On Apr 6, 2020, at 9:28 AM, Richard Gaskin via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: on mouseUp put the long seconds into t write "somedata" to

Re: Socket Help

2020-04-06 Thread Bob Sneidar via use-livecode
Hi Richard. Just to be absolutely certain I excluded any other factors, I tested retrieving data from mySQL from a Mac and from a PC using only the Message Box (no UI). Since I am out of the office, I can only test my Mac remotely. I can however remote into the mySQL server at work which is r

Re: ANN: glx2 script editor 4.0

2020-04-06 Thread Bob Sneidar via use-livecode
Whoa! Quite a bit smaller! I’ll check it out. Really excited! I loved GLX2 but the code loss on OS X when switching GLX2 on and off was killing me! I will back things up and check for that. Bob S ___ use-livecode mailing list use-livecode@lists.runre

Re: Socket Help

2020-04-06 Thread Bob Sneidar via use-livecode
Both. The Windows lag is present on the LAN and Internet. The Internet does not seem to be introducing any lag, or so little it’s not detectable. On Apr 6, 2020, at 11:50 AM, Phil Davis via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: Hi Bob, I'm realizing now that your system co

Re: ANN: glx2 script editor 4.0

2020-04-06 Thread Bob Sneidar via use-livecode
This may be fixed in 4.0.1. I’ll check. OK I verified that if I make a change in GLX2, then switch to the Native SE, I see the change. If however I make a change in the Native SE, then switch to GLX2, it does NOT reflect the change. If however I SAVE the stack, THEN GLX2 sees the code change. I

Re: Who else doesn't want auto-select when opening a card?

2020-04-06 Thread Bob Sneidar via use-livecode
I ALWAYS want that. Nevertheless, have you tried select nothing in after OpenCard? Bob S On Apr 6, 2020, at 11:39 AM, J. Landman Gay via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: This makes me crazy. I almost never want the first field selected when I go to a card, particula

Re: ANN: glx2 script editor 4.0

2020-04-06 Thread Bob Sneidar via use-livecode
Wieder via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: On 4/6/20 12:36 PM, Bob Sneidar via use-livecode wrote: This may be fixed in 4.0.1. I’ll check. OK I verified that if I make a change in GLX2, then switch to the Native SE, I see the change. If however I make a change

Re: ANN: glx2 script editor 4.0

2020-04-06 Thread Bob Sneidar via use-livecode
seeing some of the same things. There was an issue where the GLX2 menu under certain conditions would become the custom menu of the open GLX2 SE, and the system menu would revert back to the default. If the GLX2 menu becomes the System Menu you cannot access the default System Manu at all. Bob

Re: ANN: glx2 script editor 4.0

2020-04-06 Thread Bob Sneidar via use-livecode
I suspect the repeated LC SE reversion is the same issue as prefs not sticking. Bob S On Apr 6, 2020, at 1:49 PM, Bob Sneidar mailto:bobsnei...@iotecdigital.com>> wrote: seeing some of the same things. There was an issue where the GLX2 menu under certain conditions would become the custom men

Re: ANN: glx2 script editor 4.0

2020-04-06 Thread Bob Sneidar via use-livecode
Mark has identified some anomalies and is presently working on it. Bob S On Apr 6, 2020, at 4:48 PM, Andre Garzia via use-livecode mailto:use-livecode@lists.runrev.com>> wrote: I'm also experiencing some oddities with GLX2 4.0.1 here. I've uploaded a screenshot to: http://andregarzia.com/img

Re: Go to card has become slow

2020-04-07 Thread Bob Sneidar via use-livecode
Richard, I can verify that my mainStack is pretty big in terms of objects and code. When I create a standalone for Windows however, it breaks out all the substacks into individual stacks, and the saving just the mainStack in a Windows standalone still takes longer than saving the entire Mainstac

Re: Building a Board Game

2020-04-07 Thread Bob Sneidar via use-livecode
Just brainstorming, you would have to intercept mouseMove and then have a tolerance of points to your grid. Say three points. Assuming your grid starts at the top left of the window, you would div the top of the object with the vertical grid width, check for tolerance above and below, then set t

Re: Who else doesn't want auto-select when opening a card?

2020-04-07 Thread Bob Sneidar via use-livecode
I think about 30% of my coding is one workaround or another. :-) Bob S > On Apr 7, 2020, at 3:53 PM, J. Landman Gay via use-livecode > wrote: > > I have workarounds, I just don't want to have to use them. Selecting nothing > or setting the hilitedline, either one, you still have to set up so

Re: Go to card has become slow

2020-04-08 Thread Bob Sneidar via use-livecode
Interesting results Richard. I hope the mothership is monitoring this thread. I’ll give the test a go later today. I have to go out (believe it or not) to some customers this morning and early afternoon. Bob S > On Apr 7, 2020, at 10:56 PM, Richard Gaskin via use-livecode > wrote: > > Grea

Re: Building a Board Game

2020-04-08 Thread Bob Sneidar via use-livecode
I was also thinking that hiding the object and using the dragImage might be better, because if a the player drops a piece on an illegal position, you could simply cancel the drag operation and show the original object. Bob S > On Apr 7, 2020, at 12:36 PM, Bob Sneidar wrote: > > Just brainst

Re: Make video call

2020-04-08 Thread Bob Sneidar via use-livecode
In theory anything is possible. That said, the trick will be accessing the camera and then streaming the captured video. Livecode to my knowledge does not provide a means for that, so some kind of external would be necessary. Beyond that is the security aspects. The stream is probably going to

Re: Building a Board Game

2020-04-08 Thread Bob Sneidar via use-livecode
If you decide on that method, check out dragImageOffset. Bob S > On Apr 8, 2020, at 7:22 AM, Roger Guay via use-livecode > wrote: > > I like it! Thanks!! > > Roger > > ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit th

Re: LC Android deployment working on Windows 10 under ARM64

2020-04-08 Thread Bob Sneidar via use-livecode
Again, why would one want to? :-) 32 bit only apps are apps that are not maintained, and have likely not been maintained for quite some time. Win XP 64 bit was released in April 2005. 15 YEARS ago. The die was cast way back then. Anyone who refused or were unable to update their apps to 64 bit

Re: HilitedItem of a navbar

2020-04-08 Thread Bob Sneidar via use-livecode
That's what I said! I thought people were ignoring me because that wouldn't work. Bob S > On Apr 8, 2020, at 15:54 , Brian Milby via use-livecode > wrote: > > Use empty instead of 0 and it should work. > > Thanks, > Brian > On Apr 8, 2020, 5:38 PM -0400, J. Landman Gay via use-livecode >

Re: HilitedItem of a navbar

2020-04-08 Thread Bob Sneidar via use-livecode
Yeah no work. Must be an integer Bob S > On Apr 8, 2020, at 16:01 , Bob Sneidar via use-livecode > wrote: > > That's what I said! I thought people were ignoring me because that wouldn't > work. > > Bob S > > >> On Apr 8, 2020, at 15:5

Re: HilitedItem of a navbar

2020-04-08 Thread Bob Sneidar via use-livecode
Ah! I read the subject, not the body. :-) Bob S > On Apr 8, 2020, at 16:12 , Brian Milby via use-livecode > wrote: > > For the segmented control widget, the hilitedItems property (with an s) > expects a comma separated list of positive integers. It can be empty to have > nothing selected. >

Re: Go to card has become slow

2020-04-09 Thread Bob Sneidar via use-livecode
Yes, but I have saved stacks with both Defender and Kaspersky disabled. In our case I do not think that is the entire issue. Bob S > On Apr 8, 2020, at 11:16 PM, Richard Gaskin via use-livecode > wrote: > > Better still, see the last comment on that page. :) > > It kinda fits Brian's obser

Re: Video format for mobile

2020-04-09 Thread Bob Sneidar via use-livecode
As I recall, it is lossless, yes? Bob S > On Apr 8, 2020, at 7:46 PM, Jerry Jensen via use-livecode > wrote: > > Hi J, > AAC is Advanced Audio Compression - successor to MP3. > https://fileinfo.com/extension/aac > Hope this will help you figure out how to play it. > .Jerry _

Re: Go to card has become slow

2020-04-09 Thread Bob Sneidar via use-livecode
Are we saying we can use binFile to save stacks as opposed to the normal way? With no side effects?? Bob S > On Apr 8, 2020, at 7:04 AM, Bob Sneidar wrote: > >> put url ("binfile:"&fName) into tData >> put the long seconds into t >> put tData into url ("binfile:"& fName) >> put the lo

What is a token

2020-04-11 Thread Bob Sneidar via use-livecode
Hi all. Recently in an effort to help Mark Wieder with the formatting portion of GLX2 v4, I came across an issue where the block comments were not formatting correctly, and any handler with a block comment didn’t auto indent. In looking through the code, I discovered that the handler responsi

Re: HilitedItem of a navbar

2020-04-11 Thread Bob Sneidar via use-livecode
I figured out that when my work laptop is active there is a rule that moves the emails for the use list into another folder. My home iMac has no such rule, so at times it seems like no one is responding when actually they are. DOH! Bob S > On Apr 8, 2020, at 4:15 PM, J. Landman Gay via use-li

Re: Another Apple iOS Deadline

2020-04-11 Thread Bob Sneidar via use-livecode
Kind of like praying that Darth Vader doesn’t alter the agreement further. ;-) Bob S > On Apr 9, 2020, at 11:15 AM, matthias rebbe via use-livecode > wrote: > >> >> Am 09.04.2020 um 20:10 schrieb J. Landman Gay via use-livecode >> : >> >> On 4/9/20 11:52 AM, matthias rebbe via use-livecode

Re: Go to card has become slow

2020-04-11 Thread Bob Sneidar via use-livecode
Well that would explain why my Datagrid heavy application is a pig saving on Windows! Bob S > On Apr 10, 2020, at 8:46 AM, Brian Milby via use-livecode > wrote: > > I'm going to be that guy who replies to himself... > > I just imported a 500kb image to the card, removed the text from the f

Re: Livecode and AWS Sql

2020-04-11 Thread Bob Sneidar via use-livecode
Hi all. I went through something similar of late. One thing to keep in mind, the ODBC driver can connect to a SQL server on another device, but your app that communicates with ODBC must be on the same device as the DSN. May not be your issue. Bob S > On Apr 10, 2020, at 4:36 AM, Skip Kimpel

Re: Go to card has become slow

2020-04-11 Thread Bob Sneidar via use-livecode
Mark, you are a freaking computing god! (small G). Bob S > On Apr 11, 2020, at 8:41 AM, Mark Waddingham via use-livecode > wrote: > > On 2020-04-11 13:54, Neville Smythe via use-livecode wrote: >> Sorry Brian, I uploaded from the wrong folder. Here is the update test >> set. But the only dif

Re: Livecode and AWS Sql

2020-04-11 Thread Bob Sneidar via use-livecode
Same as on Windows, but the difference is that Microsoft has built in drivers for SQL Server, mySQL and some other things. The Mac does not. You have to download the ODBC Administrator (need the 64 bit version you know) and the drivers. This is why I created my Socket based Client Server apps.

Re: What is a token

2020-04-12 Thread Bob Sneidar via use-livecode
:-) That is exactly what I submitted to Mark Wieder as a fix. Am I becoming as smart as Mark Waddingham?? LOL! Bob S > On Apr 12, 2020, at 12:49 AM, Mark Waddingham via use-livecode > wrote: > > If you want to see if a line starts with a multi-line comment then you should > do: > > if wor

Re: What is a token

2020-04-12 Thread Bob Sneidar via use-livecode
variable to false. I’ll go ahead and try an implement that and send you a fix. If the code is on Github, I’ll submit there. Bob S > On Apr 12, 2020, at 6:17 AM, Bob Sneidar via use-livecode > wrote: > > :-) That is exactly what I submitted to Mark Wieder as a fix. Am I becoming &

Re: Livecode and AWS Sql

2020-04-12 Thread Bob Sneidar via use-livecode
ode > wrote: > >> Am 12.04.2020 um 01:11 schrieb Bob Sneidar via use-livecode >> : >> >> Same as on Windows, but the difference is that Microsoft has built in >> drivers for SQL Server, mySQL and some other things. > Yes, MS Windows has included a

Re: What is a token

2020-04-12 Thread Bob Sneidar via use-livecode
How about: if “/*" is among the words of Bob S > On Apr 12, 2020, at 8:47 AM, Mark Wieder via use-livecode > wrote: > > On 4/12/20 12:49 AM, Mark Waddingham via use-livecode wrote: > >> If you want to see if a line starts with a multi-line comment then you >> should do: >> if word 1 of t

  1   2   3   4   5   6   7   8   9   10   >