Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-03 Thread Monte Goulding via use-livecode
Hi Sean

I realise it may be too late to recover with your client now but I have 
mergGoogle working with google’s OAuth library GTMAppAuth.

The new lcext file is here: 
https://www.dropbox.com/s/2vuu3jed0dp3wai/mergGoogle.lcext?dl=0
Updated docs are here: https://www.dropbox.com/s/xy62zhetu7yt20r/api.lcdoc?dl=0 


The main difference is you need to add your client id reversed as a custom url 
scheme to your app and if you get the `urlWakeUp` message with a url for that 
scheme then you call `mergGoogleAuthResume` with the url. On iOS 11+ you don’t 
need to do that as it uses SFAuthenticationSession which has a built in 
callback. Happy to chat you through it if that helps.

Hoping you are OK

Monte
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Has Anyone Got A Directory "Walker" Available

2018-05-03 Thread Alex Tweedly via use-livecode
Thanks Ben - that's pretty similar to what I use. Avoiding recursion is 
(almost) always a good idea, if it can be done without jumping through 
hoops; for a file walker I timed it (a couple of years ago) at somewhere 
between 20 and 35% faster.


And it's so much easier to add a good progress indicator callback in the 
non-recursive method.


But I would really urge you to add the safety check that Richard 
recommended against protected-directories - otherwise you'll find 
yourself in an infinite loop.


-- Alex.

P.S. the other addition I have is a couple of parameters for 
"ignore-dot-folders and ignore-dot-files". I rarely want to see, for 
instance, .git folders, so in my library I default to ignoring 
directories beginning with a dot.



On 03/05/2018 20:48, Ben Rubinstein via use-livecode wrote:
FWIW I don't use recursion for directory walking. My typical routine 
(typing directly into email, may contain errors) is something along 
the following lines:


-- assumes tRootFolder is the path to start reviewing
put return into tFoldersToDo
repeat until tFoldersToDo = empty

    -- process another folder
    put line 1 of tFoldersToDo into tSubFolder
    delete line 1 of tFoldersToDo
    set the defaultFolder to (tRootFolder & tSubFolder)

    -- note sub-folders
    repeat for each line f in the folders
    if char 1 of f = "." then next repeat
    put tSubFolder & "/" & f & return after tFoldersToDo
    end repeat

    -- process files
    repeat for each line f in the files
    if char 1 of f = "." then next repeat
    -- do something with f
    -- or store the path, i.e. tSubFolder & "/" & f
    end repeat

end repeat

HTH,

Ben

On 21/04/2018 09:15, Ali Lloyd via use-livecode wrote:
Ah, it will throw an error - so best to use try / catch around the 
function

calls.

On Sat, Apr 21, 2018 at 9:13 AM Ali Lloyd  
wrote:



Now that we have files(pFolder), folder(pFolder) (and files(pFolder,
"detailed"), folders(pFolder, "detailed")), directory walking code 
can be

improved somewhat by not having to set the current folder.

Actually, I haven't checked what happens when you get
files(pRestrictedFolder)


On Fri, Apr 20, 2018 at 7:49 PM Richard Gaskin via use-livecode <
use-livecode@lists.runrev.com> wrote:


You may recall the dreaded recursion errors that have cropped up in
discussions of directory walkers.  They happen not because anyone has
directory trees > 40,000 folders deep, but because a permissions
restriction can prevent going into a subdirectory, causing the current
directory to be traversed again and again until the recursion error is
thrown.

The way to avoid this is to add an error check when setting the
directory, e.g.:

   set the directory to pFolder
   if the result is not empty then
 -- skip or report as needed
   end if


--
   Richard Gaskin
   Fourth World Systems


