Re: script for redo/undo text?

2019-07-10 Thread Nicolas Cueto via use-livecode
Thank you everyone for the various options/suggestions.

--
N.C.

On Wed, 10 Jul 2019 at 07:24, Mark Wieder via use-livecode <
use-livecode@lists.runrev.com> wrote:

> 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 significantly sized application"
> >
> > And yet I ask...
> >
> > Would someone care to volunteer a redo/undo script that works on text in
> a
> > text-field object? ... especially a script that provides (almost) full
> undo
> > history?
>
> The Undo section of my refactor plugin is almost completely
> self-contained, so you should be able to extract those handlers (look
> for the "--> Undo handlers" tag near line 2750) and use them with any
> field. Since they're designed to work with the Script Editor, I think
> the only changes you need to make would be to create your own
> scriptFromEditor() function to grab the field text and your own
> CurrentObject() handler to return the long id of the field.
>
> At any rate, this should get you started. And I'm compressing the text
> before storing it in an array, but as Sean points out, this could get
> out of hand.
>
> <
> https://github.com/mwieder/revRefactor/blob/master/stack_revRefactor_.livecodescript
> >
>
> --
>   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:
> 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


can't do Find/Search on LC UI stacks (bug?) [was "script for redo/undo text?"]

2019-07-10 Thread Nicolas Cueto via use-livecode
"Find and Replace" is warning me that "... To search a LiveCode UI stack
you must first select 'Show IDE Stacks in Lists' from the View menu."  But,
I did select "Show IDE Stacks" in "View"!

Something I've overlooked or a bug?

The reason I want to search LC UI stacks? To understand Mark Wieder's
stack/suggestion on how to do "undo/redo" (thank you, Mark!), it seems I
have to dig there for functions and such.

Thank you.

--
Nicolas Cueto
___
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


can't do Find/Search on LC UI stacks (bug?)

2019-07-10 Thread Nicolas Cueto via use-livecode
Even though "View > "Show IDE Stacks in Lists" is checked, am still getting
a "
___
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: script for redo/undo text?

2019-07-10 Thread David Epstein via use-livecode
I cannot help with the project of "unlimited" undo/redo, but a simple one-layer 
undo for fields is not hard to implement.  

Sean Cole's suggestion that we should record the field state whenever a key is 
pressed I think does more than is wanted; if you type 10 characters, you don't 
want to choose Undo 10 times to get rid of them.  

My approach is to record the field state on keypresses ONLY if there is a text 
selection (about to be lost when the key is pressed) rather than an insertion 
point.  If text has been added but no text has been lost, you don’t need an 
Undo command to remove what was added.  If you also record the field's state 
before anything is typed in it, and before the Undo command itself is executed, 
and before any scripted handlers change the field, I think this will resemble 
ordinary Word Processor behavior.

on keyDown
  if the selectedText is not empty then uStoreFieldState the short id of the 
selectedField
  pass keyDown
end keyDown
-- and a similar handler for the other keys Sean mentions, although I don't 
think for arrow keys.  

on uStoreFieldState fID -- fID is the short id of the field
  global u
  put the selectedChunk into myChunk
  put fID into u["fieldModified"]
  put the htmlText of fld id fID into u[fID]
  put word 2 of myChunk into u["chunkA"]
  put word 4 of myChunk into u["chunkB"]
end uStoreFieldState

Then on undo, you read the values of u to revise the field, and reload u with 
the state of the field just before undoing.  I store the chunk information so 
that undo can restore the selection as well as the text to its prior state.

David Epstein
___
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: iOS In-App Purchase Refunds

2019-07-10 Thread Ralph DiMola via use-livecode
Seems to be the only way to test. I also read that you can only get so many 
refunds until you get flagged by Apple.

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: Wednesday, July 10, 2019 5:10 PM
To: How to use LiveCode
Cc: Lagi Pittas
Subject: Re: iOS In-App Purchase Refunds

Why not  you or a family member purchase and then refund?

Lagi

