[ATT] Derek Henderson. South Africa

2015-01-10 Thread Nigel Soden
Hi FlexibleLearning - I live in South Africa and been using LiveCode for just under 2 years. If your having problems getting hold of Derek you can e-mail me his telephone number I’ll be able to assist him. My e-mail address is nig...@amglighthouse.co.za Nige

Re: 64 bitness

2015-01-10 Thread Trevor DeVore
On Friday, January 9, 2015, Colin Holgate wrote: > Before Christmas Ben mentioned that there would be iOS 64 bit abilities in > LiveCode. It’s worth noting that Sheep Herder was just updated in the app > store, with 64 bit support. > Looking at the commits in Github, it appears that 6.7.2 rc-1 i

How buggy is 7.0.1?

2015-01-10 Thread Graham Samuel
I’ve been kind of following “Can’t Move Backward" conversation, and I have to say that the app I’m working on seems to be fine in 7.0.1. I have generated standalones for both Mac and PC that run well and don’t crash. I have found the odd bug, but I really mean ‘odd’ (minus infinity is a number,

[beginner] x,y coordinates in LiveCode

2015-01-10 Thread Shawn Blc
I'm trying to find the x,y coordinates with a mouse hover to find the location of buttons on my card. Perhaps a little stack or something. Trying to create a menu and need to the x,y coordinates for several buttons. ___ use-livecode mailing list use-liv

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread Roger Eller
put the loc of btn "myButton" On Jan 10, 2015 10:48 AM, "Shawn Blc" wrote: > I'm trying to find the x,y coordinates with a mouse hover to find the > location of buttons on my card. > > Perhaps a little stack or something. Trying to create a menu and need to > the x,y coordinates for several but

Re: How buggy is 7.0.1?