Sannyasin Brahmanathaswami wrote:

  >  I found this in a toolbox. Sent by some ago, by a LiveCode deva
  >
  > For what it's worth :
  >
  > # Filters the strings "." and ".." from a list
  > function filterDots pList
  >    local tList
  >
  >    put pList into tList
  >    filter tList without "."
  >    filter tList without ".."
  >
  >    return tList
  > end filterDots
  > # Returns a filtered list of files in the current directory
  > function filteredFiles
  >    return filterDots(the files)
  > end filteredFiles
  >
  > # Returns a filtered list of folders in the current directory
  > function filteredFolders
  >    return filterDots(the folders)
  > end filteredFolders
  >
  > # Returns a list of files in the current directory including
  > # each file's full path.
  > function filteredFilesWithPaths
  >    local tFiles, tFilesWithPaths
  >
  >    put filteredFiles() into tFiles
  >    repeat for each line tFile in tFiles
  >   put the directory & slash & tFile & return after \
  > tFilesWithPaths
  >    end repeat
  >    delete the last char of tFilesWithPaths
  >
  >    return tFilesWithPaths
  > end filteredFilesWithPaths
  >
  >
  > # Returns a list of files in a given folder, using recursion to
  > # include files in subfolders if desired.
  > function listFiles pFolder, pRecurse
  >    local tTotalFiles, tCurrentFiles, tFolders
  >
  > set the directory to pFolder
  >    put filteredFiles() into tCurrentFiles
  >    if not pRecurse then return tCurrentFiles
  >    if tCurrentFiles is not empty then
  >   put tCurrentFiles & return after tTotalFiles
  >    end if
  >    put filteredFolders() into tFolders
  >
  > repeat for each line tFolder in tFolders
  >   put listFiles((pFolder & slash & tFolder), pRecurse) into \
  >   tCurrentFiles
  >   if tCurrentFiles is not empty then
  >  put tCurrentFiles & return after tTotalFiles
  >   end if
  >    end repeat
  > delete the last char of tTotalFiles
  >
  >    return tTotalFiles
  > end 

Re: Gofundme posted in the Forums

2018-05-03 Thread Tom Glod via use-livecode
any update on this?...anyone talk to sean?

On Thu, May 3, 2018 at 4:45 PM, Dave Kilroy via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Well done Lagi
>
> Sean hang in there
>
> Kind regards
>
> Dave
>
>
>
> -
> "The first 90% of the task takes 90% of the time, and the last 10% takes
> the other 90% of the time."
> Peter M. Brigham
> --
> Sent from: http://runtime-revolution.278305.n4.nabble.com/
> Revolution-User-f278306.html
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


RE: Gofundme posted in the Forums

2018-05-03 Thread Dave Kilroy via use-livecode
Well done Lagi

Sean hang in there

Kind regards

Dave



-
"The first 90% of the task takes 90% of the time, and the last 10% takes the 
other 90% of the time."
Peter M. Brigham 
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Has Anyone Got A Directory "Walker" Available

2018-05-03 Thread Ben Rubinstein via use-livecode
FWIW I don't use recursion for directory walking. My typical routine (typing 
directly into email, may contain errors) is something along the following lines:


-- assumes tRootFolder is the path to start reviewing
put return into tFoldersToDo
repeat until tFoldersToDo = empty

-- process another folder
put line 1 of tFoldersToDo into tSubFolder
delete line 1 of tFoldersToDo
set the defaultFolder to (tRootFolder & tSubFolder)

-- note sub-folders
repeat for each line f in the folders
if char 1 of f = "." then next repeat
put tSubFolder & "/" & f & return after tFoldersToDo
end repeat

-- process files
repeat for each line f in the files
if char 1 of f = "." then next repeat
-- do something with f
-- or store the path, i.e. tSubFolder & "/" & f
end repeat

end repeat

HTH,

Ben

On 21/04/2018 09:15, Ali Lloyd via use-livecode wrote:

Ah, it will throw an error - so best to use try / catch around the function
calls.

On Sat, Apr 21, 2018 at 9:13 AM Ali Lloyd  wrote:


Now that we have files(pFolder), folder(pFolder) (and files(pFolder,
"detailed"), folders(pFolder, "detailed")), directory walking code can be
improved somewhat by not having to set the current folder.

Actually, I haven't checked what happens when you get
files(pRestrictedFolder)


On Fri, Apr 20, 2018 at 7:49 PM Richard Gaskin via use-livecode <
use-livecode@lists.runrev.com> wrote:


You may recall the dreaded recursion errors that have cropped up in
discussions of directory walkers.  They happen not because anyone has
directory trees > 40,000 folders deep, but because a permissions
restriction can prevent going into a subdirectory, causing the current
directory to be traversed again and again until the recursion error is
thrown.

The way to avoid this is to add an error check when setting the
directory, e.g.:

   set the directory to pFolder
   if the result is not empty then
 -- skip or report as needed
   end if


--
   Richard Gaskin
   Fourth World Systems