On Wed, 10 Jul 2019 at 21:44, Ralph DiMola via use-livecode < 
use-livecode@lists.runrev.com> wrote:

> Update: After doing some searches it seems that canceling in-app 
> purchases in the Apple sandbox is a hole in sandbox testing that has 
> been there for awhile. I will keep looking and see if that hole has been 
> plugged.
>
> In the meantime I will code up the proposed solution.  And wait...
>
> 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: Wednesday, July 10, 2019 2:13 PM
> To: How to use LiveCode
> Cc: Lagi Pittas
> Subject: Re: iOS In-App Purchase Refunds
>
> Hi Ralph,
>
> I believe the record stays there but the status changes - so you need 
> to check for any status changes
>
> Lagi
>
> On Wed, 10 Jul 2019 at 18:45, Ralph DiMola via use-livecode < 
> use-livecode@lists.runrev.com> wrote:
>
> > True, but there must be a way of the app getting the most recent 
> > receipt and decoding it to see if the purchase was canceled.
> >
> > 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 J. Landman Gay via use-livecode
> > Sent: Wednesday, July 10, 2019 1:04 PM
> > To: How to use LiveCode
> > Cc: J. Landman Gay
> > Subject: RE: iOS In-App Purchase Refunds
> >
> > I've heard that Apple never reveals customer identities for any reason.
> >
> > --
> > Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive 
> > Software
> > | http://www.hyperactivesw.com On July 10, 2019 11:20:50 AM Ralph
> > DiMola via use-livecode  wrote:
> >
> > > Yes the Apple reports(and deposits) show this BUT... those reports 
> > > don’t tell you who received the refund.
> > > Since 2012 or so we are about $500.00 short. Some of this could be 
> > > FX rates and possible an App bugs but we had a rude user last 
> > > month that demanded a refund and then hung up on customer service 
> > > but is still using the app(backend server metrics). There is a 
> > > cancelation on this month's Apple report but we can't pin it to 
> > > him. This app has in-app products that range from $60.00 to 
> > > $250.00 so this is becoming a real
> > issue.
> > >
> > > 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 Rick Harrison via use-livecode
> > > Sent: Wednesday, July 10, 2019 12:09 PM
> > > To: How to use LiveCode
> > > Cc: Rick Harrison
> > > Subject: Re: iOS In-App Purchase Refunds
> > >
> > > Hi Ralph,
> > >
> > > Has this ever happened to you before?  If so, shouldn’t the 
> > > transaction show up in your financial report from Apple?
> > >
> > > I’ll be very interested to know if you are able to come up with a 
> > > solution for this one.
> > >
> > > Good luck!
> > >
> > > Rick
> > >
> > >> On Jul 10, 2019, at 11:45 AM, Ralph DiMola via use-livecode 
> > >>  wrote:
> > >>
> > >> Does anyone know how to detect when a user that made a valid 
> > >> in-app purchase and then subsequently asked for and received a 
> > >> refund from
> > Apple?
> > >> This is a in-app purchase for a subscription to intellectual 
> > >> property so I need a way to know this so I can cut the user off. 
> > >> I have all the backend server code to do this I just need to know 
> > >> if the user received a refund from Apple.
> > >>
> > >> Any ideas?
> > >> Thanks!
> > >>
> > >>
> > >> Ralph DiMola
> > >> IT Director
> > >> Evergreen Information Services
> > >> rdim...@evergreeninfo.net
> > >>
> > >>
> > >> ___
> > >> 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: iOS In-App Purchase Refunds

2019-07-10 Thread Lagi Pittas via use-livecode
Why not  you or a family member purchase and then refund?

Lagi

On Wed, 10 Jul 2019 at 21:44, Ralph DiMola via use-livecode <
use-livecode@lists.runrev.com> wrote:

