RE: diesel again

2015-11-19 Thread Ralph DiMola
Mark, Please do contact Davis directly. Diesel's load is back to HIGH and no mail is getting sent. I just logged another emergency support request. Thanks! Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:us

Re: Search and Replace in Script Editor: Cannot invoke "Replace All"

2015-11-19 Thread Howard Bornstein
I'm not seeing the dialog you mentioned but ran into this problem with Replace and Replace All yesterday. Didn't this also used to work for all the other "Look In" options? Btw, I'm using LC 6.7.5. On Tue, Sep 29, 2015 at 8:02 AM, Ray wrote: > The options mentioned below work for me, but for som

Re: Script for finding duplicate accounts and identifying dups

2015-11-19 Thread Peter Haworth
Sorry, the put in the second repeat should be "put rKey,tArray[rKey] & return after tDuplist This gives you one line per duplicate username so if you want a separate line for each dup, the second repeat becomes: repeat for each line rKey in the keys of tArray if the number of items in tArray[r

Re: Script for finding duplicate accounts and identifying dups

2015-11-19 Thread Peter Haworth
I haven't seen Bernd's code but here's one way. repeat for each line rLine in tUserlist put item 2 of rLine & comma after tArray[item 1 of rLine] end repeat repeat for each line rKey in the keys of tArray if the number of items in tArray[rKey]>1 then put tArray[rKey] & return after tD

Re: Script for finding duplicate accounts and identifying dups

2015-11-19 Thread Phil Davis
Hi John, Here is yet another approach: -- this button script assumes the list is in fld "list" -- a somewhat brute force approach - focus is on results, not efficiency on mouseUp -- organize all records into array put fld "list" into tUserList repeat for each line tLine in tUserLis

Re: Script for finding duplicate accounts and identifying dups

2015-11-19 Thread dunbarx
Ah, three or more dups. Of course, the code can test for successive dups, and parse accordingly. But Bernd's array cuts through all that. Craig -Original Message- From: Mike Bonner To: How to use LiveCode Sent: Thu, Nov 19, 2015 3:44 pm Subject: Re: Script for finding duplicate ac

Re: diesel again

2015-11-19 Thread Mark Wieder
On 11/19/2015 01:38 PM, Richard Gaskin wrote: Mark Wieder wrote: Dunno about you, but David has stopped responding to my emails. Was that sent to support@, or to David personally? Heather's tried to remind us gently here a few times that we should avoid writing to specific individual accounts

RE: Mobile Resizestack handler possible bug

2015-11-19 Thread Ralph DiMola
True, It is only called once whenever the orientation is changed. But I call the same routine to place the controls on the card from both the preopencard message and the resizestack message. Network connectivity determines the visible buttons on the card. That is why it's in there. I moved the conn

Re: wtf diesel?

2015-11-19 Thread Simon
Just received an email sent 18 hours ago. Simon -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/wtf-diesel-tp4698828p4698887.html Sent from the Revolution - User mailing list archive at Nabble.com. ___ use-livecode ma

Re: diesel again

2015-11-19 Thread Richard Gaskin
Mark Wieder wrote: Dunno about you, but David has stopped responding to my emails. Was that sent to support@, or to David personally? Heather's tried to remind us gently here a few times that we should avoid writing to specific individual accounts for support matters because roles shift, peo

Re: Mobile Resizestack handler possible bug

2015-11-19 Thread Richard Gaskin
David Bovill wrote: Resize handlers are called repeatedly with every fraction of a move - if you out slow code inside them (like fetching a blocking url) then it jams up. While I would also put net access calls in something other than a resizeStack message, on a mobile device isn't resizeStack

Re: diesel again

2015-11-19 Thread Mark Wieder
On 11/19/2015 12:50 PM, Trevor DeVore wrote: On Thursday, November 19, 2015, Mark Wieder wrote: Dunno about you, but David has stopped responding to my emails. Maybe his email account is on diesel too... :-) Ha! Didn't think of that. I would hope, though, that the team uses something mor

Re: diesel again

2015-11-19 Thread Mark Wieder
This looks like fun: Sent: Wed, 18 Nov 2015 11:38:43 + Delivered: Thu, 19 Nov 2015 20:38:38 +0100 Gotta wonder what emails do when they sit around for a day and a half. Hope they brought something to read. -- Mark Wieder ahsoftw...@gmail.com ___

Re: diesel again

2015-11-19 Thread Trevor DeVore
On Thursday, November 19, 2015, Mark Wieder wrote: > Dunno about you, but David has stopped responding to my emails. > Maybe his email account is on diesel too... :-) -- Trevor DeVore ___ use-livecode mailing list use-livecode@lists.runrev.com Please

Re: Script for finding duplicate accounts and identifying dups