Sannyasin Brahmanathaswami wrote:

  >  I found this in a toolbox. Sent by some ago, by a LiveCode deva
  >
  > For what it's worth :
  >
  > # Filters the strings "." and ".." from a list
  > function filterDots pList
  >local tList
  >
  >put pList into tList
  >filter tList without "."
  >filter tList without ".."
  >
  >return tList
  > end filterDots
  > # Returns a filtered list of files in the current directory
  > function filteredFiles
  >return filterDots(the files)
  > end filteredFiles
  >
  > # Returns a filtered list of folders in the current directory
  > function filteredFolders
  >return filterDots(the folders)
  > end filteredFolders
  >
  > # Returns a list of files in the current directory including
  > # each file's full path.
  > function filteredFilesWithPaths
  >local tFiles, tFilesWithPaths
  >
  >put filteredFiles() into tFiles
  >repeat for each line tFile in tFiles
  >   put the directory & slash & tFile & return after \
  > tFilesWithPaths
  >end repeat
  >delete the last char of tFilesWithPaths
  >
  >return tFilesWithPaths
  > end filteredFilesWithPaths
  >
  >
  > # Returns a list of files in a given folder, using recursion to
  > # include files in subfolders if desired.
  > function listFiles pFolder, pRecurse
  >local tTotalFiles, tCurrentFiles, tFolders
  >
  > set the directory to pFolder
  >put filteredFiles() into tCurrentFiles
  >if not pRecurse then return tCurrentFiles
  >if tCurrentFiles is not empty then
  >   put tCurrentFiles & return after tTotalFiles
  >end if
  >put filteredFolders() into tFolders
  >
  > repeat for each line tFolder in tFolders
  >   put listFiles((pFolder & slash & tFolder), pRecurse) into \
  >   tCurrentFiles
  >   if tCurrentFiles is not empty then
  >  put tCurrentFiles & return after tTotalFiles
  >   end if
  >end repeat
  > delete the last char of tTotalFiles
  >
  >return tTotalFiles
  > end listFiles
  >
  > # Returns a list of files with their containing folders, using
  > # recursion
  > # if desired to descend into sub folders.
  > function listFilesWithFolders pFolder, pRecurse
  >local tTotalFiles, tCurrentFiles, tFolders
  >
  > set the directory to pFolder
  >put filteredFiles() into tCurrentFiles
  >if not pRecurse then return pFolder & return & "--" & return \
  >& tCurrentFiles
  >if tCurrentFiles is not empty then
  > put pFolder & return & "--" & return after tTotalFiles
  >   put tCurrentFiles & return & return after tTotalFiles
  >end if
  > put filteredFolders() into tFolders
  >repeat 

RE: Gofundme posted in the Forums

2018-05-03 Thread Ralph DiMola via use-livecode
Lagi, Please be pushy. This is not to be taken lightly. As a community
should and will do all we can. We've all heard about the lack of
intervention and the "If we had only..." 20-20 hindsight. I'm praying for
him and his family.

Sean, If you're listening please don't be embarrassed with all the
brew-ha-ha on this list. It's out of love and all we care about is that your
OK.

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 Lagi Pittas via use-livecode
Sent: Thursday, May 03, 2018 11:34 AM
To: use-revolut...@lists.runrev.com
Cc: Lagi Pittas
Subject: Gofundme posted in the Forums

Please go here and read this in the forums  if you are still on the fence.

I have phoned 6 or 7 times both landline and mobile - no response -  I hope
he is just "thinking".

I make no apologies for being pushy. I don't think Sean was being Flippant.
We cannot know what his state of mind is.

http://forums.livecode.com/viewtopic.php?f=7=30985

Regards Lagi
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Gofundme posted in the Forums

2018-05-03 Thread Lagi Pittas via use-livecode
Please go here and read this in the forums  if you are still on the fence.

I have phoned 6 or 7 times both landline and mobile - no response -  I hope
he is just "thinking".

I make no apologies for being pushy. I don't think Sean was being Flippant.
We cannot know what his state of mind is.

http://forums.livecode.com/viewtopic.php?f=7=30985

Regards Lagi
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Emergency Help?

2018-05-03 Thread Dan Brown via use-livecode
 The emergency services were contacted yesterday to check on his well
being, they don't often report back on such things for privacy reasons.