> Update: After doing some searches it seems that canceling in-app purchases
> in the Apple sandbox is a hole in sandbox testing that has been there for
> awhile. I will keep looking and see if that hole has been plugged.
>
> In the meantime I will code up the proposed solution.  And wait...
>
> 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: Wednesday, July 10, 2019 2:13 PM
> To: How to use LiveCode
> Cc: Lagi Pittas
> Subject: Re: iOS In-App Purchase Refunds
>
> Hi Ralph,
>
> I believe the record stays there but the status changes - so you need to
> check for any status changes
>
> Lagi
>
> On Wed, 10 Jul 2019 at 18:45, Ralph DiMola via use-livecode <
> use-livecode@lists.runrev.com> wrote:
>
> > True, but there must be a way of the app getting the most recent
> > receipt and decoding it to see if the purchase was canceled.
> >
> > 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 J. Landman Gay via use-livecode
> > Sent: Wednesday, July 10, 2019 1:04 PM
> > To: How to use LiveCode
> > Cc: J. Landman Gay
> > Subject: RE: iOS In-App Purchase Refunds
> >
> > I've heard that Apple never reveals customer identities for any reason.
> >
> > --
> > Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software
> > | http://www.hyperactivesw.com On July 10, 2019 11:20:50 AM Ralph
> > DiMola via use-livecode  wrote:
> >
> > > Yes the Apple reports(and deposits) show this BUT... those reports
> > > don’t tell you who received the refund.
> > > Since 2012 or so we are about $500.00 short. Some of this could be
> > > FX rates and possible an App bugs but we had a rude user last month
> > > that demanded a refund and then hung up on customer service but is
> > > still using the app(backend server metrics). There is a cancelation
> > > on this month's Apple report but we can't pin it to him. This app
> > > has in-app products that range from $60.00 to $250.00 so this is
> > > becoming a real
> > issue.
> > >
> > > 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 Rick Harrison via use-livecode
> > > Sent: Wednesday, July 10, 2019 12:09 PM
> > > To: How to use LiveCode
> > > Cc: Rick Harrison
> > > Subject: Re: iOS In-App Purchase Refunds
> > >
> > > Hi Ralph,
> > >
> > > Has this ever happened to you before?  If so, shouldn’t the
> > > transaction show up in your financial report from Apple?
> > >
> > > I’ll be very interested to know if you are able to come up with a
> > > solution for this one.
> > >
> > > Good luck!
> > >
> > > Rick
> > >
> > >> On Jul 10, 2019, at 11:45 AM, Ralph DiMola via use-livecode
> > >>  wrote:
> > >>
> > >> Does anyone know how to detect when a user that made a valid in-app
> > >> purchase and then subsequently asked for and received a refund from
> > Apple?
> > >> This is a in-app purchase for a subscription to intellectual
> > >> property so I need a way to know this so I can cut the user off. I
> > >> have all the backend server code to do this I just need to know if
> > >> the user received a refund from Apple.
> > >>
> > >> Any ideas?
> > >> Thanks!
> > >>
> > >>
> > >> Ralph DiMola
> > >> IT Director
> > >> Evergreen Information Services
> > >> rdim...@evergreeninfo.net
> > >>
> > >>
> > >> ___
> > >> 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:

RE: iOS In-App Purchase Refunds

2019-07-10 Thread Ralph DiMola via use-livecode
Update: After doing some searches it seems that canceling in-app purchases in 
the Apple sandbox is a hole in sandbox testing that has been there for awhile. 
I will keep looking and see if that hole has been plugged.

In the meantime I will code up the proposed solution.  And wait...

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: Wednesday, July 10, 2019 2:13 PM
To: How to use LiveCode
Cc: Lagi Pittas
Subject: Re: iOS In-App Purchase Refunds

Hi Ralph,

I believe the record stays there but the status changes - so you need to check 
for any status changes

Lagi

On Wed, 10 Jul 2019 at 18:45, Ralph DiMola via use-livecode < 
use-livecode@lists.runrev.com> wrote:

