Re: Mixed styles in mobile native field?

2019-01-01 Thread Alex Shaw via use-livecode
Yes, this would be useful. Even if it's just adding bold, italics or underline to a selection, like iOS email. Entering longer text paragraphs on mobile is awkward enough and looks like we can't access the clipboard on mobile with a LC field. Having users enter markdown or basic html wouldn

Re: Signing macOS application

2019-01-01 Thread Peter Bogdanoff via use-livecode
Trevor, Thanks for your response and for the work you are doing with Levure. I’m very attracted to its functionality for me--structuring and especially providing for updating my application--but haven’t had time to work with it more yet. I tried the script you suggested, and when I processed th

Re: LiveCode 9.0.2 on Windows unable to build for Mac?!?!?!?

2019-01-01 Thread Paul Dupuis via use-livecode
On 1/1/2019 5:54 PM, Monte Goulding via use-livecode wrote: On 2 Jan 2019, at 5:00 am, Paul Dupuis via use-livecode wrote: However, I think this is a Regression in 9.0.2 from 9.0.1. It certainly sounds like a regression If someone can confirm this really is a bug, I will happily file a bu

Re: LiveCode 9.0.2 on Windows unable to build for Mac?!?!?!?

2019-01-01 Thread Monte Goulding via use-livecode
> On 2 Jan 2019, at 5:00 am, Paul Dupuis via use-livecode > wrote: > > However, I think this is a Regression in 9.0.2 from 9.0.1. It certainly sounds like a regression > If someone can confirm this really is a bug, I will happily file a bug report. My suggestion is if you can replicate wha

Re: MouseDown on Enter

2019-01-01 Thread J. Landman Gay via use-livecode
Correction: you need to include more ways to turn off the dragging control: local sColor local sDragging on mouseDown put the cColor of the mouseControl into sColor set the backcolor of the mouseControl to sColor put true into sDragging end mouseDown on mouseUp put the cColor of the mou

Re: Video-Fun2

2019-01-01 Thread hh via use-livecode
> Peter B. wrote: > It looks great! > After awhile (10-15 minutes) it froze. Reloaded the page, then Safari had the > message, “This page is using significant memory….” Yes, I had this too. It's probably a caching problem of Safari. They do a lot of caching, that's why they are the fastest browser

Re: MouseDown on Enter

2019-01-01 Thread J. Landman Gay via use-livecode
On 1/1/19 9:23 AM, Richmond via use-livecode wrote: 1. When one performs a mouseDown on each hexagon a tone is played. 2. While the mouse button is held down the tone continues to sound. 3. If the mouse is dragged (while being pressed) from one hexagon to the next, the sound changes from tha

Re: Interrupting "Wait"

2019-01-01 Thread Sannyasin Brahmanathaswami via use-livecode
This works! By adding if sStopRequested then exit repeat also at the beginning of the repeat, the wait does go to second screen what we stop the show... Now. The next trick, get a quote to show in between the photos. command startNarrative # store brand image put the long id of img

Re: Video-Fun2

2019-01-01 Thread hh via use-livecode
Well, HTML5 standalones have a display filter, just try to find out how you can set it. > Richmond wrote: > "What you see is an LC-image object" > Um, well, unfortunately NOT on my Mac Mini running WaterFox on MacOS 10.14.2 > https://www.waterfoxproject.org/en-US/ > Nor, for that matter on safari

Re: MouseDown on Enter

2019-01-01 Thread Alex Tweedly via use-livecode
First I would consider whether you want *exactly* that UI, or whether something very similar would do. If similar is OK, then I would invert the logic of the UI:  - if the mouse (pointer) is over a hexagon, and the mouse is not being pressed - play that note, and keep playing it  - if mouse

Re: Video-Fun2