2015-11-19 Thread JOHN PATTEN
Thanks Mike and Craig, My issues was figuring out how to identify the item (username) in my list when I create and check via the array. I wasn’t sure about what that would look like, i.e. "if tDataArray[item 1 of tLine] is empty then…” With 8000 + user accounts, there is a very good chance tha

Re: diesel again

2015-11-19 Thread Mark Wieder
Dunno about you, but David has stopped responding to my emails. -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Script for finding duplicate accounts and identifying dups

2015-11-19 Thread Mike Bonner
I thought about the sort and compare method, and it works well if theres only 2 that match, more lines of code are needed if there can be multiple dupes. But the single time through sort method is probably faster than the array method I posted even after tweaking it to allow for multiple dupes. O

Re: Script for finding duplicate accounts and identifying dups

2015-11-19 Thread Mike Bonner
Meant to put this in the last msg but oh well. The output list ends up like this.. ijones,6,11 tbonner,32,38,45 qbonner,13,14 imojo,4,49 tmajor,5,20 umojo,12,29,48 qmojo,27,41 ugarcia,9,44 tjones,10,19 ygarcia,7,17 qminor,37,43 ebonner,39,50 The username dupes, and the Id's. On Thu, Nov 19, 201

Re: Script for finding duplicate accounts and identifying dups

2015-11-19 Thread Mike Bonner
I like arrays for this sort of thing. I'm sure theres a more efficient way to do it but here is code that might work ok. on mouseUp put field 1 into tData -- the list repeat for each line tLine in tData if tDataArray[item 1 of tLine] is empty then -- build the array keyed by username

Re: Feature Exchange - Find and Replace

2015-11-19 Thread Monte Goulding
Anything that isn't in the published roadmap and someone goes to the company and offers to part fund would be up for grabs. Sent from my iPhone > On 20 Nov 2015, at 7:18 am, William Prothero wrote: > > I guess I am, perhaps like others, trying to wrap my head around what > expectations are re

Re: Script for finding duplicate accounts and identifying dups

2015-11-19 Thread dunbarx
Hi. I did not read Bernd's response. Are the records on separate lines? jdoe, 123456 ggarcia, 121212 ggarcia, 131313 If they are not. make then so. And then, why not sort the list, and in a "repeat with..." loop check each line with the line following. If they match, extract the two indexe

Re: Feature Exchange - Find and Replace

2015-11-19 Thread William Prothero
Folks: I guess I am, perhaps like others, trying to wrap my head around what expectations are reasonable for use financed vs mother ship financed improvements to livecode. In the past, I have used commercial, purchased software, like Director, Supercard, Word, etc, where the model is that some

Script for finding duplicate accounts and identifying dups

2015-11-19 Thread JOHN PATTEN
Hi All, I have a list of user accounts and unique IDs. The user accounts are first initial + last name. A typical list might look like the following: jdoe, 123456 ggarcia, 121212 ggarcia, 131313 I’m trying identify the duplicates, list the username and their unique 6 digit id. I have been usi

Re: LC8 Standalone field sizes.

2015-11-19 Thread Peter Haworth
Hi Mark, This is on OSX 10.10. Just filed QCC report 16455 with sample stack and standalone. Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin On Thu, Nov 19, 2015 at 4:31 AM, Mark

RE: wtf diesel?

2015-11-19 Thread Ralph DiMola
The load on diesel went from high to low around 18:00 EST. It's still low. 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 Simon Sent: Thursday, November 19

Re: wtf diesel?

2015-11-19 Thread Simon
mwieder wrote > Emails have been arriving out of order and many hours late. As of 12 hours ago it was still doing this. Might still be doing it today. /Poor Diesel is sick People think I'm just insane They got the email/ Simon -- View this message in context: http://runtime-revolution.278305

Re: Feature Exchange - Find and Replace

2015-11-19 Thread Robert Mann
Hi! I'me a bit puzzled.. i've been waiting about 10 years for a comfortable audio framework within runrev/livecode that would allow all of us to use embed compressed audio within live code stacks and exchange kind of "audio cards" easily over the internet. Well, damn it... ! So.. an addition to f

Re: LC8 Standalone field sizes.

2015-11-19 Thread Mark Waddingham
Hi Peter, On 2015-11-18 18:43, Peter Haworth wrote: I'm seeing a slight difference in the width of fields required to hold a given amount of text in the LC8 IDE and LC8 standalone. Which platform are you seeing this on? Using one field as an example, I displayed the effective font, size, an

Feature Exchange - Find and Replace

2015-11-19 Thread Heather Laine
Dear list folks, I'm pleased to inform you that our next Feature Exchange has been posted. We're looking to fund an improvement to the Find and Replace feature in LiveCode. This would result in preserving formatting in replaced strings. Learn more about it here: http://livecode.com/project/fin