> True, but there must be a way of the app getting the most recent 
> receipt and decoding it to see if the purchase was canceled.
>
> 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 J. Landman Gay via use-livecode
> Sent: Wednesday, July 10, 2019 1:04 PM
> To: How to use LiveCode
> Cc: J. Landman Gay
> Subject: RE: iOS In-App Purchase Refunds
>
> I've heard that Apple never reveals customer identities for any reason.
>
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software 
> | http://www.hyperactivesw.com On July 10, 2019 11:20:50 AM Ralph 
> DiMola via use-livecode  wrote:
>
> > Yes the Apple reports(and deposits) show this BUT... those reports 
> > don’t tell you who received the refund.
> > Since 2012 or so we are about $500.00 short. Some of this could be 
> > FX rates and possible an App bugs but we had a rude user last month 
> > that demanded a refund and then hung up on customer service but is 
> > still using the app(backend server metrics). There is a cancelation 
> > on this month's Apple report but we can't pin it to him. This app 
> > has in-app products that range from $60.00 to $250.00 so this is 
> > becoming a real
> issue.
> >
> > 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 Rick Harrison via use-livecode
> > Sent: Wednesday, July 10, 2019 12:09 PM
> > To: How to use LiveCode
> > Cc: Rick Harrison
> > Subject: Re: iOS In-App Purchase Refunds
> >
> > Hi Ralph,
> >
> > Has this ever happened to you before?  If so, shouldn’t the 
> > transaction show up in your financial report from Apple?
> >
> > I’ll be very interested to know if you are able to come up with a 
> > solution for this one.
> >
> > Good luck!
> >
> > Rick
> >
> >> On Jul 10, 2019, at 11:45 AM, Ralph DiMola via use-livecode 
> >>  wrote:
> >>
> >> Does anyone know how to detect when a user that made a valid in-app 
> >> purchase and then subsequently asked for and received a refund from
> Apple?
> >> This is a in-app purchase for a subscription to intellectual 
> >> property so I need a way to know this so I can cut the user off. I 
> >> have all the backend server code to do this I just need to know if 
> >> the user received a refund from Apple.
> >>
> >> Any ideas?
> >> Thanks!
> >>
> >>
> >> Ralph DiMola
> >> IT Director
> >> Evergreen Information Services
> >> rdim...@evergreeninfo.net
> >>
> >>
> >> ___
> >> 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 
> subscription preferences:
> http://lists.runrev.com/mailman/listinfo/use-livecode
___
use-livecode mailing list
use-livecode@lists.r

Re: math on widths doesn't add up (Sean Cole (Pi))

2019-07-10 Thread Quentin Long via use-livecode
sez Sean Cole (Pi):>I've just been teaching my youngest about the 4th - nth 
dimensions. Time is
>not the 4th but the 1st temporal dimension. If the 3 spatial dimensions are
>Length, height and width then the 4th is depth, ie, going inwards and
>outwards as the easiest way to picture it (but not truly representative).
>That being the case, how would you describe the 5th spacial dimension.
>That'll twist your noggin if it's not something you've thought of before :)
One fictional contemplation of the 4th and 5th 
dimensions:https://johnesimpson.com/pdf/Ifth_of_oofth-waltertevis.pdf
___
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: iOS In-App Purchase Refunds

2019-07-10 Thread Ralph DiMola via use-livecode
I think this will work(how I test is another matter)

1) App starts
2) need purchase? Then do iap purchase as I do now.
3) already purchased? Then... THIS WILL BE NEW
 a) enable " purchaseStateUpdate" messages via mobileEnablePurchaseUpdates
 b) wait 1 second or so and see if any messages come through. If message is 
received then see if it is a "cancel" if so then disable subscription.


This assumes that if the user gets a refund from Apple then on next app launch 
with mobileEnablePurchaseUpdates enabled a "cancel" message is sent via the 
"purchaseStateUpdate" message.

How to test???

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: Wednesday, July 10, 2019 2:13 PM
To: How to use LiveCode
Cc: Lagi Pittas
Subject: Re: iOS In-App Purchase Refunds

Hi Ralph,

I believe the record stays there but the status changes - so you need to check 
for any status changes

Lagi

On Wed, 10 Jul 2019 at 18:45, Ralph DiMola via use-livecode < 
use-livecode@lists.runrev.com> wrote:

