Re: lockscreen?

2017-08-15 Thread Richmond Mathewson via use-livecode

Thanks both: sorted out a lot of my nonsense.

Richmond.

On 8/15/17 3:30 pm, hh via use-livecode wrote:

Richmond wrote:
If I lock the screen (so these automations don't show up) will that
speed things up?

lock screen; lock messages

___
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: lockscreen?

2017-08-15 Thread hh via use-livecode

> Richmond wrote:
> If I lock the screen (so these automations don't show up) will that
> speed things up?

lock screen; lock messages

___
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: lockscreen?

2017-08-15 Thread Jonathan Lynch via use-livecode
If you use lock screen to have 1 screen update rather than hundreds or 
thousands of screen updates, it will be vastly faster.

Sent from my iPhone

> On Aug 15, 2017, at 7:26 AM, Richmond Mathewson via use-livecode 
>  wrote:
> 
> So . . . owing to some oddities of my Devawriter Pro I have set up a new
> interface that automatically converts encoded documents from it original
> to another format; but that is implemented as an automation of one of
> the manual interfaces; so a series (hundreds, thousands) of mouseUp
> signals are despatched to images that function as buttons.
> 
> This makes for an extremely pretty user feedback situation, but also
> means that things tend to be s . . . l . . . o . . . w . . .
> 
> If I lock the screen (so these automations don't show up) will that
> speed things up?
> 
> Richmond.
> ___
> 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


lockscreen?

2017-08-15 Thread Richmond Mathewson via use-livecode

So . . . owing to some oddities of my Devawriter Pro I have set up a new
interface that automatically converts encoded documents from it original
to another format; but that is implemented as an automation of one of
the manual interfaces; so a series (hundreds, thousands) of mouseUp
signals are despatched to images that function as buttons.

This makes for an extremely pretty user feedback situation, but also
means that things tend to be s . . . l . . . o . . . w . . .

If I lock the screen (so these automations don't show up) will that
speed things up?

Richmond.
___
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: Lockscreen and Visual effect

2012-05-10 Thread John Dixon

Hi Phil...

Use unlock screen instead of show object...

lockscreen for visual effect
--draw the new set of people into the same rect as the old ones, while the 
screen is locked
unlock screen with push down


  
___
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


Why does lockScreen not work here?

2011-07-02 Thread bar...@libero.it


This is a similar question to that of Tiemo (why does lock screen doesn't locks 
the screen? (Tiemo Hollmann TB)) about finding colours under other objects 
(controls) but that thread evolved so fast in a single Digest I may appear a 
bit late. Thus the hijacked thread title.

The following handler detects the colour onto which a dragged object is dropped 
by moving it and getting the mouseColor but. Although it could be interpreted 
as a settling wobble, I would prefer not to see the little movement .
 
This works correctly, as is, but if I uncomment the lines 'lockScreen' and 
'unlockScreen' then the whole handler is stopped. 

I've tried moving the commented lines around and using 'set lock screen' but 
the result is always the same, suggestions please.
 
---
Global gCurrBall

on Rollit
   --lockScreen
   move gCurrBall relative 20,-20  --These movements should not be seen by user-
   get the mouseColor
   put it into tColour
   move gCurrBall relative -20,20
   --unlockScreen
   if tColour is 0,0,0 then
  Dropit
   else exit to top
end Rollit

on Dropit..
---
Using Windows XPHome, Rev vs 3.5 / 4.0

Best to all 
Barry Barber 
___
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: Why does lockScreen not work here?

2011-07-02 Thread Mark Schonewille
Barry,

You made a mistake.

The correct syntax is:


lock screen
or
set the lockScreen to true

and

unlock screen
or
set the lockScreen to false

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.6 for LiveCode here http://qery.us/ce

On 2 jul 2011, at 15:18, bar...@libero.it wrote:

 
 
 This is a similar question to that of Tiemo (why does lock screen doesn't 
 locks the screen? (Tiemo Hollmann TB)) about finding colours under other 
 objects (controls) but that thread evolved so fast in a single Digest I may 
 appear a bit late. Thus the hijacked thread title.
 
 The following handler detects the colour onto which a dragged object is 
 dropped by moving it and getting the mouseColor but. Although it could be 
 interpreted as a settling wobble, I would prefer not to see the little 
 movement .
 
 This works correctly, as is, but if I uncomment the lines 'lockScreen' and 
 'unlockScreen' then the whole handler is stopped. 
 
 I've tried moving the commented lines around and using 'set lock screen' but 
 the result is always the same, suggestions please.
 
 ---
 Global gCurrBall
 
 on Rollit
   --lockScreen
   move gCurrBall relative 20,-20  --These movements should not be seen by 
 user-
   get the mouseColor
   put it into tColour
   move gCurrBall relative -20,20
   --unlockScreen
   if tColour is 0,0,0 then
  Dropit
   else exit to top
 end Rollit
 
 on Dropit..
 ---
 Using Windows XPHome, Rev vs 3.5 / 4.0
 
 Best to all 
 Barry Barber 


___
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:Why does lockScreen not work here?

2011-07-02 Thread bar...@libero.it
 Thank you Mark!Now you all know why I don't ask questions very often.But I do 
enjoy reading all my Digests every evening (can't understand how you people 
keep it up in real time) and that takes so long I never get around to working 
on my stacks (or reading the fm)!
Barry
 
___
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