Re: JIGSAW PUZZLE 2d-video v_100

2018-12-28 Thread hh via use-livecode
JIGSAW PUZZLE 2d-video is now updated to v_105 • Improved speed with videos a little bit. • The width-menu computes now all sizes from 20 up to 144 that leave either width or height (or both) of the image/video unchanged (no cropping). • A video can now be paused. Then it can be continued (when

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Quentin Long via use-livecode
> From: Richard Gaskin >> J. Landman Gay wrote: >> >> On December 27, 2018 2:36:16 PM Richard Gaskin via use-livecode >> wrote: >>> >>> Sounds like one more reason to allow stack properties as YAML >>> frontmatter in the file. Ever since I suggested that a couple >>> years back, the range of

Re: Websockets Problem on LiveCode

2018-12-28 Thread Tom Glod via use-livecode
> > Hey Todd, did you get this figured out? > > ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Sannyasin Brahmanathaswami via use-livecode
Trevor wrote: set the behavior of stack "MyStack" to the long id of stack "MyBehavior" BR: ahha... Simple enough to do; and then it you wanted to undo the "binding", you do it in the script editor itself. Trevor: " Perhaps the SE could use an update that shows the

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Sannyasin Brahmanathaswami via use-livecode
I don't mind hijacked my thread. It just that I see it as important innovation. To make sure such a good idea that it was "hidden" BR  Richard wrote: YAML is a notation for expressing name-value pairs in a format optimized for human writing, something we LC fans like in a language. It

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Bob Sneidar via use-livecode
I think most would agree with you on this Richard. It's like stack files are evolving into flat files. Soon we won't need to write code, we will just think it. It's kind of like a Star Trek episode, only for software developers. :-) Bob S > On Dec 28, 2018, at 09:49 , Richard Gaskin via

Re: Find In the IDE

2018-12-28 Thread Bob Sneidar via use-livecode
BTW if the display level is set to one less than the object resides at, it will find it but not display it. Might be a good update to expand the root "node" when it finds anything. Bob S > On Dec 28, 2018, at 10:05 , Geoff Canyon via use-livecode > wrote: > > (self-promotion alert) > >

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Trevor DeVore via use-livecode
On Thu, Dec 27, 2018 at 10:43 PM Sannyasin Brahmanathaswami via use-livecode wrote: > ... > > BUT: " A new developer may be more likely to see the chained behavior if > the behaviors are explicitly assigned in code vs having to use vs going to > the IDE to look up what the behavior chain is."

Re: Find In the IDE

2018-12-28 Thread Geoff Canyon via use-livecode
(self-promotion alert) Navigator's popup menu has a find function that can: do a text search in all scripts of selected objects, in all behaviors of selected objects -- including chained behaviors, in all enclosed controls: select a card and it will search all controls on that card,

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Richard Gaskin via use-livecode
J. Landman Gay wrote: > On December 27, 2018 8:54:29 PM Richard Gaskin via use-livecode > wrote: >> >> At your prompting I started to open an enhancement request for this, >> but not long into it I hit on why they probably haven't done this >> yet: >> >> By what means would be indicate which

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Richard Gaskin via use-livecode
Sannyasin Brahmanathaswami wrote: > @ y'all about revision control of binary stacks and YAML properities > (front matter) for text only scripts.. cool musings! but they might > want/need different threads? One of your team members requested extending the format of script-only stacks

Find In the IDE

2018-12-28 Thread Sannyasin Brahmanathaswami via use-livecode
I tried, in the IDE, to use the dialog Find and Replace Find: "toggleImgSize" In: All stack files in a folder Folder: _Siva-Siva-app Script (checked) # I know for sure it is at least in one *.livecodescript file… # Hopefully to see where else it is

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Alex Tweedly via use-livecode
In some of my projects, I have a handler in my stack script to help with this. It requires one extra click (to step out of th handler) - but I often find it's worth that for the other advantages. The minimalist version is on mybreakpoint    breakpoint end mybreakpoint while the fancier

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread J. Landman Gay via use-livecode
On December 27, 2018 8:54:29 PM Richard Gaskin via use-livecode wrote: At your prompting I started to open an enhancement request for this, but not long into it I hit on why they probably haven't done this yet: By what means would be indicate which properties we want saved there and which

Re: JIGSAW PUZZLE 2d-video v_100

2018-12-28 Thread Bob Sneidar via use-livecode
NVM I see you have to click the Jigsaw button to get the puzzle to redraw. And you may as well exclude 16 point pieces they are almost indistinguishable. Bob S > On Dec 28, 2018, at 07:52 , Bob Sneidar via use-livecode > wrote: > > Fun and interesting. But I cannot get another movie (Joan

Re: JIGSAW PUZZLE 2d-video v_100

2018-12-28 Thread Bob Sneidar via use-livecode
Fun and interesting. But I cannot get another movie (Joan of Arc) to load. Playing around with other settings do not seem to have an effect either. The original puzzle works great though. Bob S > On Dec 27, 2018, at 20:10 , hh via use-livecode > wrote: > > JigsawPuzzle2d-video is a HTML5

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Bob Sneidar via use-livecode
I see nested behaviors and all behaviors in fact, like I see constants in relation to variables. Behaviors are or ought to be a structural thing fixed at startup, much like constants are declared at compile time and fixed. If a set of handlers needs to be declared, then that is what start using

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Bob Sneidar via use-livecode
That's an interesting idea! Bob S > On Dec 27, 2018, at 20:13 , Brian Milby via use-livecode > wrote: > > I’ve briefly looked at the load/save code and think that it would be doable > to extend the export code from just covering widgets to covering entire stack > files. That would yield

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Sannyasin Brahmanathaswami via use-livecode
Ha! Fixed... I have using Navigator for so long I have hardly touched the PB. And on the big monitor the tools tip are small, be yes, they are there! BR On 12/28/18, 1:29 AM, "use-livecode on behalf of Niggemann, Bernd via use-livecode" wrote: "too obscure"... in Project Browser

Re: Musings on Architect, MVC, Nested Behaviors

2018-12-28 Thread Niggemann, Bernd via use-livecode
Sannyasin Brahmanathaswami wrote > BUT: " A new developer may be more likely to see the chained behavior if the >behaviors are explicitly assigned in code vs having to use vs going to the IDE >to look up what the behavior chain is." > >That is a problem using "Navigator" (does not show nested