RE: Moving controls smoothly around the screen

2013-04-15 Thread Ralph DiMola
3:57 PM To: How to use LiveCode Subject: Re: Moving controls smoothly around the screen Hello Pete, I use Animation Engine for a lot of stuff, but for sliding something up or down (iOS & Android only), sometimes this works well: lock screen for visual effect in rect x,y -- reposition object he

Re: Moving controls smoothly around the screen

2013-04-14 Thread Peter Haworth
Thanks Tom. I might just go that route - would save me a lot of headaches! Pete lcSQL Software On Sun, Apr 14, 2013 at 3:38 PM, Thomas McGrath III wrote: > Tactile Media includes an accordion style menu on their site. > http://tmtools.tactilemedia.com/tmcontrol/themes.ht

Re: Moving controls smoothly around the screen

2013-04-14 Thread Peter Haworth
"drag" command, setting the "dragSpeed" as you > require? > > > Craig > > > > -Original Message- > From: Peter Haworth > To: How to use LiveCode > Sent: Sun, Apr 14, 2013 3:20 pm > Subject: Re: Moving controls smoothly around the screen &g

Re: Moving controls smoothly around the screen

2013-04-14 Thread Thomas McGrath III
Tactile Media includes an accordion style menu on their site. http://tmtools.tactilemedia.com/tmcontrol/themes.html# Half way down on the left. Very cool. I've used it and it works well. Tom -- Tom McGrath III http://lazyriver.on-rev.com mcgra...@mac.com On Apr 14, 2013, at 5:27 AM, Paul Magui

Re: Moving controls smoothly around the screen

2013-04-14 Thread dunbarx
Pete. Have you tried using the "drag" command, setting the "dragSpeed" as you require? Craig -Original Message- From: Peter Haworth To: How to use LiveCode Sent: Sun, Apr 14, 2013 3:20 pm Subject: Re: Moving controls smoothly around the screen All, Than

Re: Moving controls smoothly around the screen

2013-04-14 Thread Scott Morrow
Hello Pete, I use Animation Engine for a lot of stuff, but for sliding something up or down (iOS & Android only), sometimes this works well: lock screen for visual effect in rect x,y -- reposition object here unlock screen with visual effect scroll down very fast -- Scott Morrow Elementary Sof

Re: Moving controls smoothly around the screen

2013-04-14 Thread Peter Haworth
OK, quick report back. I added Colin's code to Paul's stack (but left the move rate at 20 ticks) and it worked nicely but the movement was somewhat jerky. Searching around the archives, I came across some comments about the syncRate setting, so I set it to 10 and everything worked very smoothly.

Re: Moving controls smoothly around the screen

2013-04-14 Thread Peter Haworth
All, Thanks for all the ideas. I'll try all and report back. Larry: I do need the groups to appear below the button they are associated with, not above. Pete lcSQL Software On Sun, Apr 14, 2013 at 10:28 AM, J. Landman Gay wrote: > On 4/14/13 12:19 PM, Peter Haworth wro

RE: Moving controls smoothly around the screen

2013-04-14 Thread Apps Foundry
Pete: Perhaps I'm missing a key detail of how you want to move things around, but I can make a group of buttons move smoothly using: * * *on mouseUp* *put the loc of group "btns" into theLoc* *add 100 to item 2 of theLoc* *move group "btns" to theLoc in 500 milliseconds* *end mouseUp*

Re: Moving controls smoothly around the screen

2013-04-14 Thread Colin Holgate
There is a problem I think, in that the wipe is throttled by the refresh rate of the screen, and ends up being slow even if you say "very fast". Here is a change of the second button script, where I removed the wipe, and also show the group after the showing of the button 2 list. I sped up the m

Re: Moving controls smoothly around the screen

2013-04-14 Thread Paul Hibbert
27;t mean >> they are moving from layer to layer, do you? >> >> >> >> You say you are using a "show" command to "move" the objects. If this is >> just how you are describing it, then why not just show or hide the objects >> in any particular

Re: Moving controls smoothly around the screen

2013-04-14 Thread J. Landman Gay
On 4/14/13 12:19 PM, Peter Haworth wrote: so far, I haven't found a way to make the move command do anything but snap the moved objects from their original location to the new one. Lock moves. Issue "move" commands for each object with the parameter "without waiting". Unlock moves. -- Jacque

Re: Moving controls smoothly around the screen

2013-04-14 Thread Peter Haworth
should be straightforward. > > > Craig Newman > > > > > -Original Message- > From: Peter Haworth > To: How to use LiveCode > Sent: Sat, Apr 13, 2013 9:00 pm > Subject: Moving controls smoothly around the screen > > > I have a stack with a number of bu

Re: Moving controls smoothly around the screen

2013-04-14 Thread Björnke von Gierke
There's a trial at the store (yellow button): http://www.runrev.com/store/product/animation-engine-5/ Note that Malte said he'll open source it soon. I suggest to contact him before you buy. On 14.04.2013, at 11:27, Paul Maguire wrote: > Hi. > > My first post here - been lurking a whole 48 h

Re: Moving controls smoothly around the screen

2013-04-14 Thread Paul Maguire
Great! Thanks for the prompt response. I'll check it out. Regards, Paul. On 14 Apr 2013, at 10:38, Malte Brill wrote: > Hi Paul, > > welcome to the list. I am the author of said library. :-) > > You can find animationEngine (the dual licensed version) on my server: > > http://derbrill.de/

Re: Moving controls smoothly around the screen

2013-04-14 Thread Malte Brill
Hi Paul, welcome to the list. I am the author of said library. :-) You can find animationEngine (the dual licensed version) on my server: http://derbrill.de/animationEngine5.0.2.zip It comes with a PDF and a few example stacks. It will take a little while before this is moved to github and the

Re: Moving controls smoothly around the screen

2013-04-14 Thread Paul Maguire
Hi. My first post here - been lurking a whole 48 hours :-) I recognise a couple if names here from the Director DIRECT-L list... Anyways "hello world"! I'm reasonably new to Livecode. I'm intrigued by the Animation Engine - I'd like to know more but can't find any demos or examples or trial ve

Re: Moving controls smoothly around the screen

2013-04-13 Thread Gerry Orkin
I use Animation Engine to smoothly move things. Gerry On 14/04/2013, at 10:59 AM, Peter Haworth wrote: > I need to move all the objects underneath down to > make room for the hidden group associated with the button to be displayed. ___ use-livecode

Re: Moving controls smoothly around the screen

2013-04-13 Thread dunbarx
the group. You would have to manage the members of the ad hoc group, but that should be straightforward. Craig Newman -Original Message- From: Peter Haworth To: How to use LiveCode Sent: Sat, Apr 13, 2013 9:00 pm Subject: Moving controls smoothly around the screen I have a stack w

Moving controls smoothly around the screen

2013-04-13 Thread Peter Haworth
I have a stack with a number of buttons and groups on it,all vertically aligned. The groups are initially hidden so the screen looks like it has a series of buttons on it. When a button is clicked, I need to move all the objects underneath down to make room for the hidden group associated with th