Re: Accumulating text is *VERY* slow in LC9 on Windows

2021-08-25 Thread Curry Kenworthy via use-livecode
Ben: > But the key thing is: for this task, LC9 is > dramatically slower on Windows!) > Have others seen something like this? Generally: Yep, I've seen plenty of slowdowns. On both Windows and Mac, depending on the task. Specifically: I'd like to test this later; still recovering from two

Re: [ANN] Organize - A daily task manager

2021-08-25 Thread Alex Tweedly via use-livecode
Hi Mark, Looks great. I'm impressed - and inspired to have another try at getting past the hurdles and making an iOS app :-) Any suggestions on how to get started would be welcome. I'm not sure if I should send comments/suggestions directly to you, or to start on the list to encourage

Re: [ANN] Organize - A daily task manager

2021-08-25 Thread Skip Kimpel via use-livecode
Me as well! Looks like a fantastic product. SKIP > On Aug 25, 2021, at 8:08 PM, Marc Siskin via use-livecode > wrote: > > Mark, > > I would like to test your app. I need an invitation code in order to do so. > > If you still have space, please send me a code directly to my e-mail. > >

Re: [ANN] Organize - A daily task manager

2021-08-25 Thread Marc Siskin via use-livecode
Mark, I would like to test your app. I need an invitation code in order to do so. If you still have space, please send me a code directly to my e-mail. Thanks, Marc Siskin --- Marc Siskin, Learning Engineer Manager, Modern Language Resource Center Carnegie Mellon University

Re: Property inspector opening with wrong object

2021-08-25 Thread Neville Smythe via use-livecode
> By double-clicking a selected object when with the pointer tool? By > selecting from the ?Object? menu? > > Craig I had forgotten about opening the Inspector with double-click, I had got into the habit of opening from the contextual menu. The bug is not happening just now so I can’t check

setting the dragImage under LC 9.6.3

2021-08-25 Thread Paul Dupuis via use-livecode
I have a situation I just noticed running under LC 9.6.3. I have a field where you can drag lines to drop on other specific lines. on dragStart, take a snapshot of the line just clicked and make set and existing image object to the image data of the snapshot. i.e.   put pText into fld

[ANN] Organize - A daily task manager

2021-08-25 Thread Mark Smith via use-livecode
I am very pleased to announce a wide-beta release of my first iOS app; Organize -- a daily to-do list manager. There is a demo on Youtube (https://youtu.be/LtQ5O1Qk80w ) and you can download and install the (final) beta version here...

Re: [ANN] New version of the "universal button" widget

2021-08-25 Thread Mark Smith via use-livecode
Thanks Ralf. That looks to be a very useful widget. Mark > On Aug 19, 2021, at 7:15 PM, Ralf Bitter via use-livecode > wrote: > > There is a new version of the "universal button" widget > which can be used as a replacement for the > segmented control widget. > > There was an issue with

Re: Accumulating text is *VERY* slow in LC9 on Windows

2021-08-25 Thread Alex Tweedly via use-livecode
Crazy idea - totally untried (sorry, I don't have a Win machine)   put 1 into tLineCount   repeat for each line tRow in tWorkTable   put tRow into tNewTable[tLineCount]       add 1 to tLineCount   end repeat   combine tNewTable using CR Alex. On 25/08/2021 18:15, Ben Rubinstein via

Re: Property inspector opening with wrong object

2021-08-25 Thread Craig Newman via use-livecode
MouseOver? Perhaps, mouseChunk or mouseCharChunk? And you ask for the number of words from char 1 to word 4 of either of those functions? Craig > On Aug 25, 2021, at 12:48 PM, KOOB via use-livecode > wrote: > > Hi Neville > > I have started noticing this as well recently. I haven’t

Accumulating text is *VERY* slow in LC9 on Windows

2021-08-25 Thread Ben Rubinstein via use-livecode
Some 20 months ago, I reported that I was in a situation where an app written in 6.7 needed to be updated to access 64bit drivers, which meant updating to 9.5 - which displayed horrifying increase in processing time. In fact I was able to put off the evil day - but now it has returned, and

Re: Property inspector opening with wrong object

2021-08-25 Thread KOOB via use-livecode
Hi Neville I have started noticing this as well recently. I haven’t bothered to try and track down what was going wrong. I thought It was something happening in the stack I was working on. I had a mouseOver handler in a field to identify the word the mouse was over using mouseChunk so I

Re: Property inspector opening with wrong object

2021-08-25 Thread Bob Sneidar via use-livecode
What happens if you open the object inspector, then select an object on a card? It *should* change to the properties of the selected object. Bob S > On Aug 25, 2021, at 06:24 , Craig Newman via use-livecode > wrote: > > Hi. > > I have never seen this on my Mac. How do you open the

Re: Property inspector opening with wrong object

2021-08-25 Thread Craig Newman via use-livecode
Hi. I have never seen this on my Mac. How do you open the inspector? By double-clicking a selected object when with the pointer tool? By selecting from the “Object” menu? Craig > On Aug 24, 2021, at 11:39 PM, Neville Smythe via use-livecode > wrote: > > Has anyone else experienced this? It