Re: Browser Widget Issue

2021-05-26 Thread David Bovill via use-livecode
Thanks Keith - the issue is with the HTML5 that uses modern webrtc standards for video - either the javascript is excluding the type of embedded framework Livecode is no using on MacOS - or the framework doesn’t;t yet support those. Features - I’d like to check - but not sure what Livecode is

Re: 3-way slider control

2021-05-26 Thread Paul Dupuis via use-livecode
On 5/26/2021 12:16 PM, Curry Kenworthy via use-livecode wrote: Paul: > I created a slider with a label on the left and right in a group. > The slider is set to min 0, max 2, inc 1 and it's script is: > on scrollbarDrag pNewPosition > [...] I like this UI approach! Your script could be

Re: 3-way slider control

2021-05-26 Thread Paul Dupuis via use-livecode
On 5/25/2021 9:08 PM, J. Landman Gay via use-livecode wrote: Regardless, I have decided to use a standard LC slider set to -1,0,+1 with some labels grouped to it. It works like a charm and minimizes the number of graphics/objects and code. I was interested to see that; it's clever, and it does

Re: 3-way slider control

2021-05-26 Thread Rick Harrison via use-livecode
I thought of this before I saw Paul’s solution: Name the scrollbar: ScrollbarThreeStateButtonValue on mouseUp put the thumbposition of me into ScrollbarThreeStateButtonValue put the round of ScrollbarThreeStateButtonValue into VarScrollbarThreeStateButton2 set the thumbposition of me to

Re: 3-way slider control

2021-05-26 Thread Curry Kenworthy via use-livecode
Paul: > I created a slider with a label on the left and right in a group. > The slider is set to min 0, max 2, inc 1 and it's script is: > on scrollbarDrag pNewPosition > [...] I like this UI approach! Your script could be shorter. A 4-liner or 5-liner would be ideal; just eliminate the

Re: 3-way slider control

2021-05-26 Thread Paul Dupuis via use-livecode
Thank you. On 5/26/2021 3:41 PM, Jim Lambert via use-livecode wrote: go url "http://netrin.on-rev.com/misc/three_state_toggle.livecode; This stack contains a group which is a three-state toggle switch. The myState of the group contains its current state which is either "ON","OFF" or "MID"

Re: Browser Widget Issue

2021-05-26 Thread Andrew at MidWest Coast Media via use-livecode
This lesson hints at the fact that Chromium (CEF) is the default for all platforms except Mac that uses WebKit https://lessons.livecode.com/m/2592/l/278115-create-a-browser-instance-within-your-app -Andrew

Re: 3-way slider control

2021-05-26 Thread Alex Tweedly via use-livecode
I'd prefer it like ... On 26/05/2021 18:28, Paul Dupuis via use-livecode wrote: What, like this: on scrollbarDrag pNewPosition   local tToolTip = "CiC only,both CiC and Source,Source only"   set the thumbPosition of me to pNewPosition   set the tooltip of me to "Text style changes will be

After 2 years still no Server notes in the zip

2021-05-26 Thread JeeJeeStudio via use-livecode
Hi, why are there still no Server notes in the Server zip file on the downloads page. It only contains the release notes, which do not contain instructions on how to install. You can't expect new users to search into version 6 to find the release notes (which I have by the way) The

Re: 3-way slider control

2021-05-26 Thread Jim Lambert via use-livecode
go url "http://netrin.on-rev.com/misc/three_state_toggle.livecode; This stack contains a group which is a three-state toggle switch. The myState of the group contains its current state which is either "ON","OFF" or "MID" You can customize the states' colors by setting the color constants. See

Re: 3-way slider control

2021-05-26 Thread Paul Dupuis via use-livecode
:-) On 5/26/2021 3:36 PM, Alex Tweedly via use-livecode wrote: I'd prefer it like ... On 26/05/2021 18:28, Paul Dupuis via use-livecode wrote: What, like this: on scrollbarDrag pNewPosition   local tToolTip = "CiC only,both CiC and Source,Source only"   set the thumbPosition of me to

Re: 3-way slider control

2021-05-26 Thread J. Landman Gay via use-livecode
On 5/26/21 2:41 PM, Jim Lambert via use-livecode wrote: go url "http://netrin.on-rev.com/misc/three_state_toggle.livecode; This stack contains a group which is a three-state toggle switch. The myState of the group contains its current state which is either "ON","OFF" or "MID" You can

Re: 3-way slider control

2021-05-26 Thread Rick Harrison via use-livecode
Cool custom 3 state toggle switch! A little more work, and code but truly a worth-while result. That will make Paul happy for sure! Thanks! Rick > On May 26, 2021, at 3:41 PM, Jim Lambert via use-livecode > wrote: > > go url "http://netrin.on-rev.com/misc/three_state_toggle.livecode; > >

Re: 3-way slider control

2021-05-26 Thread Sean Cole (Pi) via use-livecode
I made a multiway one https://forums.livecode.com/viewtopic.php?f=7=35903=205657 On Wed, 26 May 2021 at 20:45, Paul Dupuis via use-livecode < use-livecode@lists.runrev.com> wrote: > :-) > > On 5/26/2021 3:36 PM, Alex Tweedly via use-livecode wrote: > > I'd prefer it like ... > > > > On