Re: Newbie question

2014-04-30 Thread Colin Holgate
Part is a synonym of control, no doubt for compatibility with HyperCard reasons. On Apr 30, 2014, at 11:49 AM, Klaus major-k wrote: > >I'm stumped, too! What is a PART in Livecode? 8-) ___ use-livecode mailing list use-livecode@lists.runrev.com Pleas

Re: Newbie question

2014-04-30 Thread Klaus major-k
Hi Alain, Am 30.04.2014 um 13:41 schrieb Alain Farmer : > Thanks for your response, Klaus. > I figured it out. Fields and buttons don't have the cantDelete property. > Groups do have the cantDelete property. > Groups, Fields, Buttons .. eg controls ... are aka PARTS too. AH! part = control! Go

Re: Newbie question

2014-04-30 Thread Alain Farmer
Exactly, Jacque. Thank you kindly for responding. Btw I am creating some experimentation stacks, that I will share with y'all soon. Kind regards, Alain On Wednesday, April 30, 2014 1:17:44 AM, J. Landman Gay wrote: On 4/29/14, 11:28 PM, Alain Farmer wrote: > I am stumped. Why the contradict

Re: Newbie question

2014-04-30 Thread Alain Farmer
Thanks for your response, Klaus. I figured it out. Fields and buttons don't have the cantDelete property. Groups do have the cantDelete property. Groups, Fields, Buttons .. eg controls ... are aka PARTS too. Btw I've just completed a stack for experimenting with XMLlib; that I will share soon. O

Re: Newbie question

2014-04-30 Thread Klaus major-k
Hi Alain, Am 30.04.2014 um 06:28 schrieb Alain Farmer : > I am stumped. Why the contradiction below ? > > on mouseUp >answer the cantDelete of part 1 -- answers true or false >repeat with x = 1 to the number of parts > get the cantDelete of part x -- error! object does not have thi

Re: Newbie question

2014-04-29 Thread J. Landman Gay
On 4/29/14, 11:28 PM, Alain Farmer wrote: I am stumped. Why the contradiction below ? on mouseUp answer the cantDelete of part 1 -- answers true or false repeat with x = 1 to the number of parts get the cantDelete of part x -- error! object does not have this property end rep

Newbie question

2014-04-29 Thread Alain Farmer
I am stumped. Why the contradiction below ? on mouseUp    answer the cantDelete of part 1 -- answers true or false    repeat with x = 1 to the number of parts   get the cantDelete of part x -- error! object does not have this property    end repeat end mouseUp

Re: another newbie question

2014-04-04 Thread Peter Haworth
Hi Larry, Right click on the stack window, not on a control, and you'll see two options, "Send Card Message" and "Send Stack Message". They both expand to show a list of the handlers in the card and stack respectively and clicking on a handler sends a message to it. Incidentally, I don;t think yo

Re: another newbie question

2014-04-04 Thread Bob Sneidar
Yet another is to have a test button on your card. This way you have the opportunity of setting up the environment before calling your handler. Bob On Apr 4, 2014, at 24:21 , Mark Schonewille wrote: > Hi Larry, > > There are several ways to do this. You can click on the green arrow at the

Re: another newbie question

2014-04-04 Thread dunbarx
ginal Message- From: larry To: use-livecode Sent: Fri, Apr 4, 2014 2:59 am Subject: another newbie question If I make a change to my stack script (I only have 1 stack) is there a way to test the code in the script without having to close the IDE and then restart LC to see if my stack scr

Re: another newbie question

2014-04-04 Thread Mark Schonewille
Hi Larry, There are several ways to do this. You can click on the green arrow at the top of the script editor window and choose the handler to run, after which you click on OK. In most cases, you can also type the handler name in the message box and press return. Another way is to right-clic

another newbie question

2014-04-04 Thread larry
If I make a change to my stack script (I only have 1 stack) is there a way to test the code in the script without having to close the IDE and then restart LC to see if my stack script is running properly - such as something within the openStack command? Thank you ___

Re: newbie question about smartphone apps

2011-09-06 Thread Gerry
> > > Apparently it's possible to make iPhone and Android apps with LC. > Apparently, there's a product called LiveCode Mobile, rather similar to LC, > for this purpose. Do I have it right so far? > Android and iOS development is possible with add-on licenses. It's the same app, just enabled for o

Re: newbie question about smartphone apps

2011-09-05 Thread Joe Lewis Wilkins
Hi Tim, Though anything but a newbie, I fell behind - way behind some time back, and am just now getting interested in movie some of my LC apps so as to be accessible on iPads; I think following this may be a good first step for both of us: Hopefully mo

newbie question about smartphone apps

2011-09-05 Thread Timothy Miller
Sorry to disappoint. No OT rants about education today. Nor any inquiries about strange LC behavior arising entirely from my own incompetence. I have the vague notion that LC developers are writing smartphone apps. Until ten minutes ago, it never occurred to me that I would attempt such a thing.

Re: nother newbie question this time re foundChunk

2011-03-23 Thread Timothy Miller
Tricky! I never would have thought of that. Thanks a bunch. Tim On Mar 23, 2011, at 2:51 AM, Mike Bonner wrote: > If you know the number of words in the field: > put the number of words in field "narrative" into tWords > > and you know the location of the found word: > put the number

Re: nother newbie question this time re foundChunk

2011-03-23 Thread Mike Bonner
If you know the number of words in the field: put the number of words in field "narrative" into tWords and you know the location of the found word: put the number of words in (char 1 to (word 4 of tfound)) in field "narrative" into tFoundWord -- didn't try it, check syntax then you shou

nother newbie question this time re foundChunk

2011-03-22 Thread Timothy Miller
Hi again. I'm working on an indexing script. The relevant portion of my script so far: (it works thanks to you guys) repeat until the shiftKey is down set cursor to busy put the number of this card into firstNum find tTempSearch in field "narrative" put the foundChunk in