Re: setting a "locked field" to get mouseUp

2015-01-04 Thread Richmond
On 03/01/15 23:22, Peter M. Brigham wrote: On Jan 3, 2015, at 3:14 PM, Richmond wrote: On 03/01/15 21:45, Dr. Hawkins wrote: I've found references to "locked fields" getting mouseUp, but not a definition. I would assume locktext, possibly in conjunction with traversal on, but am not getting an

Re: Whiteboard animations

2015-01-04 Thread Richmond
On 04/01/15 02:32, tbodine wrote: Hi Bill. There's no native import support for SVG right now. I know the graphics engine was overhauled using the Skia library, which should add a lot of capabilities like SVG, but I don't see any access to SVG import from the IDE. The LC roadmap only says: "Vec

Re: Whiteboard animations

2015-01-04 Thread Shawn Blc
It'd be nice if the RunRev team would post a weekly blog upload on what exactly is taking place behind the scenes and perhaps every month give us a little taste of features that will be in the upcoming LC8 release. On Sun, Jan 4, 2015 at 3:02 AM, Richmond wrote: > On 04/01/15 02:32, tbodine wrot

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Dr. Hawkins
On Sat, Jan 3, 2015 at 6:04 PM, Peter Haworth wrote: > Nothing I can do about the latter but any help in finding a dual license > template would be most welcome. Plus, how can I ensure people agree to the > license terms since they can easily disable whatever code I put in there to > display it?

Re: Moving a Group Smoothly

2015-01-04 Thread Roger Guay
I registered a bug report about a month ago about this method (lock/unlock with visual dissolve) causing random screen flashing in Yosemite. At the time, I did not get much confirmation from others. I’m still very much wrestling with this problem which appeared suddenly when I upgraded to Yosemi

Re: replaceText problem

2015-01-04 Thread Dr. Hawkins
On Sat, Jan 3, 2015 at 2:01 PM, Peter M. Brigham wrote: > For me, even plain regex is like a trip to the dentist. With no novocaine. > I understand that it's powerful, but I have rarely come across something I > couldn't do in livecode less painfully. > Plain regex is wonderful! :) Quite seri

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Peter Haworth
Thanks for the input Bill. I think it would be hard for me to sell lcStackBrowser on the basis of video/screenshots, although I do have some old videos of the product in use. It has so many features and functionality that the video would be too long or I'd have to come up with fairly large number

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Peter Haworth
Thanks for this explanation, just demonstrates how little I know about licensing in the open source world! I get what you're saying about lcStackbrowser - it doesn't persist beyond the development stage and none of its code is added to whatever executable is created using it. But I still need som

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Bernard Devlin
Hi Peter, I've never looked at your product (but following this discussion, I think I must). I'm confused though by this statement: Can't the Community Edition users just use the paid version of your tool? Isn't the only difference with LC "editions" that the CE cannot create password-protected

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Bernard Devlin
by "confused though by this statement: " I mean "confused by the statement below quoted by me". On Sun, Jan 4, 2015 at 5:11 PM, Bernard Devlin wrote: > Hi Peter, > > I've never looked at your product (but following this discussion, I think > I must). > > I'm confused though by this statement: C

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Peter Haworth
Hi Bernard, Community Edition can't load password protected stacks because that would break the rules of open source, so the password encryption/decryption routines are not compiled into the Community Edition. I believe that is the only functional difference between the Community Edition and the C

clickWord?

2015-01-04 Thread Richmond
Humpf . . . There I with a locked scrolling list field and I want to click on the word "glaikit" in line 3, and if I use 'clickText' I get the whole sentence "He's a muckle glaikit gowk", and if I use 'clickChunk' I get this 'char 24 to 49 of field 1' which is no good either. Now, if Livecod

[OT] Old book

2015-01-04 Thread Richmond
Possibly interesting: http://files.eric.ed.gov/fulltext/ED387951.pdf "Hypermedia in the Classroom" Richmond. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription pre

Re: clickWord?

2015-01-04 Thread Paul Dupuis
On 1/4/2015 12:45 PM, Richmond wrote: > Humpf . . . > > There I with a locked scrolling list field and I want to click on the > word "glaikit" in line > 3, and if I use 'clickText' I get the whole sentence "He's a muckle > glaikit gowk", > and if I use 'clickChunk' I get this 'char 24 to 49 of fiel

Re: clickWord?

2015-01-04 Thread dunbarx
Richmond. Would the workaround be something like: on mouseup put the number of words of char 1 to word 4 of the clickchunk of me into fld 2 end mouseup Craig -Original Message- From: Richmond To: use >> How to use LiveCode Sent: Sun, Jan 4, 2015 12:46 pm Subject: clickWord?

Re: clickWord?

2015-01-04 Thread Mike Bonner
if listbehavior is toggled off, the clicktext returns the word clicked for me, sans punctuation. Of course, this means there is no hilite, so you'd have to "workaround" that problem and use the clickchunk to hilite it if needed. On Sun, Jan 4, 2015 at 10:45 AM, Richmond wrote: > Humpf . . . > >

