AW: AW: can I lock screen over more than one handler?

2017-07-06 Thread Tiemo Hollmann TB via use-livecode
ev.com] Im Auftrag von Jonathan Lynch via use-livecode Gesendet: Donnerstag, 6. Juli 2017 12:52 An: How to use LiveCode Cc: jonathandly...@gmail.com Betreff: Re: AW: can I lock screen over more than one handler? Tiemo, have you tried using a browser widget instead? Sent from my iPhone > On Ju

Re: AW: can I lock screen over more than one handler?

2017-07-06 Thread Jonathan Lynch via use-livecode
- >> Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag >> von Tiemo Hollmann TB via use-livecode >> Gesendet: Mittwoch, 5. Juli 2017 18:46 >> An: 'How to use LiveCode' >> Cc: Tiemo Hollmann TB >> Betreff: AW: can I lock

Re: AW: can I lock screen over more than one handler?

2017-07-06 Thread Richmond Mathewson via use-livecode
n Tiemo Hollmann TB via use-livecode Gesendet: Mittwoch, 5. Juli 2017 18:46 An: 'How to use LiveCode' Cc: Tiemo Hollmann TB Betreff: AW: can I lock screen over more than one handler? Hi Randy, it worked out that the issue wasn't related to the design of two handlers and it was only

AW: can I lock screen over more than one handler?

2017-07-06 Thread Tiemo Hollmann TB via use-livecode
-Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Tiemo Hollmann TB via use-livecode Gesendet: Mittwoch, 5. Juli 2017 18:46 An: 'How to use LiveCode' Cc: Tiemo Hollmann TB Betreff: AW: can I lock screen over more than one han

Re: AW: can I lock screen over more than one handler?

2017-07-05 Thread Phil Davis via use-livecode
: How to use LiveCode Cc: Sean Cole (Pi) Betreff: Re: can I lock screen over more than one handler? Hi Tiemo, The solution here is to call another lockScreen at the beginning of handler2. You don't have to use the unlockScreen at the end of handler 1 and 2 as it will do that automatically but it i

AW: can I lock screen over more than one handler?

2017-07-05 Thread Tiemo Hollmann TB via use-livecode
-Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Randy Hengst via use-livecode Gesendet: Mittwoch, 5. Juli 2017 17:56 An: How to use LiveCode Cc: Randy Hengst Betreff: Re: can I lock screen over more than one handler? It’s been a

Re: AW: can I lock screen over more than one handler?

2017-07-05 Thread Jonathan Lynch via use-livecode
uftrag > von Tiemo Hollmann TB via use-livecode > Gesendet: Mittwoch, 5. Juli 2017 15:57 > An: 'How to use LiveCode' > Cc: Tiemo Hollmann TB > Betreff: AW: can I lock screen over more than one handler? > > Thanks Jonathan, Trevor and Sean for your comments. > >

Re: can I lock screen over more than one handler?

2017-07-05 Thread Randy Hengst via use-livecode
rev.com] Im Auftrag > von Tiemo Hollmann TB via use-livecode > Gesendet: Mittwoch, 5. Juli 2017 15:57 > An: 'How to use LiveCode' > Cc: Tiemo Hollmann TB > Betreff: AW: can I lock screen over more than one handler? > > Thanks Jonathan, Trevor and Sean for your

AW: can I lock screen over more than one handler?

2017-07-05 Thread Tiemo Hollmann TB via use-livecode
2017 15:57 An: 'How to use LiveCode' Cc: Tiemo Hollmann TB Betreff: AW: can I lock screen over more than one handler? Thanks Jonathan, Trevor and Sean for your comments. Meanwhile I could drill down my "flickering" problem (post from yesterday) to an unexpected command. In one

Re: AW: can I lock screen over more than one handler?

2017-07-05 Thread Jonathan Lynch via use-livecode
it takes the focus of the window off and back. Very ugly in >> my case. >> >> Tiemo >> >> >> >> -Ursprüngliche Nachricht- >> Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag >> von Sean Cole (Pi) via use-livecode >

Re: AW: can I lock screen over more than one handler?

2017-07-05 Thread Jonathan Lynch via use-livecode
ivecode > Gesendet: Mittwoch, 5. Juli 2017 15:30 > An: How to use LiveCode > Cc: Sean Cole (Pi) > Betreff: Re: can I lock screen over more than one handler? > > Hi Tiemo, > The solution here is to call another lockScreen at the beginning of > handler2. You don't ha

AW: can I lock screen over more than one handler?

2017-07-05 Thread Tiemo Hollmann TB via use-livecode
se-livecode-boun...@lists.runrev.com] Im Auftrag von Sean Cole (Pi) via use-livecode Gesendet: Mittwoch, 5. Juli 2017 15:30 An: How to use LiveCode Cc: Sean Cole (Pi) Betreff: Re: can I lock screen over more than one handler? Hi Tiemo, The solution here is to call another lockScreen at the beginnin

Re: can I lock screen over more than one handler?

2017-07-05 Thread Sean Cole (Pi) via use-livecode
Hi Tiemo, The solution here is to call another lockScreen at the beginning of handler2. You don't have to use the unlockScreen at the end of handler 1 and 2 as it will do that automatically but it is advisable to include the command anyway. Is there a reason why you had an aversion to using a lockS

Re: can I lock screen over more than one handler?

2017-07-05 Thread Trevor DeVore via use-livecode
On Wed, Jul 5, 2017 at 6:45 AM, Tiemo Hollmann TB via use-livecode < use-livecode@lists.runrev.com> wrote: > > > Is this possible? > > on handler1 > > lock screen > > -- do some stuff here > > send "handler2" in 0 milliseconds > > end handler1 > > > > on handler2 > > -- do some other stuff here > >

Re: can I lock screen over more than one handler?

2017-07-05 Thread Jonathan Lynch via use-livecode
Hi Tiemo, It unlocks at the end of a handler. This can be a problem when calling another handler. I handle it by turning a called handler into a function. However, I don't think you can do it with a "send in time" handler. Sent from my iPhone > On Jul 5, 2017, at 7:45 AM, Tiemo Hollmann TB

can I lock screen over more than one handler?

2017-07-05 Thread Tiemo Hollmann TB via use-livecode
Hello, Is this possible? on handler1 lock screen -- do some stuff here send "handler2" in 0 milliseconds end handler1 on handler2 -- do some other stuff here unlock screen end handler2 in my real case the screen seems to be unlocked before handler2 has finished and I can see som