2019-01-01 Thread Peter Bogdanoff via use-livecode
It looks great! After awhile (10-15 minutes) it froze. Reloaded the page, then Safari had the message, “This page is using significant memory….” Peter > On Jan 1, 2019, at 1:18 PM, Richmond via use-livecode > wrote: > > "What you see is an LC-image object" > > Um, well, unfortunately NOT o

Re: Video-Fun2

2019-01-01 Thread Richmond via use-livecode
"What you see is an LC-image object" Um, well, unfortunately NOT on my Mac Mini running WaterFox on MacOS 10.14.2 https://www.waterfoxproject.org/en-US/ Nor, for that matter on safari Technology Preview Release 72 Richmond. On 1.01.19 20:01, hh via use-livecode wrote: Video-Fun2 is a major u

Re: Video-Fun2

2019-01-01 Thread Richmond via use-livecode
Developer funds are hard to get hold of: my Devawriter Kickstarter "thing" I ran last year is a shining example. If, however, you were to promote an automated bottom-washer that played Donald Trump's "March on Moscow" you'd get so much money you would know what to do with it. Richmond. On 1.01

Video-Fun2

2019-01-01 Thread hh via use-livecode
Video-Fun2 is a major update of the HTML5 standalone "Video-Fun". Finally all I wanted works. This uses only "atomic" canvas2d methods of JavaScript in the browser, no JS-packages. And, where they are fast enough in the HTML5 engine, all the well known wonderful LC-techniques: (US) http://hh.on-r

Re: LiveCode 9.0.2 on Windows unable to build for Mac?!?!?!?

2019-01-01 Thread Paul Dupuis via use-livecode
Monte and Brian, Thank you both. Here is the very specific details of the change between LC901 and LC902 that I am seeing: Under the Window 10/LiveCode 9.0.1 Business STABLE under the FILE > Standalone Application Settings..., in the Copy Files tab, under "Non-stack files in the Application"

Re: MouseDown on Enter

2019-01-01 Thread Richmond via use-livecode
PRESUMABLY because there was NOT an object being DRAGGED. *Ru Paul* and All! I don't want to DRAG an object: all I want to do is drag the mouse into the object. On 1.01.19 19:48, Richmond wrote: With the left mouse button depressed I dragged into the graphic "h3" that contained this script:

Re: MouseDown on Enter

2019-01-01 Thread Richmond via use-livecode
With the left mouse button depressed I dragged into the graphic "h3" that contained this script: ondragEnter     setthebackgroundColorofmetogreen enddragEnter and *NOTHING* happened. On 1.01.19 19:20, Paul Dupuis via use-livecode wrote: You may need to look at LiveCode's drag events since tha

Re: MouseDown on Enter

2019-01-01 Thread Richmond via use-livecode
Well, of course, one can mess around with "is within", except that my poisonous mind starts worrying about hexagons when LiveCode seems better at understanding rectangles. Richmond. On 1.01.19 19:20, Paul Dupuis via use-livecode wrote: You may need to look at LiveCode's drag events since that

Re: MouseDown on Enter

2019-01-01 Thread Richmond via use-livecode
Now there's a thought! Thanks. Richmond. On 1.01.19 19:20, Paul Dupuis via use-livecode wrote: You may need to look at LiveCode's drag events since that is the mouse action you are trying to address, namely dragging from one hexagon to another. See the dictionary for events like dragStart,

Re: MouseDown on Enter

2019-01-01 Thread Paul Dupuis via use-livecode
You may need to look at LiveCode's drag events since that is the mouse action you are trying to address, namely dragging from one hexagon to another. See the dictionary for events like dragStart, dragEnter, dragLeave, dragStop, etc. ___ use-liveco

Re: MouseDown on Enter

2019-01-01 Thread Richmond via use-livecode
OK, OK; let's be direct and to the point: I want to "rip off" the functionality of this web-page: http://terpstrakeyboard.com/about/ Click on the "Play It Now!" menu item and follow through . . . You will end up with a microtonal keyboard that has this functionality: 1. When one performs a mo