On Thu, May 3, 2018 at 3:56 PM, prothero--- via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Lags,
> Can you post a link to the go fund me site for Sean, where I can make
> donations? I’m in the US and I get 53 sites when I search on his name. I’d
> like to make a donation.
>
> Bill
>
> William Prothero
> http://earthlearningsolutions.org
>
> > On May 3, 2018, at 6:51 AM, Lagi Pittas via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> >
> > Hi
> >
> > I phoned a couple of times yesterday on gis mobile.
> >
> > Phoned today on his mobile and Landline - both no answer
> >
> > Also emailed him
> >
> > His contact details are here.
> >
> > 34 Victoria Road
> > Chatham, Kent. ME4 5EL
> > t +44 (0) 1634 402193
> > m +44 (0) 7702 116447
> > e s...@pidigital.co.uk
> > r pidigital.co.uk/reels.html
> >
> > I thought about not donation before he accepted but decided no -
> otherwise
> > I'm assuming he's done what we don't want him to do.
> > So I stated the donations anyway - Please Tom can you post where you can
> -
> > I'm hoping SEan is going to come to the list and see they Zyrip and Monte
> > should have a fix real soon
> > and if the client is that much - lets say it there aren't any children on
> > the list "SHIT FOR BRAINS" - look for a client that can appreciate his
> > skill - just look at his accomplishments at  pidigital.co.uk/reels.html
> >
> > Let's get it over a thousand and not wait for him to accept - he has a
> > family!!!
> >
> > Regards Lagi
> >
> >
> > On 3 May 2018 at 14:06, Ralph DiMola via use-livecode <
> > use-livecode@lists.runrev.com> wrote:
> >
> >> Ditto...
> >>
> >> Anyone close enough to go visit him?
> >>
> >> 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 Peter Reid via use-livecode
> >> Sent: Thursday, May 03, 2018 7:22 AM
> >> To: use-livecode@lists.runrev.com
> >> Cc: Peter Reid
> >> Subject: Emergency Help?
> >>
> >> Hi
> >>
> >> What's the news about Sean, has anyone made contact with him and has he
> >> accepted the help?  I'm asking as I'm about to make a donation and I'd
> like
> >> to be sure that this will get through to him before I proceed.
> >>
> >> Thanks
> >>
> >> Peter
> >> --
> >> Peter Reid
> >> Loughborough, UK
> >>
> >>> On 2 May 2018, at 7:37pm, use-livecode-requ...@lists.runrev.com wrote:
> >>>
> >>> Message: 10
> >>> Date: Wed, 2 May 2018 19:14:10 +0100
> >>> From: Lagi Pittas >
> >>> To: How to use LiveCode  >>> >
> >>> Subject: Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY
> >>>  UNHAPPY
> >>> Message-ID:
> >>>   >> gmail.com
> >>>  >>> .com>>
> >>> Content-Type: text/plain; charset="UTF-8"
> >>>
> >>> Hi All
> >>>
> >>> I have set it up - but I want to have the money go directly to Sean
> >>>
> >>> Ive just read that if I put seans email address in it will send him an
> >>> invite so he will be the only one able to withdraw funds.
> >>>
> >>> I am waiting his acceptance but I think we can add to it without him
> >>> accepting -I HAVE NO WAY OF WITHDRAWING MONEY FROM THIS ACCOUNT.
> >>>
> >>>
> >>> https://www.gofundme.com/scemergency
> >>> 
> >>>
> >>
> >> ___
> >> use-livecode mailing list
> >> use-livecode@lists.runrev.com
> >> Please visit this url to subscribe, unsubscribe and manage your
> >> subscription
> >> preferences:
> >> http://lists.runrev.com/mailman/listinfo/use-livecode
> >>
> >>
> >> ___
> >> use-livecode mailing list
> >> use-livecode@lists.runrev.com
> >> Please visit this url to subscribe, unsubscribe and manage your
> >> subscription preferences:
> >> http://lists.runrev.com/mailman/listinfo/use-livecode
> >>
> > ___
> > use-livecode mailing list
> > use-livecode@lists.runrev.com
> > Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> > http://lists.runrev.com/mailman/listinfo/use-livecode
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 

SEAN'S GOFUNDME LINK

2018-05-03 Thread Lagi Pittas via use-livecode
The link is

www.gofundme.com/scemergency

I Didn't want to mention Sean by Name

I will be posting a message in the beginners section of the forum - after
my "prose" has been looked at by Mike.

Just to reiterate only Sean or his family would be able to withdraw money
from here.

Best Lagi
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Emergency Help?

