Re: LockMoves

2014-05-20 Thread Alejandro Tejada
The relationship between the command lockmoves and layermode could be more evident if LiveCode IDE had an Alert or Pop-Up that REMINDS about them. Does exists a user customizable plug-in that could do this function? Al -- View this message in context: http://runtime-revolution.278305.n4.nabbl

Re: LockMoves

2014-05-20 Thread J. Landman Gay
On 5/20/14, 2:04 AM, Nakia Brewer wrote: Settings the layer mode to dynamic made it heaps better. It's still not perfect but I can live with it! Make sure you set the layermode for the group and not for the objects inside it. If that's what you did already then I think it's as good as it gets

Re: LockMoves

2014-05-20 Thread Nakia Brewer
> From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf > Of J. Landman Gay > Sent: Tuesday, 20 May 2014 12:47 AM > To: How to use LiveCode > Subject: Re: LockMoves > > Did you also set the layermode of the moving objects to "dynamic" ? > >

RE: LockMoves

2014-05-19 Thread Nakia Brewer
l Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of J. Landman Gay Sent: Tuesday, 20 May 2014 12:47 AM To: How to use LiveCode Subject: Re: LockMoves Did you also set the layermode of the moving objects to "dynamic" ? On May 19, 2014 5:16:59 A

Re: LockMoves

2014-05-19 Thread J. Landman Gay
Did you also set the layermode of the moving objects to "dynamic" ? On May 19, 2014 5:16:59 AM CDT, Nakia Brewer wrote: >Once I was home and could actually try this out on an actual device I >was sadly not as impressed as I was on the desktop. > >It all works like it should but it's just a litt

Re: LockMoves

2014-05-19 Thread Randy Hengst
> ACN 009 342 572 > > > -Original Message- > From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf > Of Dar Scott > Sent: Monday, 19 May 2014 7:44 AM > To: How to use LiveCode > Subject: Re: LockMoves > > This works for me on Mave

Re: LockMoves

2014-05-19 Thread Nakia Brewer
Once I was home and could actually try this out on an actual device I was sadly not as impressed as I was on the desktop. It all works like it should but it's just a little jittery whilst it's making the moves... This was on an iPhone 5 so it would probably suffer fairly bad on an even lower sp

Re: LockMoves

2014-05-18 Thread J. Landman Gay
On 5/18/14, 9:14 AM, Richmond wrote: Now I'm wondering what value that "lockMoves" has at all. The examples given may have explained it. But just in case, move commands issued sequentially will move that way. Even if you use "without waiting" there will still be some lag between the first and

RE: LockMoves

2014-05-18 Thread Nakia Brewer
: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Dar Scott Sent: Monday, 19 May 2014 7:44 AM To: How to use LiveCode Subject: Re: LockMoves This works for me on Mavericks and LC 6.6.1. on mouseUp set the location of graphic "Rectangle" to 100,100 set the lo

Re: LockMoves

2014-05-18 Thread Dar Scott
This works for me on Mavericks and LC 6.6.1. on mouseUp set the location of graphic "Rectangle" to 100,100 set the location of graphic "Round Rectangle" to 100,200 set the location of graphic "Oval" to 100,300 wait .7 seconds with messages set the lockMoves to true move graphic "

Re: LockMoves

2014-05-18 Thread Randy Hengst
The "without waiting" will make the difference… and they'll move at the same time On May 18, 2014, at 4:22 PM, Nakia Brewer wrote: > This is basically what I am currently doing with the 'without waiting' > addition. > > I will give this a try and see what effect it has. > > Note: my current

Re: LockMoves

2014-05-18 Thread Nakia Brewer
This is basically what I am currently doing with the 'without waiting' addition. I will give this a try and see what effect it has. Note: my current implementation works but each object moves one at time (second starts after first finishes) Sent from my iPhone > On 18 May 2014, at 11:33 pm,

Re: LockMoves

2014-05-18 Thread Richmond
Now I'm wondering what value that "lockMoves" has at all. 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/l

Re: LockMoves

2014-05-18 Thread Richmond
On 18/05/14 16:20, Randy Hengst wrote: Nakia, try something like this: on mouseUp move group "Menu1Group" relative 0,22 without waiting move group "Menu2Group" relative 0,-22 end mouseUp be well, randy That works perfectly over here! Richmond. __

Re: LockMoves

2014-05-18 Thread Randy Hengst
Nakia, try something like this: on mouseUp move group "Menu1Group" relative 0,22 without waiting move group "Menu2Group" relative 0,-22 end mouseUp be well, randy - On May 18, 2014, at 7:47 AM, Nakia Brewer wrote: > I am after the move transition. > Touch more aesthetically pleasing..

Re: LockMoves

2014-05-18 Thread Richmond
On 18/05/14 15:47, Nakia Brewer wrote: I am after the move transition. Touch more aesthetically pleasing... "If the lockMoves property is set to true, when you use the move command to move an object around the screen, the movement does not become visible until the lockMoves is set to false.

Re: LockMoves

2014-05-18 Thread Nakia Brewer
I am after the move transition. Touch more aesthetically pleasing... Sent from my iPhone > On 18 May 2014, at 10:45 pm, "Richmond" wrote: > >> On 18/05/14 15:37, Nakia Brewer wrote: >> Hi, >> >> I have a need to move 2 groups at the same time (one menu drops in whilst >> one drops out). >> >

Re: LockMoves

2014-05-18 Thread Richmond
On 18/05/14 15:37, Nakia Brewer wrote: Hi, I have a need to move 2 groups at the same time (one menu drops in whilst one drops out). I'm currently using the move command to achieve this but they are moving one at a time (second doesn't start until first finishes).. This works okay, objects m