> True, but there must be a way of the app getting the most recent 
> receipt and decoding it to see if the purchase was canceled.
>
> 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 J. Landman Gay via use-livecode
> Sent: Wednesday, July 10, 2019 1:04 PM
> To: How to use LiveCode
> Cc: J. Landman Gay
> Subject: RE: iOS In-App Purchase Refunds
>
> I've heard that Apple never reveals customer identities for any reason.
>
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software 
> | http://www.hyperactivesw.com On July 10, 2019 11:20:50 AM Ralph 
> DiMola via use-livecode  wrote:
>
> > Yes the Apple reports(and deposits) show this BUT... those reports 
> > don’t tell you who received the refund.
> > Since 2012 or so we are about $500.00 short. Some of this could be 
> > FX rates and possible an App bugs but we had a rude user last month 
> > that demanded a refund and then hung up on customer service but is 
> > still using the app(backend server metrics). There is a cancelation 
> > on this month's Apple report but we can't pin it to him. This app 
> > has in-app products that range from $60.00 to $250.00 so this is 
> > becoming a real
> issue.
> >
> > 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 Rick Harrison via use-livecode
> > Sent: Wednesday, July 10, 2019 12:09 PM
> > To: How to use LiveCode
> > Cc: Rick Harrison
> > Subject: Re: iOS In-App Purchase Refunds
> >
> > Hi Ralph,
> >
> > Has this ever happened to you before?  If so, shouldn’t the 
> > transaction show up in your financial report from Apple?
> >
> > I’ll be very interested to know if you are able to come up with a 
> > solution for this one.
> >
> > Good luck!
> >
> > Rick
> >
> >> On Jul 10, 2019, at 11:45 AM, Ralph DiMola via use-livecode 
> >>  wrote:
> >>
> >> Does anyone know how to detect when a user that made a valid in-app 
> >> purchase and then subsequently asked for and received a refund from
> Apple?
> >> This is a in-app purchase for a subscription to intellectual 
> >> property so I need a way to know this so I can cut the user off. I 
> >> have all the backend server code to do this I just need to know if 
> >> the user received a refund from Apple.
> >>
> >> Any ideas?
> >> Thanks!
> >>
> >>
> >> Ralph DiMola
> >> IT Director
> >> Evergreen Information Services
> >> rdim...@evergreeninfo.net
> >>
> >>
> >> ___
> >> 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: iOS In-App Purchase Refunds

2019-07-10 Thread Lagi Pittas via use-livecode
Hi Ralph,

I believe the record stays there but the status changes - so you need to
check for any status changes

Lagi

On Wed, 10 Jul 2019 at 18:45, Ralph DiMola via use-livecode <
use-livecode@lists.runrev.com> wrote:

> True, but there must be a way of the app getting the most recent receipt
> and decoding it to see if the purchase was canceled.
>
> 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 J. Landman Gay via use-livecode
> Sent: Wednesday, July 10, 2019 1:04 PM
> To: How to use LiveCode
> Cc: J. Landman Gay
> Subject: RE: iOS In-App Purchase Refunds
>
> I've heard that Apple never reveals customer identities for any reason.
>
> --
> Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |
> http://www.hyperactivesw.com On July 10, 2019 11:20:50 AM Ralph DiMola
> via use-livecode  wrote:
>
> > Yes the Apple reports(and deposits) show this BUT... those reports
> > don’t tell you who received the refund.
> > Since 2012 or so we are about $500.00 short. Some of this could be FX
> > rates and possible an App bugs but we had a rude user last month that
> > demanded a refund and then hung up on customer service but is still
> > using the app(backend server metrics). There is a cancelation on this
> > month's Apple report but we can't pin it to him. This app has in-app
> > products that range from $60.00 to $250.00 so this is becoming a real
> issue.
> >
> > 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 Rick Harrison via use-livecode
> > Sent: Wednesday, July 10, 2019 12:09 PM
> > To: How to use LiveCode
> > Cc: Rick Harrison
> > Subject: Re: iOS In-App Purchase Refunds
> >
> > Hi Ralph,
> >
> > Has this ever happened to you before?  If so, shouldn’t the
> > transaction show up in your financial report from Apple?
> >
> > I’ll be very interested to know if you are able to come up with a
> > solution for this one.
> >
> > Good luck!
> >
> > Rick
> >
> >> On Jul 10, 2019, at 11:45 AM, Ralph DiMola via use-livecode
> >>  wrote:
> >>
> >> Does anyone know how to detect when a user that made a valid in-app
> >> purchase and then subsequently asked for and received a refund from
> Apple?
> >> This is a in-app purchase for a subscription to intellectual property
> >> so I need a way to know this so I can cut the user off. I have all
> >> the backend server code to do this I just need to know if the user
> >> received a refund from Apple.
> >>
> >> Any ideas?
> >> Thanks!
> >>
> >>
> >> Ralph DiMola
> >> IT Director
> >> Evergreen Information Services
> >> rdim...@evergreeninfo.net
> >>
> >>
> >> ___
> >> 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
> 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: iOS In-App Purchase Refunds