2018-05-03 Thread prothero--- via use-livecode
Lags,
Can you post a link to the go fund me site for Sean, where I can make 
donations? I’m in the US and I get 53 sites when I search on his name. I’d like 
to make a donation.

Bill

William Prothero
http://earthlearningsolutions.org

> On May 3, 2018, at 6:51 AM, Lagi Pittas via use-livecode 
>  wrote:
> 
> Hi
> 
> I phoned a couple of times yesterday on gis mobile.
> 
> Phoned today on his mobile and Landline - both no answer
> 
> Also emailed him
> 
> His contact details are here.
> 
> 34 Victoria Road
> Chatham, Kent. ME4 5EL
> t +44 (0) 1634 402193
> m +44 (0) 7702 116447
> e s...@pidigital.co.uk
> r pidigital.co.uk/reels.html
> 
> I thought about not donation before he accepted but decided no - otherwise
> I'm assuming he's done what we don't want him to do.
> So I stated the donations anyway - Please Tom can you post where you can -
> I'm hoping SEan is going to come to the list and see they Zyrip and Monte
> should have a fix real soon
> and if the client is that much - lets say it there aren't any children on
> the list "SHIT FOR BRAINS" - look for a client that can appreciate his
> skill - just look at his accomplishments at  pidigital.co.uk/reels.html
> 
> Let's get it over a thousand and not wait for him to accept - he has a
> family!!!
> 
> Regards Lagi
> 
> 
> On 3 May 2018 at 14:06, Ralph DiMola via use-livecode <
> use-livecode@lists.runrev.com> wrote:
> 
>> Ditto...
>> 
>> Anyone close enough to go visit him?
>> 
>> 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 Peter Reid via use-livecode
>> Sent: Thursday, May 03, 2018 7:22 AM
>> To: use-livecode@lists.runrev.com
>> Cc: Peter Reid
>> Subject: Emergency Help?
>> 
>> Hi
>> 
>> What's the news about Sean, has anyone made contact with him and has he
>> accepted the help?  I'm asking as I'm about to make a donation and I'd like
>> to be sure that this will get through to him before I proceed.
>> 
>> Thanks
>> 
>> Peter
>> --
>> Peter Reid
>> Loughborough, UK
>> 
>>> On 2 May 2018, at 7:37pm, use-livecode-requ...@lists.runrev.com wrote:
>>> 
>>> Message: 10
>>> Date: Wed, 2 May 2018 19:14:10 +0100
>>> From: Lagi Pittas >
>>> To: How to use LiveCode >> >
>>> Subject: Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY
>>>  UNHAPPY
>>> Message-ID:
>>>  > gmail.com
>>> >> .com>>
>>> Content-Type: text/plain; charset="UTF-8"
>>> 
>>> Hi All
>>> 
>>> I have set it up - but I want to have the money go directly to Sean
>>> 
>>> Ive just read that if I put seans email address in it will send him an
>>> invite so he will be the only one able to withdraw funds.
>>> 
>>> I am waiting his acceptance but I think we can add to it without him
>>> accepting -I HAVE NO WAY OF WITHDRAWING MONEY FROM THIS ACCOUNT.
>>> 
>>> 
>>> https://www.gofundme.com/scemergency
>>> 
>>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your
>> subscription preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
>> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Emergency Help?

2018-05-03 Thread Lagi Pittas via use-livecode
Hi

I phoned a couple of times yesterday on gis mobile.

Phoned today on his mobile and Landline - both no answer

Also emailed him

His contact details are here.

34 Victoria Road
Chatham, Kent. ME4 5EL
t +44 (0) 1634 402193
m +44 (0) 7702 116447
e s...@pidigital.co.uk
r pidigital.co.uk/reels.html

I thought about not donation before he accepted but decided no - otherwise
I'm assuming he's done what we don't want him to do.
So I stated the donations anyway - Please Tom can you post where you can -
I'm hoping SEan is going to come to the list and see they Zyrip and Monte
should have a fix real soon
and if the client is that much - lets say it there aren't any children on
the list "SHIT FOR BRAINS" - look for a client that can appreciate his
skill - just look at his accomplishments at  pidigital.co.uk/reels.html

Let's get it over a thousand and not wait for him to accept - he has a
family!!!

Regards Lagi