2015-01-10 Thread Earthednet-wp
Graham, I've been using 7.0.1 for several months. I have an app with coupla thousand lines of code and about a dozen substacks. I have found it pretty good, rarely crashing unexpectedly. However, I do wish I'd stayed with the 6 series. I experienced one crash that comes and goes (only Allah and

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread Colin Holgate
A card script like this could be quicker: on mouseenter put the loc of the target end mouseenter Then you could point at each of the buttons and fields. > On Jan 10, 2015, at 10:54 AM, Roger Eller wrote: > > put the loc of btn "myButton" > On Jan 10, 2015 10:48 AM, "Shawn Blc" wrote: >

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread Peter M. Brigham
On Jan 10, 2015, at 10:47 AM, Shawn Blc wrote: > I'm trying to find the x,y coordinates with a mouse hover to find the > location of buttons on my card. > > Perhaps a little stack or something. Trying to create a menu and need to > the x,y coordinates for several buttons. What are you trying to

Re: How buggy is 7.0.1?

2015-01-10 Thread Trevor DeVore
On Sat, Jan 10, 2015 at 8:06 AM, Graham Samuel wrote: > I’ve been kind of following “Can’t Move Backward" conversation, and I have > to say that the app I’m working on seems to be fine in 7.0.1. I have > generated standalones for both Mac and PC that run well and don’t crash. I > have found the o

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread dunbarx
Shawn: Do you need the "x,y" if all you are trying to do is find the locs of controls? Perhaps in the card script: on mouseWithin --or "mouseEnter"? put the name of the target && the loc of the target end mouseWithin But there are other ways as well, using the "within" operator with a "mous

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread Colin Holgate
You may notice by now the similarity between your suggestion and what I suggested. One slight difference is that I tested mine first, and discovered that mousewithin doesn’t work as a card script, at least not on its own. Reading the dictionary it seems that a mousewithin handler has to be insid

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread Richard Gaskin
Shawn Bl wrote: I'm trying to find the x,y coordinates with a mouse hover to find the location of buttons on my card. Perhaps a little stack or something. Trying to create a menu and need to the x,y coordinates for several buttons. Like most languages, LiveCode provides a way to express the

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread Richard Gaskin
Colin Holgate wrote: > I suggested. One slight difference is that I tested mine first, > and discovered that mousewithin doesn’t work as a card script, > at least not on its own. Reading the dictionary it seems that > a mousewithin handler has to be inside the object itself. Coordinates are a goo

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread dunbarx
Colin. Hi. Long time... I do not get all the mails from the use-list. And never my own, though I used to. But anyway, this works for me in the card script. Why wouldn't it? Craig -Original Message- From: Colin Holgate To: How to use LiveCode Sent: Sat, Jan 10, 2015 12:48 pm Su

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread dunbarx
Colin. What did you mean by "testing"? I take it back. I had both a "mouseWithin" and a "mouseEnter" handler in the same script, just fooling around. When I comment out the "mouseEnter", the "mouseWithin" is not sent. And this is spelled out in the dictionary. Well what do you know? Craig

opening a stack without changing current stack order?

2015-01-10 Thread Dr. Hawkins
I need the formattedHeight and similar properties which only work on currently open cards. The processing, however, should be in the background and invisible to the user. I used to use push card open invisible card this of stack that pop card But now that I've gone to palettes instead of groups

Re: opening a stack without changing current stack order?

2015-01-10 Thread J. Landman Gay
On 1/10/2015 12:20 PM, Dr. Hawkins wrote: I need the formattedHeight and similar properties which only work on currently open cards. The processing, however, should be in the background and invisible to the user. I used to use push card open invisible card this of stack that pop card But now

Re: opening a stack without changing current stack order?

2015-01-10 Thread Peter Haworth
On Sat, Jan 10, 2015 at 11:18 AM, J. Landman Gay wrote: > When you refer to a stack that way, it is placed in RAM but is not > officially "opened" per se, there are no messages sent to it, and it is not > in the message hierarchy. Didn't know that, useful. Do such stacks show up in things like

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread Shawn Blc
Thanks. Colin I used your idea, then Richards. Both work! Here's what I ended up with. *on* mouseMove x,y *put* "Object: "& the name of the target && the loc of the target &\ cr&"Mouse: "& x,y into fld "lblLocation" *end* mouseMove I'm doing not anything ground-breaking here. Jus

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread Shawn Blc
Using the code for my menu it looks good, but I can easily confuse LC by clicking fast, sometimes two buttons will move, other times three. Most of the time all four buttons will drop (correctly), but like I said, by clicking fast I can easily confuse LC. On Sat, Jan 10, 2015 at 2:02 PM, Shawn Bl

Re: [beginner] x,y coordinates in LiveCode

2015-01-10 Thread Colin Holgate
Look at doing the move without messages. *move* btn "btnA" to 95,102 without messages etc. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http:/

Re: 64 bitness

2015-01-10 Thread Phil Davis
Is there any possibility there will be a 64-bit server version of 6.7.2, or is the 64-bitness for building iOS apps only? A 64-bit server version would be wonderful for Dreamhost users like myself (assuming it would run at speeds typical to 6.x, and not at 7.x speeds). Thanks - Phil Davis On

Re: 64 bitness

2015-01-10 Thread Mark Wieder
Phil- Saturday, January 10, 2015, 12:30:41 PM, you wrote: > Is there any possibility there will be a 64-bit server version of 6.7.2, > or is the 64-bitness for building iOS apps only? A 64-bit server version > would be wonderful for Dreamhost users like myself (assuming it would > run at speeds t

Re: 64 bitness

2015-01-10 Thread Phil Davis
Hi Mark, Since DreamHost upgraded their servers to require 64-bit, I'm now using LC 7.0.1 64-bit in my DH accounts. It does work, but it adds *at least* a couple of seconds to every request's response time over the old 32-bit 6.x. Those speeds neutralize our LC server app bragging rights! But

Re: 64 bitness

2015-01-10 Thread Richard Gaskin
Mark Wieder wrote: Phil- Saturday, January 10, 2015, 12:30:41 PM, you wrote: Is there any possibility there will be a 64-bit server version of 6.7.2, or is the 64-bitness for building iOS apps only? A 64-bit server version would be wonderful for Dreamhost users like myself (assuming it would

Re: How buggy is 7.0.1?

2015-01-10 Thread Brahmanathaswami
A rambling answer to your "Straw Poll" : We have a desktop app that Andre built and continues to maintain, which we depend on heavily for communicating with a MySQL database on our web server. It's so much better than a web interface for accessing tables etc. I have volunteers in several dif

64 bit?

2015-01-10 Thread Earthednet-wp
I have been assuming livecode is not yet 64bit on windows. Is that true? If it is 64 bit, I will have to revise my bug report about flash videos in window 64 bit. Bill William Prothero http://es.earthednet.org ___ use-livecode mailing list use-livecode

[Beginner] Put the label of btn "btnA"

2015-01-10 Thread Shawn Blc
*put* the label of btn "btnA" and the label of fld "lblDate" into fld "fldTitle" When I use the above, I get false. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscriptio

Re: opening a stack without changing current stack order?

2015-01-10 Thread J. Landman Gay
On 1/10/2015 1:47 PM, Peter Haworth wrote: On Sat, Jan 10, 2015 at 11:18 AM, J. Landman Gay wrote: When you refer to a stack that way, it is placed in RAM but is not officially "opened" per se, there are no messages sent to it, and it is not in the message hierarchy. Didn't know that, usefu

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Mike Bonner
the word and makes it think you're doing an evaluation. if the label of btna and the lable of fld lbldate are not both true, then it'll give you false. don't use the word and, use the ampersand & as your string connector. put 1 && 2 && 3 (double ampersands put a space in between your string part

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Dave Kilroy
hey Shawn, I don't think fields have a 'label' property - "Some are born coders, some achieve coding, and some have coding thrust upon them." - William Shakespeare & Hugh Senior -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Beginner-Put-the-label-of-btn-b

Re: opening a stack without changing current stack order?

2015-01-10 Thread Peter Haworth
On Sat, Jan 10, 2015 at 2:20 PM, J. Landman Gay wrote: > You'd have to check the "rev" stuff. The stack isn't in the openstacks but > it is in the mainstacks. And "there is a stack " returns true. > > The stack behaves like any stack with destroystack set to false, after it > has been closed. If

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Dave Kilroy
Aha a field CAN have a label! So what Mike said about ampersand then... - "Some are born coders, some achieve coding, and some have coding thrust upon them." - William Shakespeare & Hugh Senior -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/Beginner-Put-th

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Peter M. Brigham
On Jan 10, 2015, at 5:19 PM, Shawn Blc wrote: > *put* the label of btn "btnA" and the label of fld "lblDate" into fld > "fldTitle" > > > When I use the above, I get false. Buttons have labels, but fields don't. More properly, "label" is a property of buttons, but not of fields, so the label o

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Mike Bonner
Oh yep. No label for fields. (unless you create a label property for it of course) so putting the label of the field will put empty. Probably what you want is the text of the field. or just "put field "lbldate" On Sat, Jan 10, 2015 at 3:43 PM, Peter M. Brigham wrote: > On Jan 10, 2015, at 5:1

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Shawn Blc
Thanks everyone. I'll try and update. On Sat, Jan 10, 2015 at 4:49 PM, Mike Bonner wrote: > Oh yep. No label for fields. (unless you create a label property for it of > course) so putting the label of the field will put empty. Probably what > you want is the text of the field. or just "put fi

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Shawn Blc
Excellent. Got it. Thanks guys. *put* the fld "lblDate" & " " & the label of btn "btnA" into fld "fldTitle" On Sat, Jan 10, 2015 at 5:12 PM, Shawn Blc wrote: > Thanks everyone. I'll try and update. > > On Sat, Jan 10, 2015 at 4:49 PM, Mike Bonner wrote: > >> Oh yep. No label for fields. (u

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Mike Bonner
Couple notes.. put the fld "lblDate" & " " & the label of btn "btnA" into fld "fldTitle" It apparently doesn't matter in the above, but the word "The" is kinda the designates a property. the field "blahbla" apparently works, but field is an object not a property, so be careful of that. And then,

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Mike Bonner
Wow, my english is getting worse daily. Hope the previous is grokable. On Sat, Jan 10, 2015 at 4:24 PM, Mike Bonner wrote: > Couple notes.. > put the fld "lblDate" & " " & the label of btn "btnA" into fld "fldTitle" > > It apparently doesn't matter in the above, but the word "The" is kinda the

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Roger Guay
You mean grokkable? > On Jan 10, 2015, at 4:24 PM, Mike Bonner wrote: > > grokable ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.ru

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Shawn Blc
Thanks guys. On Sat, Jan 10, 2015 at 7:44 PM, Roger Guay wrote: > You mean grokkable? > > > > On Jan 10, 2015, at 4:24 PM, Mike Bonner wrote: > > > > grokable > > > ___ > use-livecode mailing list > use-livecode@lists.runrev.com > Please visit this ur

Re: [Beginner] Put the label of btn "btnA"

2015-01-10 Thread Mike Bonner
or grok-able? On Sat, Jan 10, 2015 at 7:00 PM, Shawn Blc wrote: > Thanks guys. > > On Sat, Jan 10, 2015 at 7:44 PM, Roger Guay wrote: > > > You mean grokkable? > > > > > > > On Jan 10, 2015, at 4:24 PM, Mike Bonner wrote: > > > > > > grokable > > > > > > __

LiveCode Lullaby

2015-01-10 Thread Curry Kenworthy
I wanted to say, hope all friends, clients, and colleagues had a very Merry Christmas and Happy New Year! I also noticed an unusual way to use keywords, so I made a poem to test it. The script below does compile and run. Can you guess what it will output? on mouseUp -- livecode lullab