Re: clickWord?

2015-01-04 Thread Richmond
On 04/01/15 20:03, Mike Bonner wrote: if listbehavior is toggled off, the clicktext returns the word clicked for me, sans punctuation. Of course, this means there is no hilite, so you'd have to "workaround" that problem and use the clickchunk to hilite it if needed. Indeed it does :) Thank yo

Re: clickWord?

2015-01-04 Thread Richmond
On 04/01/15 20:03, dunb...@aol.com wrote: Richmond. Would the workaround be something like: on mouseup put the number of words of char 1 to word 4 of the clickchunk of me into fld 2 end mouseup Craig It turns out that if one clicks "listBehaviour" (or, possibly "listBehavior" LOL)

RE: clickWord?

2015-01-04 Thread John Dixon
The 'mouseText' will get the word under the mouse pointer... well, if 'listbehavior' is turned off..:-) > Date: Sun, 4 Jan 2015 21:22:42 +0200 > From: richmondmathew...@gmail.com > To: use-livecode@lists.runrev.com > Subject: Re: clickWord? > > On 04/01/15 20:03, dunb...@aol.com wrote: > > Richm

Re: clickWord?

2015-01-04 Thread Richmond
On 04/01/15 21:34, John Dixon wrote: The 'mouseText' will get the word under the mouse pointer... well, if 'listbehavior' is turned off..:-) Thanks: well that looks as if 'mouseText' and 'clickLine' are functional equivalents. Richmond. Date: Sun, 4 Jan 2015 21:22:42 +0200 From: richmon

Re: replaceText problem

2015-01-04 Thread Peter Haworth
Hi Kay, To be honest, I've been through so many iterations of this that I don't remember for sure if the command I cited in my post was exactly what I had in the script at the time. I'd be almost certain that I had a "put" in there since I knew it was a function, but it's very possible that the ex

Re: clickWord?

2015-01-04 Thread Peter M. Brigham
On Jan 4, 2015, at 2:36 PM, Richmond wrote: > On 04/01/15 21:34, John Dixon wrote: >> The 'mouseText' will get the word under the mouse pointer... well, if >> 'listbehavior' is turned off..:-) > > Thanks: well that looks as if 'mouseText' and 'clickLine' are functional > equivalents. If listBe

group id exists but yet not . . .

2015-01-04 Thread Dr. Hawkins
put exists(group id 1004 of group id of card id 1016 of stack "nv") && exists(group id 1004 of stack "nv") yields true false Huh? Isn't the id and stack unique and sufficient? -- Dr. Richard E. Hawkins, Esq. (702) 508-8462 ___ use-livecode ma

Re: group id exists but yet not . . .

2015-01-04 Thread Peter M. Brigham
On Jan 4, 2015, at 5:11 PM, Dr. Hawkins wrote: > put exists(group id 1004 of group id of card id 1016 of stack "nv") && > exists(group id 1004 of stack "nv") > > yields > > true false > > Huh? > > Isn't the id and stack unique and sufficient? Doing the equivalent on a control in one of

Re: group id exists but yet not . . .

2015-01-04 Thread Peter M. Brigham
On Jan 4, 2015, at 5:11 PM, Dr. Hawkins wrote: > put exists(group id 1004 of group id of card id 1016 of stack "nv") && > exists(group id 1004 of stack "nv") > > yields > > true false > > Huh? > > Isn't the id and stack unique and sufficient? Just occurred to me, if the group is not pl

Re: group id exists but yet not . . .

