Re: insanely long delays when moving several selected objects

2017-05-30 Thread Monte Goulding via use-livecode

> On 31 May 2017, at 10:42 am, Bob Sneidar via use-livecode 
>  wrote:
> 
> I think anything that is displaying properties of any controls will cause 
> this. It has to intercept the engine and update the displayed settings each 
> time anything changes. Otherwise you would not get real time updates to these 
> properties in any open windows. 

Something like that should be able to be worked around by sending in some 
unnoticeable to the user amount time (I usually use 200 milliseconds) then 
cancel the send if the event happens again within the time. We do that all over 
the place but there could be a few spots that are being missed.

Like this

local sMessage

on somethingChaged
   cancel sMessage
   send “displayChange” to me in 200 milliseconds
   put the result into sMessage
end somethingChanged

on displayChange
   — actually do something
end displayChange

Cheers

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: insanely long delays when moving several selected objects

2017-05-30 Thread Bob Sneidar via use-livecode
I think anything that is displaying properties of any controls will cause this. 
It has to intercept the engine and update the displayed settings each time 
anything changes. Otherwise you would not get real time updates to these 
properties in any open windows. 

Bob S


> On May 30, 2017, at 16:42 , Devin Asay via use-livecode 
>  wrote:
> 
> I'd never noticed a connection to property inspectors--but they would
> almost always be open when I'm doing this type of thing.
> 
> I wonder if he meant the Project Browser, rather than the property inspector. 
> I’ve often seen slowdowns with the PB open, which tend to get worse the 
> longer it’s open and which go away as soon as I close it.
> 
> Devin
> 
> 
> Devin Asay

___
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: insanely long delays when moving several selected objects

2017-05-30 Thread Devin Asay via use-livecode

On May 30, 2017, at 5:39 PM, Dr. Hawkins via use-livecode 
> wrote:

On Tue, May 30, 2017 at 2:51 PM, Ali Lloyd via use-livecode <
use-livecode@lists.runrev.com> wrote:

The workaround might be to close the property inspector- however that of
course depends on whether the PI is open while you are experiencing this
currently.


!!!

I'd never noticed a connection to property inspectors--but they would
almost always be open when I'm doing this type of thing.

I wonder if he meant the Project Browser, rather than the property inspector. 
I’ve often seen slowdowns with the PB open, which tend to get worse the longer 
it’s open and which go away as soon as I close it.

Devin


Devin Asay
Director
Office of Digital Humanities
Brigham Young University

___
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: insanely long delays when moving several selected objects

2017-05-30 Thread Dr. Hawkins via use-livecode
On Tue, May 30, 2017 at 2:51 PM, Ali Lloyd via use-livecode <
use-livecode@lists.runrev.com> wrote:

> The workaround might be to close the property inspector- however that of
> course depends on whether the PI is open while you are experiencing this
> currently.
>

!!!

I'd never noticed a connection to property inspectors--but they would
almost always be open when I'm doing this type of thing.

Thanks


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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: insanely long delays when moving several selected objects

2017-05-30 Thread Bob Sneidar via use-livecode
That happens to me as well. Closing the PI definitely fixes that. 

Bob S


> On May 30, 2017, at 14:34 , Dr. Hawkins via use-livecode 
>  wrote:
> 
> I few minutes ago, I selected about three dozen fields in two groups, and
> tapped up-arrow several times.
> 
> I had *thought* that the slowmove bug was long gone, but apparently not.
> 
> Simply groping them to move isn't a viable workaround; the point was that I
> needed space in the middle of the group.
> 
> *Is* there a workaround for this.
> 
> Gee, they're finally done!
> 
> 
> -- 
> Dr. Richard E. Hawkins, Esq.
> (702) 508-8462
> ___
> 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: insanely long delays when moving several selected objects

2017-05-30 Thread Ali Lloyd via use-livecode
The workaround might be to close the property inspector- however that of
course depends on whether the PI is open while you are experiencing this
currently.

On Tue, May 30, 2017 at 10:34 PM Dr. Hawkins via use-livecode <
use-livecode@lists.runrev.com> wrote:

> I few minutes ago, I selected about three dozen fields in two groups, and
> tapped up-arrow several times.
>
> I had *thought* that the slowmove bug was long gone, but apparently not.
>
> Simply groping them to move isn't a viable workaround; the point was that I
> needed space in the middle of the group.
>
> *Is* there a workaround for this.
>
> Gee, they're finally done!
>
>
> --
> Dr. Richard E. Hawkins, Esq.
> (702) 508-8462
> ___
> 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


insanely long delays when moving several selected objects

2017-05-30 Thread Dr. Hawkins via use-livecode
I few minutes ago, I selected about three dozen fields in two groups, and
tapped up-arrow several times.

I had *thought* that the slowmove bug was long gone, but apparently not.

Simply groping them to move isn't a viable workaround; the point was that I
needed space in the middle of the group.

*Is* there a workaround for this.

Gee, they're finally done!


-- 
Dr. Richard E. Hawkins, Esq.
(702) 508-8462
___
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