Re: I need a "slider" in a circle

2017-07-10 Thread Roger Guay via use-livecode
I just uploaded the latest version of RadialDialOmatic to Rev Sample Stacks. > http://livecodeshare.runrev.com/stack/838/RadialDialOmatic > All The best, Roger > On Jul 9, 2017, at 3:56 PM, Roger Guay via use-livecode >

Re: I need a "slider" in a circle

2017-07-09 Thread Roger Guay via use-livecode
Thanks very much for the compliment, but give mea day to upload the latest. I’ve made significant improvements to RadialDialOmatic since the original upload. Right now I have to leave for a concert at Ste. Michelle Winery!!. Cheers, Roger > On Jul 9, 2017, at 1:13 PM, hh via use-livecode

Re: I need a "slider" in a circle

2017-07-09 Thread hh via use-livecode
Just to 'complete' this thread. Detected today a good solution by Roger Guay from 2012, still up-to-date (this solution is in between a full gauge and a circular slider) http://livecodeshare.runrev.com/stack/645/RadialDialOmatic > Yet another solution: RotationControl. > > This is a control I

Re: I need a "slider" in a circle

2017-07-05 Thread hh via use-livecode
Yet another solution: RotationControl. This is a control I recently made for use at LC Global in November: An "ovalslider"-group that is under the control of a behavior button. Attach the behavior to any LC-Object that has an angle property. Runs with LC 6/7/8/9 on Mac/Win/linux or with LC 6/7

Re: I need a "slider" in a circle

2017-07-04 Thread Mark Wieder via use-livecode
On 07/04/2017 07:20 AM, Todd Fabacher via use-livecode wrote: Hello Livecode group, I have a situation where we need a slider, not a straight line, but as a circle. I thing Scott Rossi did a demo of this at San Diego LC conference, but I can't find the code samples to check. I just need to

Re: I need a "slider" in a circle

2017-07-04 Thread Colin Holgate via use-livecode
In the version I did you can also squash the oval in either direction, and the button still hugs the edge. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: I need a "slider" in a circle

2017-07-04 Thread Richmond Mathewson via use-livecode
And, NO: this does NOT help at all: http://forums.livecode.com/viewtopic.php?f=7=27672 Richmond. On 7/4/17 7:25 pm, Richmond Mathewson wrote: Hmm . . . I've made myself a jaggy circle by setting the points of an irregular polygon to a sequence generated with a merry sine/cosine function .

Re: I need a "slider" in a circle

2017-07-04 Thread Colin Holgate via use-livecode
Here is a version that would work for a complete circle: global cw,ch,cx,cy,offx,offy on mousedown put the width of graphic "circle" / 2 into cw put the height of graphic "circle" / 2 into ch put the left of graphic "circle" + cw into cx put the top of graphic "circle" + ch into cy

Re: I need a "slider" in a circle

2017-07-04 Thread Richmond Mathewson via use-livecode
Hmm . . . I've made myself a jaggy circle by setting the points of an irregular polygon to a sequence generated with a merry sine/cosine function . . . Now it's "dead easy (whatever that's supposed to mean) to animate a "knob" round a "dial" as in: move grc "KNOB" to the points of grc

Re: I need a "slider" in a circle

2017-07-04 Thread Richmond Mathewson via use-livecode
Why not use a circular widget in the form of a dial? Richmond. On 7/4/17 5:20 pm, Todd Fabacher via use-livecode wrote: Hello Livecode group, I have a situation where we need a slider, not a straight line, but as a circle. I thing Scott Rossi did a demo of this at San Diego LC conference, but

Re: I need a "slider" in a circle

2017-07-04 Thread Renato Muzzini via use-livecode
> Il giorno 04/lug/2017, alle ore 16:20, Todd Fabacher via use-livecode > ha scritto: > > Hello Livecode group, > > I have a situation where we need a slider, not a straight line, but as a > circle. I thing Scott Rossi did a demo of this at San Diego LC

Re: I need a "slider" in a circle

2017-07-04 Thread Malte Pfaff-Brill via use-livecode
Hi Todd, I found my slides to the 2013 liveCode conference, where I did circle sliders using animation engine. If that is of interest, let me know. Cheers, Malte ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

I need a "slider" in a circle

2017-07-04 Thread Todd Fabacher via use-livecode
Hello Livecode group, I have a situation where we need a slider, not a straight line, but as a circle. I thing Scott Rossi did a demo of this at San Diego LC conference, but I can't find the code samples to check. I just need to restrict the movement to a circle when the user moves their finger.