2019-07-10 Thread Ralph DiMola via use-livecode
True, but there must be a way of the app getting the most recent receipt and 
decoding it to see if the purchase was canceled.

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 
J. Landman Gay via use-livecode
Sent: Wednesday, July 10, 2019 1:04 PM
To: How to use LiveCode
Cc: J. Landman Gay
Subject: RE: iOS In-App Purchase Refunds

I've heard that Apple never reveals customer identities for any reason.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | 
http://www.hyperactivesw.com On July 10, 2019 11:20:50 AM Ralph DiMola via 
use-livecode  wrote:

> Yes the Apple reports(and deposits) show this BUT... those reports 
> don’t tell you who received the refund.
> Since 2012 or so we are about $500.00 short. Some of this could be FX 
> rates and possible an App bugs but we had a rude user last month that 
> demanded a refund and then hung up on customer service but is still 
> using the app(backend server metrics). There is a cancelation on this 
> month's Apple report but we can't pin it to him. This app has in-app 
> products that range from $60.00 to $250.00 so this is becoming a real issue.
>
> 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 Rick Harrison via use-livecode
> Sent: Wednesday, July 10, 2019 12:09 PM
> To: How to use LiveCode
> Cc: Rick Harrison
> Subject: Re: iOS In-App Purchase Refunds
>
> Hi Ralph,
>
> Has this ever happened to you before?  If so, shouldn’t the 
> transaction show up in your financial report from Apple?
>
> I’ll be very interested to know if you are able to come up with a 
> solution for this one.
>
> Good luck!
>
> Rick
>
>> On Jul 10, 2019, at 11:45 AM, Ralph DiMola via use-livecode 
>>  wrote:
>>
>> Does anyone know how to detect when a user that made a valid in-app 
>> purchase and then subsequently asked for and received a refund from Apple?
>> This is a in-app purchase for a subscription to intellectual property 
>> so I need a way to know this so I can cut the user off. I have all 
>> the backend server code to do this I just need to know if the user 
>> received a refund from Apple.
>>
>> Any ideas?
>> Thanks!
>>
>>
>> Ralph DiMola
>> IT Director
>> Evergreen Information Services
>> rdim...@evergreeninfo.net
>>
>>
>> ___
>> 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 subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode

RE: iOS In-App Purchase Refunds

2019-07-10 Thread J. Landman Gay via use-livecode

I've heard that Apple never reveals customer identities for any reason.

--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software | http://www.hyperactivesw.com
On July 10, 2019 11:20:50 AM Ralph DiMola via use-livecode 
 wrote:


Yes the Apple reports(and deposits) show this BUT... those reports don’t 
tell you who received the refund.
Since 2012 or so we are about $500.00 short. Some of this could be FX rates 
and possible an App bugs but we had a rude user last month that demanded a 
refund and then hung up on customer service but is still using the 
app(backend server metrics). There is a cancelation on this month's Apple 
report but we can't pin it to him. This app has in-app products that range 
from $60.00 to $250.00 so this is becoming a real issue.


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 Rick Harrison via use-livecode

