Re: How do I play sound files in HTML5?

2017-10-07 Thread Kenji Kojima via use-livecode
John, I will read the Dictionary/Guide well. Thanks, -- Kenji Kojima / 小島健治 http://kenjikojima.com > On Oct 7, 2017, at 12:09 PM, JOHN PATTEN via use-livecode > wrote: > > In LiveCode under the Dictionary/Guide, there is a link in the Guide for > HTML5. At the

Re: How do I play sound files in HTML5?

2017-10-07 Thread JOHN PATTEN via use-livecode
In LiveCode under the Dictionary/Guide, there is a link in the Guide for HTML5. At the bottom of that information is what is required in your html to display the app. It is surprisingly little. LiveCode actually creates an html page that contains, from what I can tell, a considerable amount of

Re: How do I play sound files in HTML5?

2017-10-07 Thread Kenji Kojima via use-livecode
Hi, I used LC 9.0.0 (dp9). I could play a sound file. Thanks. It had a strange thing the result of do tScript as “JavaScript” was “execution error” though it played. http://kenjikojima.com/HTML5PlaySound/HTML5PlaySound.html

Re: Segmented Control Bugs?

2017-10-07 Thread Brian Milby via use-livecode
I've posted a PR that should address this issue: https://github.com/livecode/livecode/pull/6044 I created a stack with a segmented control with a substack with a segmented control. As you described, the hiliteChanged message was dispatched for both controls upon opening the stack. In my case, I

Re: Atkinson dither algorithm

2017-10-07 Thread Alejandro Tejada via use-livecode
Hi Malte, Malte Brill wrote: > I already posted on the forums, but for completeness also here: > a lot can be done by replacing repeat with with repeat for each where you can. > > --repeat with i = 1 to the number of words of fldhexa3 > --put 00 & word i of fldhexa3 & word i of fldhexa3 &

Re: Atkinson dither algorithm

2017-10-07 Thread Malte Pfaff-Brill via use-livecode
Hi Al, I already posted on the forums, but for completeness also here: a lot can be done by replacing repeat with with repeat for each where you can. --repeat with i = 1 to the number of words of fldhexa3 -- put 00 & word i of fldhexa3 & word i of fldhexa3 & word i of fldhexa3

Slack library?

2017-10-07 Thread Ben Rubinstein via use-livecode
Has anyone interfaced with Slack using LiveCode? If so, any tips, experience, or code to share? Many thanks, Ben ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Atkinson dither algorithm

2017-10-07 Thread Alejandro Tejada via use-livecode
I have posted a demo stack in the forums: https://forums.livecode.com/viewtopic.php?f=10=29935 Have a nice weekend! Al On Sat, Oct 7, 2017 at 1:52 AM, Alejandro Tejada wrote: > Hi All, > > I am stuck trying to make this code for Bill Atkinson > dithering algorithm much