Re: Rename object

2019-07-09 Thread Mark Wieder via use-livecode
On 7/9/19 3:59 PM, Dr. Hawkins via use-livecode wrote: Wow, I can do that? All these years, and still little details . . . ikr -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url

Re: Rename object

2019-07-09 Thread Dr. Hawkins via use-livecode
On Jul 4, 2019, at 9:33 AM, Dar Scott Consulting via use-livecode wrote: > > clone control "gizmo" as "blivet" Wow, I can do that? All these years, and still little details . . . — Richard E. Hawkins, Esq. The Hawkins Law Firm 3430 E. Flamingo Rd. Suite 232 Las Vegas, NV 89121 (702) 508-84

Re: script for redo/undo text?

2019-07-09 Thread Mark Wieder via use-livecode
On 7/8/19 8:05 PM, Nicolas Cueto via use-livecode wrote: Good day eh. To quote a post from "User Experience Stack Exchange ": " undo/redo is one of the biggest implementation, testing and maintenance headaches in any sign

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 table

Re: DataGrid v1 vs DataGrid v2...

2019-07-09 Thread Paul Dupuis via use-livecode
On 7/9/2019 8:32 AM, Sean Cole (Pi) via use-livecode wrote: Hi Paul. It gets upgraded automatically. If it is in a Form style, the swipe actions are turned off by default to avoid ruining your old versions. Practically all of the old code works as it did before. As it's just the engine that chan

Re: script for redo/undo text?

2019-07-09 Thread Bob Sneidar via use-livecode
Another Code Conservative! Nice to meet you sir! We are so few and far between. ;-) Bob S > On Jul 9, 2019, at 05:29 , Curry Kenworthy via use-livecode > wrote: > > Sean: > > > The likely method for a WP-like unlimited Un/Re-do is to work > > with chunks. It's going to be a major memory-who

Re: XML To Array

2019-07-09 Thread Bob Sneidar via use-livecode
I checked the xml and there are indeed duplicates. The current xmlToArray function is likely the only way to view and modify the xml to add entries so I can reimport them. The xml is so complex though that I don't think I'll tackle it. Bob S > On Jul 3, 2019, at 09:28 , Mark Wieder via use-l

Re: script for redo/undo text?

2019-07-09 Thread Sean Cole (Pi) via use-livecode
Curry, Hehe, you are, of course, right and I'd be inclined to do it the 'non' way too. In simple terms, in the 'non' way you only store the changes (like SVC) rather than the whole field. But it's far harder to explain in detail and infinitesimally so when you think about the many possible scenar

Re: DataGrid v1 vs DataGrid v2...

2019-07-09 Thread Sean Cole (Pi) via use-livecode
Hi Paul. It gets upgraded automatically. If it is in a Form style, the swipe actions are turned off by default to avoid ruining your old versions. Practically all of the old code works as it did before. As it's just the engine that changes it's basically a straight forward swap-out that's done whe

Re: script for redo/undo text?

2019-07-09 Thread Curry Kenworthy via use-livecode
Sean: > The likely method for a WP-like unlimited Un/Re-do is to work > with chunks. It's going to be a major memory-whore for large text > but the most practical, easy way. And then there's the, um, NON-memory-whore approach. Always my fave. (I'm picky like that when it comes to the whole co

DataGrid v1 vs DataGrid v2...

2019-07-09 Thread Paul Dupuis via use-livecode
QUESTION: If I have a stack with a Datagrid in it that was made in LiveCode 6.x.x. and I have now opened and saved this stack from LiveCode 9.0.5rc1 in the current (v7.0) stack format. Does the Datagrid get converted from a version1 data grid to a version 2 datagrid? Or, if I want/need the v

Re: script for redo/undo text?

2019-07-09 Thread Sean Cole (Pi) via use-livecode
Hi Nicolas, After reviewing my code, I don't think it will suffice for your needs. As I said, mine was more character/word based which would be overkill on a large document. More suited to a small text field where lot's of changes to characters or words will happen. That's not the same as with som

Re: script for redo/undo text?

2019-07-09 Thread Pi Digital via use-livecode
Hi Nicolas It becomes quite the memory hoarder as the document goes on (as you can imagine) but I created one that is basically an indexed svc-like array. It can be char or word based. I also created (although it wouldn’t suit your purpose) a very complex undo/redo for a number of prototype g