Sent: Wednesday, July 10, 2019 12:09 PM
To: How to use LiveCode
Cc: Rick Harrison
Subject: Re: iOS In-App Purchase Refunds

Hi Ralph,

Has this ever happened to you before?  If so, shouldn’t the transaction 
show up in your financial report from Apple?


I’ll be very interested to know if you are able to come up with a solution 
for this one.


Good luck!

Rick

On Jul 10, 2019, at 11:45 AM, Ralph DiMola via use-livecode 
 wrote:


Does anyone know how to detect when a user that made a valid in-app
purchase and then subsequently asked for and received a refund from Apple?
This is a in-app purchase for a subscription to intellectual property
so I need a way to know this so I can cut the user off. I have all the
backend server code to do this I just need to know if the user
received a refund from Apple.

Any ideas?
Thanks!


Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


___
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: iOS In-App Purchase Refunds

2019-07-10 Thread Ralph DiMola via use-livecode
Yes the Apple reports(and deposits) show this BUT... those reports don’t tell 
you who received the refund.
Since 2012 or so we are about $500.00 short. Some of this could be FX rates and 
possible an App bugs but we had a rude user last month that demanded a refund 
and then hung up on customer service but is still using the app(backend server 
metrics). There is a cancelation on this month's Apple report but we can't pin 
it to him. This app has in-app products that range from $60.00 to $250.00 so 
this is becoming a real issue.

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 
Rick Harrison via use-livecode
Sent: Wednesday, July 10, 2019 12:09 PM
To: How to use LiveCode
Cc: Rick Harrison
Subject: Re: iOS In-App Purchase Refunds

Hi Ralph,

Has this ever happened to you before?  If so, shouldn’t the transaction show up 
in your financial report from Apple?

I’ll be very interested to know if you are able to come up with a solution for 
this one.

Good luck!

Rick 

> On Jul 10, 2019, at 11:45 AM, Ralph DiMola via use-livecode 
>  wrote:
> 
> Does anyone know how to detect when a user that made a valid in-app 
> purchase and then subsequently asked for and received a refund from Apple?
> This is a in-app purchase for a subscription to intellectual property 
> so I need a way to know this so I can cut the user off. I have all the 
> backend server code to do this I just need to know if the user 
> received a refund from Apple.
> 
> Any ideas?
> Thanks!
> 
> 
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
> 
> 
> ___
> 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: iOS In-App Purchase Refunds

2019-07-10 Thread Rick Harrison via use-livecode
Hi Ralph,

Has this ever happened to you before?  If so, shouldn’t the
transaction show up in your financial report from Apple?

I’ll be very interested to know if you are able to come up
with a solution for this one.

Good luck!

Rick 

> On Jul 10, 2019, at 11:45 AM, Ralph DiMola via use-livecode 
>  wrote:
> 
> Does anyone know how to detect when a user that made a valid in-app purchase
> and then subsequently asked for and received a refund from Apple? 
> This is a in-app purchase for a subscription to intellectual property so I
> need a way to know this so I can cut the user off. I have all the backend
> server code to do this I just need to know if the user received a refund
> from Apple.
> 
> Any ideas?
> Thanks!
> 
> 
> Ralph DiMola
> IT Director
> Evergreen Information Services
> rdim...@evergreeninfo.net
> 
> 
> ___
> 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

iOS In-App Purchase Refunds

2019-07-10 Thread Ralph DiMola via use-livecode
Does anyone know how to detect when a user that made a valid in-app purchase
and then subsequently asked for and received a refund from Apple? 
This is a in-app purchase for a subscription to intellectual property so I
need a way to know this so I can cut the user off. I have all the backend
server code to do this I just need to know if the user received a refund
from Apple.

Any ideas?
Thanks!


Ralph DiMola
IT Director
Evergreen Information Services
rdim...@evergreeninfo.net


___
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