2015-01-04 Thread Scott Rossi
Is the group on the current (visible) card? If not, then exists will be false. Otherwise, the id is enough when the group is present on the current card. Regards, Scott Rossi Creative Director Tactile Media, UX/UI Design On 1/4/15, 2:11 PM, "Dr. Hawkins" wrote: >put exists(group id 1004 o

Re: group id exists but yet not . . .

2015-01-04 Thread Scott Rossi
OK, I¹m mistaken, exists should find the group even when not on the current card. When the group reference is combined with the stack reference, it works. It also works as the following, which makes sense. put exists(grp id 1006 of this stack) Regards, Scott Rossi Creative Director Tactile

put URL error

2015-01-04 Thread Peter Haworth
As part of checking for updates in my products, I go get a file that has the latest version of the product and compares it to the installed version, pretty common logic. The sequence of commands is: put URL (the cVersionFile of me) into tVersionInfo if the result is not empty then return the r

Re: put URL error

2015-01-04 Thread Klaus major-k
Hi Peter, > Am 05.01.2015 um 00:19 schrieb Peter Haworth : > > As part of checking for updates in my products, I go get a file that has > the latest version of the product and compares it to the installed version, > pretty common logic. > > The sequence of commands is: > > put URL (the cVersion

Re: put URL error

2015-01-04 Thread Alex Tweedly
I think it should be "http://www.lcsql.com/..."; i.e. note the // after the http: No idea why that would matter, or why it would matter on Win and not on Mac, or ... but give it a try :-) -- Alex On 04/01/2015 23:19, Peter Haworth wrote: As part of checking for updates in my products, I go

Re: group id exists but yet not . . .

2015-01-04 Thread Dr. Hawkins
On Sun, Jan 4, 2015 at 2:41 PM, Peter M. Brigham wrote: > Just occurred to me, if the group is not placed on the card the handler is > called from, this might be the problem. > Same card? I'm not even calling from the same stack :) I have a routine to assemble properties, phrases, and the like

Re: Moving a Group Smoothly

2015-01-04 Thread Roger Guay
One other thing: Try "move group "SettingsDialog" to 291,351 in 50 milliseconds”. You don’t need the from and you do need the duration time Cheers, Roger > On Jan 3, 2015, at 9:06 PM, Brahmanathaswami wrote: > > This has probably been asked and answered 100 times. > > Because of the iOS

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Kay C Lan
On Mon, Jan 5, 2015 at 1:18 AM, Peter Haworth wrote: > > Community Edition can't load password protected stacks because that would > break the rules of open source, That is not my understanding of the situation. There is no reason why an OSS liscensed app can't interact with Closed Source Softw

Re: group id exists but yet not . . .

2015-01-04 Thread J. Landman Gay
On 1/4/2015 5:38 PM, Dr. Hawkins wrote: The background token will give what you want no matter what, but if the >group is not placed on the current card, "group xxx" will not. > I've always been able to access them before. It's been that way since I can remember. If the group is placed on the

Re: put URL error

2015-01-04 Thread Peter Haworth
It's a typo sorry, the // is there. On Jan 4, 2015 3:27 PM, "Klaus major-k" wrote: > Hi Peter, > > > Am 05.01.2015 um 00:19 schrieb Peter Haworth : > > > > As part of checking for updates in my products, I go get a file that has > > the latest version of the product and compares it to the install

Re: replaceText problem

2015-01-04 Thread Kay C Lan
On Mon, Jan 5, 2015 at 4:25 AM, Peter Haworth wrote: > > Back on the need for a put or a get with a function, it's interesting to > note that you don't have to do that in the message box. Executing - > replaceText("abc","c","z") - in the message box puts "abz" into the message > box result area

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread J. Landman Gay
Just to be clear, it was the developers who (rightfully) requested that the password code be removed. We couldn't sell secure products or create them for our clients if the world knew how to bypass code protection. On January 4, 2015 6:10:11 PM CST, Kay C Lan wrote: > >So nothing to do with th

Re: group id exists but yet not . . .

2015-01-04 Thread Dr. Hawkins
On Sun, Jan 4, 2015 at 4:14 PM, J. Landman Gay wrote: > It's been that way since I can remember. If the group is placed on the > current card, you can refer to it as "group", otherwise you need to use > "background". This applies even to closed stacks, so maybe when it worked > for you before, th

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Dr. Hawkins
On Sun, Jan 4, 2015 at 8:58 AM, Peter Haworth wrote: > > But I still need some sort of protection against someone simply copying > code out of it and inserting it into their own products, that's where it > gets hazy for me. If my license is "open source", does that mean they > would have to rele

Re: put URL error

2015-01-04 Thread Kay C Lan
On Mon, Jan 5, 2015 at 7:19 AM, Peter Haworth wrote: > > I put the same URL into my browser on the Windows 8 machine and saw the > contents of the file displayed in the browser. > > What happens if instead of using your Web Browser you use an LC Browser instance; i.e. can you display the page in

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Peter Haworth
On Sun, Jan 4, 2015 at 5:21 PM, Dr. Hawkins wrote: > Once you've sold it, any open source license lets that person redistribute > freely. > And that's the crux of the matter. No password protection = no hidden license key checking so I need a license that specifically prevents a user from givin

Re: put URL error

2015-01-04 Thread Peter Haworth
I've never used LC browsers but I'll give it a try. Pete lcSQL Software Home of lcStackBrowser and SQLiteAdmin On Sun, Jan 4, 2015 at 5:30 PM, Kay C Lan wrote: > On Mon, Jan 5, 2015 at 7:19

[ANN] colorPiquer

2015-01-04 Thread Roger Guay
colorPiquer is a utility stack I developed to collect and manage the color palettes of all my projects in one place. I’ve got it to the point where I’m finding it to be quite useful, and thought a few of you might also. It is free to use as you wish.

Re: Project Browser vs App Browser (was "script scope variables inexplicably becoming unset")

2015-01-04 Thread Mark Wieder
Richard- Sunday, January 4, 2015, 5:21:36 PM, you wrote: > Once you've sold it, any open source license lets that person redistribute > freely. While I should know better than to argue legal matters with a lawyer... You're wrong about that. The situation you're describing here and in your paper

Re: Standalone on Raspberry Pi

2015-01-04 Thread Fraser Gordon
On 03/01/2015 23:46, Peter W A Wood wrote: > Hi Kenji > > As I understand the Linux option in the Standalone Settings creates a > standalone for an Intel-based computer. At the moment, there isn’t an option > to create a standalone for an ARM-based computer. What version and edition are you usi