Re: please help!!

2014-06-09 Thread Geoff Canyon
I created a test stack. I created six buttons and grouped them. I ran the following in a seventh button. It never failed. I'm using 6.5.2. Somewhere along the way the more specific childControlIDs was added. I didn't know if it is available in 6.1.1 so I didn't use it. on mouseUp repeat 1000

Re: please help!!

2014-06-08 Thread J. Landman Gay
On 6/8/2014, 4:29 PM, la...@significantplanet.org wrote: Maybe you'll give me a rain check to look at one of my stacks in the future? Sure, provided it's a weekend when most of my clients are ignoring me, and that you've exhausted all options and are once again on the brink of suicide. ;) -

Re: please help!!

2014-06-08 Thread larry
n check to look at one of my stacks in the future? Thank you again, Larry - Original Message - From: "J. Landman Gay" To: "How to use LiveCode" Sent: Sunday, June 08, 2014 12:00 AM Subject: Re: please help!! On 6/8/2014, 12:41 AM, la...@significantplanet.org wr

Re: please help!!

2014-06-08 Thread Earthednet-wp
I've had similar problems using the snapshot command, where the engine seems to get behind. My latest problem was my own fault, though where I had locked the screen and it couldn't update. What fooled me was that when I put in a breakpoint, the breakpoint unlocked the screen and it looked as I e

Re: please help!!

2014-06-07 Thread J. Landman Gay
On 6/8/2014, 12:41 AM, la...@significantplanet.org wrote: Right now I am too frustrated and tired to keep going. Yeah, been there. It's normal but it's really frustrating. Learning a new language is hard, no matter which one you choose. Send me your stack if you want and I can probably tell

Re: please help!!

2014-06-07 Thread larry
tired to keep going. Thank you all. - Original Message - From: "J. Landman Gay" To: "How to use LiveCode" Sent: Saturday, June 07, 2014 11:24 PM Subject: Re: please help!! On 6/7/2014, 11:55 PM, J. Landman Gay wrote: What happens if you omit the rowNum va

Re: please help!!

2014-06-07 Thread J. Landman Gay
On 6/7/2014, 11:55 PM, J. Landman Gay wrote: What happens if you omit the rowNum variable in the repeat loop: repeat with x = 1 to rowNum put ("tile1" & x) into thisButton set the opaque of btn thisButton to (the label of btn thisButton = "?") end repeat Which obviously I didn't. I meant t

Re: please help!!

2014-06-07 Thread J. Landman Gay
I know you've found a workaround now, but I'm curious: Where does "rownum" get its value? Do the button names match their labels exactly? Your handler references the buttons by name ("button thisButton") but then looks at their labels. If they don't match, the handler won't be working with the

Re: please help!!

2014-06-07 Thread As_Simon
larry wrote > If I debug and step through it, it always seems to work. This, it seems, always points toward the engine is not keeping up. A "wait 1 millisec" before "if the label of button thisButton = "?" then" tends to clear it up. (maybe somewhere else but in that area) Simon -- View this

Re: please help!!

2014-06-07 Thread larry
age - From: "Paul Hibbert" To: "How to use LiveCode" Sent: Saturday, June 07, 2014 9:43 PM Subject: Re: please help!! Larry, it seems to work fine here, I tried LC 6.1.3 as I don't keep RC versions, but I'm also on a Mac, however, at least it proves the script

Re: please help!!

2014-06-07 Thread Mike Bonner
; > On 2014-06-07, at 8:39 PM, la...@significantplanet.org wrote: > > > Thank you Randy, but that's not the case here. > > After I got your email, I triple checked. It's something else going on. > > > > - Original Message - From: "Randy Hengs

Re: please help!!

2014-06-07 Thread dunbarx
: How to use LiveCode Sent: Sat, Jun 7, 2014 11:44 pm Subject: Re: please help!! Larry, it seems to work fine here, I tried LC 6.1.3 as I don't keep RC versions, but I'm also on a Mac, however, at least it proves the script sample is fine. Just a thought, could the label of butto

Re: please help!!

2014-06-07 Thread Paul Hibbert
hing else going on. > > - Original Message - From: "Randy Hengst" > To: "How to use LiveCode" > Sent: Saturday, June 07, 2014 9:21 PM > Subject: Re: please help!! > > >> When I've had similar problems I had multiple buttons with the sam

Re: please help!!

2014-06-07 Thread larry
Thank you Randy, but that's not the case here. After I got your email, I triple checked. It's something else going on. - Original Message - From: "Randy Hengst" To: "How to use LiveCode" Sent: Saturday, June 07, 2014 9:21 PM Subject: Re: please h

Re: please help!!

2014-06-07 Thread Randy Hengst
When I've had similar problems I had multiple buttons with the same name. > On Jun 7, 2014, at 9:41 PM, la...@significantplanet.org wrote: > > I am using 6.1.1 (rc 4) on XP > > I have spent HOURS trying to do something that seems fairly simple. > > I have a column of buttons labeled "tile11",

Re: please help!

2014-04-03 Thread dunbarx
Hi. "filter" and "matchtext" take a bit of practice. It seems you have more stuff in your filterPattern than you need, but I could be mistaken, As a test, make a field with the following in it: aa bb cc dd Now in a button: on mouseUp get fld 1 filter it without "bb" --also try "filte

Re: please help!

2014-04-03 Thread Mark Schonewille
Hi Larry, First of all, when you write "it didn't work", you should really write exactly why it didn't work and what you got instead of the expected result. E.g. did nothing happen, did you get an error message --if you got an error message, then what was the exact text of the error message--

Re: please help!

2014-04-03 Thread Klaus major-k
Hi Larry, Am 03.04.2014 um 21:26 schrieb la...@significantplanet.org: > I've tried 20 different ways of syntax for a filter and still cannot make it > work. > > I'm trying to filter the lines of a field that contains a specific string, > say "d14" somewhere within the field. > > Here is the l