On 3 May 2018 at 14:06, Ralph DiMola via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Ditto...
>
> Anyone close enough to go visit him?
>
> 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 Peter Reid via use-livecode
> Sent: Thursday, May 03, 2018 7:22 AM
> To: use-livecode@lists.runrev.com
> Cc: Peter Reid
> Subject: Emergency Help?
>
> Hi
>
> What's the news about Sean, has anyone made contact with him and has he
> accepted the help?  I'm asking as I'm about to make a donation and I'd like
> to be sure that this will get through to him before I proceed.
>
> Thanks
>
> Peter
> --
> Peter Reid
> Loughborough, UK
>
> > On 2 May 2018, at 7:37pm, use-livecode-requ...@lists.runrev.com wrote:
> >
> > Message: 10
> > Date: Wed, 2 May 2018 19:14:10 +0100
> > From: Lagi Pittas >
> > To: How to use LiveCode  > >
> > Subject: Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY
> >   UNHAPPY
> > Message-ID:
> >    gmail.com
> >  > .com>>
> > Content-Type: text/plain; charset="UTF-8"
> >
> > Hi All
> >
> > I have set it up - but I want to have the money go directly to Sean
> >
> > Ive just read that if I put seans email address in it will send him an
> > invite so he will be the only one able to withdraw funds.
> >
> > I am waiting his acceptance but I think we can add to it without him
> > accepting -I HAVE NO WAY OF WITHDRAWING MONEY FROM THIS ACCOUNT.
> >
> >
> > https://www.gofundme.com/scemergency
> > 
> >
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
>
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
>
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


RE: Emergency Help?

2018-05-03 Thread Ralph DiMola via use-livecode
Ditto...

Anyone close enough to go visit him?

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 Peter Reid via use-livecode
Sent: Thursday, May 03, 2018 7:22 AM
To: use-livecode@lists.runrev.com
Cc: Peter Reid
Subject: Emergency Help?

Hi

What's the news about Sean, has anyone made contact with him and has he
accepted the help?  I'm asking as I'm about to make a donation and I'd like
to be sure that this will get through to him before I proceed.

Thanks

Peter
--
Peter Reid
Loughborough, UK

> On 2 May 2018, at 7:37pm, use-livecode-requ...@lists.runrev.com wrote:
> 
> Message: 10
> Date: Wed, 2 May 2018 19:14:10 +0100
> From: Lagi Pittas >
> To: How to use LiveCode  >
> Subject: Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY
>   UNHAPPY
> Message-ID:
>     .com>>
> Content-Type: text/plain; charset="UTF-8"
> 
> Hi All
> 
> I have set it up - but I want to have the money go directly to Sean
> 
> Ive just read that if I put seans email address in it will send him an 
> invite so he will be the only one able to withdraw funds.
> 
> I am waiting his acceptance but I think we can add to it without him 
> accepting -I HAVE NO WAY OF WITHDRAWING MONEY FROM THIS ACCOUNT.
> 
> 
> https://www.gofundme.com/scemergency 
> 
> 

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Emergency Help?

2018-05-03 Thread Graham Samuel via use-livecode
And me.

Graham

Sent from my iPhone

> On 3 May 2018, at 12:44, David V Glasgow via use-livecode 
>  wrote:
> 
> Me too…
> 
> David Glasgow
> 
>> On 3 May 2018, at 12:22 pm, Peter Reid via use-livecode 
>>  wrote:
>> 
>> Hi
>> 
>> What's the news about Sean, has anyone made contact with him and has he 
>> accepted the help?  I'm asking as I'm about to make a donation and I'd like 
>> to be sure that this will get through to him before I proceed.
>> 
>> Thanks
>> 
>> Peter
>> --
>> Peter Reid
>> Loughborough, UK
>> 
>>> On 2 May 2018, at 7:37pm, use-livecode-requ...@lists.runrev.com wrote:
>>> 
>>> Message: 10
>>> Date: Wed, 2 May 2018 19:14:10 +0100
>>> From: Lagi Pittas >
>>> To: How to use LiveCode >> >
>>> Subject: Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY
>>>UNHAPPY
>>> Message-ID:
>>>>> >
>>> Content-Type: text/plain; charset="UTF-8"
>>> 
>>> Hi All
>>> 
>>> I have set it up - but I want to have the money go directly to Sean
>>> 
>>> Ive just read that if I put seans email address in it will send him an
>>> invite so he will be the only one able to withdraw funds.
>>> 
>>> I am waiting his acceptance but I think we can add to it without him
>>> accepting -I HAVE NO WAY OF WITHDRAWING MONEY FROM THIS ACCOUNT.
>>> 
>>> 
>>> https://www.gofundme.com/scemergency 
>>> 
>> 
>> ___
>> use-livecode mailing list
>> use-livecode@lists.runrev.com
>> Please visit this url to subscribe, unsubscribe and manage your subscription 
>> preferences:
>> http://lists.runrev.com/mailman/listinfo/use-livecode
> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Emergency Help?

2018-05-03 Thread David V Glasgow via use-livecode
Me too…

David Glasgow

> On 3 May 2018, at 12:22 pm, Peter Reid via use-livecode 
>  wrote:
> 
> Hi
> 
> What's the news about Sean, has anyone made contact with him and has he 
> accepted the help?  I'm asking as I'm about to make a donation and I'd like 
> to be sure that this will get through to him before I proceed.
> 
> Thanks
> 
> Peter
> --
> Peter Reid
> Loughborough, UK
> 
>> On 2 May 2018, at 7:37pm, use-livecode-requ...@lists.runrev.com wrote:
>> 
>> Message: 10
>> Date: Wed, 2 May 2018 19:14:10 +0100
>> From: Lagi Pittas >
>> To: How to use LiveCode > >
>> Subject: Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY
>>  UNHAPPY
>> Message-ID:
>>  > >
>> Content-Type: text/plain; charset="UTF-8"
>> 
>> Hi All
>> 
>> I have set it up - but I want to have the money go directly to Sean
>> 
>> Ive just read that if I put seans email address in it will send him an
>> invite so he will be the only one able to withdraw funds.
>> 
>> I am waiting his acceptance but I think we can add to it without him
>> accepting -I HAVE NO WAY OF WITHDRAWING MONEY FROM THIS ACCOUNT.
>> 
>> 
>> https://www.gofundme.com/scemergency 
>> 
> 
> ___
> use-livecode mailing list
> use-livecode@lists.runrev.com
> Please visit this url to subscribe, unsubscribe and manage your subscription 
> preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

Emergency Help?

2018-05-03 Thread Peter Reid via use-livecode
Hi

What's the news about Sean, has anyone made contact with him and has he 
accepted the help?  I'm asking as I'm about to make a donation and I'd like to 
be sure that this will get through to him before I proceed.

Thanks

Peter
--
Peter Reid
Loughborough, UK

> On 2 May 2018, at 7:37pm, use-livecode-requ...@lists.runrev.com wrote:
> 
> Message: 10
> Date: Wed, 2 May 2018 19:14:10 +0100
> From: Lagi Pittas >
> To: How to use LiveCode  >
> Subject: Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY
>   UNHAPPY
> Message-ID:
>    >
> Content-Type: text/plain; charset="UTF-8"
> 
> Hi All
> 
> I have set it up - but I want to have the money go directly to Sean
> 
> Ive just read that if I put seans email address in it will send him an
> invite so he will be the only one able to withdraw funds.
> 
> I am waiting his acceptance but I think we can add to it without him
> accepting -I HAVE NO WAY OF WITHDRAWING MONEY FROM THIS ACCOUNT.
> 
> 
> https://www.gofundme.com/scemergency 
> 

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LC on Windows - slow for others or just me?

2018-05-03 Thread AndyP via use-livecode
Must agree that 9 series is slower on Windows 10 than previous versions.

Win 10 pro 64 bit

Observations

1. Instances of Livecode do not always shut down correctly and have to be
closed via the Task Manager.Failure to notice this can cause IDE hangs,
crashes and corrupted scripts when saving.

2. Having the message box open slows the IDE and closing the message box
does not revert Livecode to its previous speed.

3. Having the  Project Browser open slows the IDE and closing the Project
Browser  does not revert Livecode to its previous speed.

4. The Project Browser does not keep in sync with all changes made to
stacks. For example when grouping components the Project  Browser will not
always show the new group but still display the components as separate
entities. Closing and restarting the Project Browser will show the groping
change.



-
Andy Piddock 


My software never has bugs. It just develops random features. 

TinyIDE  a Free alternative minimalist IDE Plugin for LiveCode 


Script editor Themer for LC http://2108.co.uk  

PointandSee is a FREE simple but full featured under cursor colour picker / 
finder.
http://www.pointandsee.co.uk  - made with LiveCode
--
Sent from: 
http://runtime-revolution.278305.n4.nabble.com/Revolution-User-f278306.html

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode