Re: Laughing my socks off.

2015-03-16 Thread Richmond
On 03/17/2015 01:50 AM, Mark Wieder wrote: J. Landman Gay writes: So... now that I've gotten that far, I forget what the original problem is. A quibble about the version (2.9) mentioned in the Externals instructions, I believe. Rule of thumb should probably be to avoid mentioning any partic

Re: Laughing my socks off.

2015-03-16 Thread Richmond
On 03/16/2015 11:51 PM, J. Landman Gay wrote: On 3/16/2015 4:41 PM, Mark Wieder wrote: Since I have all the toolbar eyecandy disabled, I never saw that. I think a lot of people do that. So... now that I've gotten that far, I forget what the original problem is. A quibble about the versio

Re: LC7 & Unicode

2015-03-16 Thread Kay C Lan
On Tue, Mar 17, 2015 at 4:38 AM, TEDennis wrote: > Apparently all those references have been wrong. How > did we ALL (or most of us) get to the point where we thought Unicode was > the > culprit? > > Probably because LC7 was billed as the Unicode version and it's simple word association. The fac

Re: Laughing my socks off.

2015-03-16 Thread Mark Wieder
J. Landman Gay writes: > > So... now that I've gotten that far, I forget what the original problem is. > > A quibble about the version (2.9) mentioned in the Externals > instructions, I believe. Rule of thumb should probably be to avoid > mentioning any particular version in the docs, especial

Re: How to add a new item into the end of an existing line?

2015-03-16 Thread James Hale
A line is a chunk of a container. It is not an object in and of itself. So to add something after the line you need to fully specify the line. put "thenextbit" after line twhatever of containerWithLines No? James ___ use-livecode mailing list

Re: How to add a new item into the end of an existing line?

2015-03-16 Thread Mike Bonner
you can even: put "whatever" into item (the number of items in c + 1) of c (and you can of course specify a line too) that way it'll pop the comma in there for you too. But like everyone else I actually find it easier to just insert the comma and data. On Mon, Mar 16, 2015 at 3:31 PM, Michael Do

Re: Laughing my socks off.

2015-03-16 Thread J. Landman Gay
On 3/16/2015 4:41 PM, Mark Wieder wrote: Since I have all the toolbar eyecandy disabled, I never saw that. I think a lot of people do that. So... now that I've gotten that far, I forget what the original problem is. A quibble about the version (2.9) mentioned in the Externals instructions,

Re: Laughing my socks off.

2015-03-16 Thread Mark Wieder
J. Landman Gay writes: > >> Where? I can't find it. > >> > > > > http://forums.livecode.com/viewtopic.php?f=5&t=23663 > > That didn't help, but a mention of the toolbar icon would have done it. > I don't believe I've ever looked at that icon before, I'm > not...resourceful...enough. Ah. That

Re: How to add a new item into the end of an existing line?

2015-03-16 Thread Michael Doub
put "1,2,3,4,5,6,7,8,9" & cr & "11,22,33,44,55,66,77,88,99" & cr after tData set itemdel to comma put the itemdel & 10 after item -1 of line 1 of tData On 3/16/15 1:45 PM, Keith Clarke wrote: Folks, Please can anyone clarify the syntax needed to add a new item A to the end of an exis

Re: LC7 & Unicode

2015-03-16 Thread TEDennis
re: Does LC6.7.3 not work for you until LC7 performance improves? I gave up quite a while ago trying to use any version higher than 6.1 because I ran into an intermittent issue with arrays. I don't even remember what the problem was now, but that same app now works in 7.0.4. Well, it *almost* w

Re: Interfacing with web services - advice needed

2015-03-16 Thread Devin Asay
Graham, Here are some links to notes I use in my class for introducing students to the concept of web services in general and for how to access them in LiveCode. They’re written assuming no prior knowledge of web services. You may find something of interest. Intro to Web Services Lesson Outlin

Re: Laughing my socks off.

2015-03-16 Thread J. Landman Gay
On 3/16/2015 1:05 PM, Richmond wrote: On 16/03/15 19:49, J. Landman Gay wrote: On 3/16/2015 2:02 AM, Richmond wrote: the latest recension I have installed here is 7.0.1 rc2 and it HAS a resource thing as well Where? I can't find it. http://forums.livecode.com/viewtopic.php?f=5&t=23663 Th

Re: LC7 & Unicode

2015-03-16 Thread TEDennis
Bernard: I didn't see the transition in Dr. Brett's discussion to be as black and white as your interpretation. re: all the goodness of widgets and the javascript engine and the new "DSL" language enhancements seem to me to be far more significant than unicode. Agree 100%, and I am looking forwa

Re: LC7 & Unicode

2015-03-16 Thread Paul Hibbert
> If > Unicode is what's behind the performance glitches, then that's most > certainly not the answer I want to hear. But, life goes on. This is what I understand the LC engineers are actively working on, so hopefully there should be some performance improvements in the future. I really suspect

Re: LC7 & Unicode

2015-03-16 Thread Bernard Devlin
I think the important part of Peter Brett's answer comes after his remarks on Unicode: >> Internally, the LC7 engine only uses Unicode if it has to. If your application only uses native strings, then LC7 will only use native strings. Built-in Unicode support has very little to do with the fact

Re: How to add a new item into the end of an existing line?

2015-03-16 Thread Jerry Jensen
Keith, There is a good explanation of chunk expressions in the User Guide, starting on p. 168. You get to the User Guide by opening the Resource Center from the toolbar, which has a link to download the PDF of the User Guide. There is lots of good stuff in there that explains the basics. What

Re: LC7 & Unicode

2015-03-16 Thread TEDennis
Paul: Thanks for the response. I asked: "/Can we turn off that /[Unicode]/ detection, thus eliminating Unicode processing?/" You replied: "/No, this has been asked several times on the list, it's part of the internal processing that LC uses and is too deeply embedded to eliminate/". I have been

Re: Interfacing with web services - advice needed

2015-03-16 Thread Bernard Devlin
Hi Graham Interfacing with a website as you describe may be very easy. However, if you anticipate making scores or thousands of queries a day, they may block your app (e.g. based on the User-Agent header sent along with your query). Assuming you don't face that problem, then if the website just

Re: How to add a new item into the end of an existing line?

2015-03-16 Thread Peter Haworth
Maybe tRecord has an invalid value? On Mon, Mar 16, 2015 at 11:54 AM Keith Clarke wrote: > …thanks for the response, Peter. > > Weirdly, using this form… > > put comma & tInsert after line tRecord of tRecords > > ... Compiles OK but then fails on run with (Chunk: error in range start > expressio

Re: How to add a new item into the end of an existing line?

2015-03-16 Thread Keith Clarke
…thanks for the response, Peter. Weirdly, using this form… put comma & tInsert after line tRecord of tRecords ... Compiles OK but then fails on run with (Chunk: error in range start expression) Maybe I’ll try building into a new variable line by line, instead of appending to lines in the exis

Re: LC7 & Unicode

2015-03-16 Thread Paul Hibbert
> No response to my prior post, so let's try this again ... I'll give some answers as far as I understand LC7 at present, if I get something wrong no doubt someone will correct me! It wouldn't be the first time. :) > Dr Peter Brett wrote: "Internally, the LC7 engine only uses Unicode if it > ha

Re: WatchKit & AndroidWear

2015-03-16 Thread Roger Eller
The API has changed (has become more strict). Apps have to adhere to the new specifications, or the Google Play Store won't allow them to be downloaded to "Android Wear" compatible watches. It works with my watch because it isn't recognized as a true Android Wear device, but instead as a tablet.

Re: Laughing my socks off.

2015-03-16 Thread Richmond
On 16/03/15 19:49, J. Landman Gay wrote: On 3/16/2015 2:02 AM, Richmond wrote: the latest recension I have installed here is 7.0.1 rc2 and it HAS a resource thing as well Where? I can't find it. http://forums.livecode.com/viewtopic.php?f=5&t=23663 Richmond. ___

Re: "Open in" for Android

2015-03-16 Thread Ludovic THEBAULT
> Le 16 mars 2015 à 15:48, Mark Schonewille > a écrit : > > Hi Ludovic, > > You can now enter the custom URL scheme in the standalone builder (or isn't > that what you're looking for?) > Hello, thanks. I want to save a file on the documents folder of my app from an email to avoid using i

Re: How to add a new item into the end of an existing line?

2015-03-16 Thread Peter Haworth
Maybe "put the itemdelimiter & foo after line B of C" On Mon, Mar 16, 2015 at 10:46 AM Keith Clarke wrote: > Folks, > Please can anyone clarify the syntax needed to add a new item A to the end > of an existing line B of an existing variable C? > > I can add to the end of the variable OK, as in >

Re: Laughing my socks off.

2015-03-16 Thread J. Landman Gay
On 3/16/2015 2:02 AM, Richmond wrote: the latest recension I have installed here is 7.0.1 rc2 and it HAS a resource thing as well Where? I can't find it. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: WatchKit

2015-03-16 Thread Roger Eller
Wow! That's a big'en! I like how it can be removed from the band, and held as a super small tablet, yet worn as a giant watch. But... in the end, I still want Android Wear support in LiveCode. http://www.amazon.com/NEPTUNE-Pine-32GB-Smartwatch-Packaging/dp/B00NQTO1PM/ On Mon, Mar 16, 2015 at

How to add a new item into the end of an existing line?

2015-03-16 Thread Keith Clarke
Folks, Please can anyone clarify the syntax needed to add a new item A to the end of an existing line B of an existing variable C? I can add to the end of the variable OK, as in put foo after C but if I try to put foo after B, after line B or after item -1 of line B, after Z (defined as item -

Interfacing with web services - advice needed

2015-03-16 Thread Graham Samuel
I’ve been bothering this list about XML and arrays, for a geography project I’m pursuing. I’m making progress. However, I’ve now come up against a new issue which isn’t about LiveCode as such but which raises a fairly general question, i.e. I need to do a calculation (see the end of this mail i

Re: WatchKit

2015-03-16 Thread Peter Haworth
Have you checked out the Addroid Neptune Pine watch? Different than the rest because it's self contained, no need for a smartphone. But it's huge! On Mon, Mar 16, 2015 at 10:01 AM Skip Kimpel wrote: > Thank you... Sounds interesting! > > SKIP > > > On Mar 16, 2015, at 10:48 AM, Roger Eller >

Re: WatchKit & AndroidWear

2015-03-16 Thread Richard Gaskin
Roger Eller wrote: > On Mon, Mar 16, 2015 at 10:56 AM, Richard Gaskin wrote: > >> Roger Eller wrote: >> >> > Does it have to use the LC 7 engine? Why not use what fits, LC 6? >> >> There is no build of the v6 engine that runs on wearables. >> > Ummm... http://livecode1001.blogspot.com/search?q=

Re: LC7 & Unicode

2015-03-16 Thread TEDennis
No response to my prior post, so let's try this again ... Dr Peter Brett wrote: "Internally, the LC7 engine only uses Unicode if it has to. If your application only uses native strings, then LC7 will only use native strings. Built-in Unicode support has very little to do with the fact that LC7 i

Re: WatchKit

2015-03-16 Thread Skip Kimpel
Thank you... Sounds interesting! SKIP > On Mar 16, 2015, at 10:48 AM, Roger Eller wrote: > > I highly recommend watching "All About Android" on TWiT.tv every week. > Those guys do a great job of presenting any/all new trends in Android > hardware and apps. They demo the latest variants of Andr

Re: WatchKit

2015-03-16 Thread Magicgate Software - Skip Kimpel
Roger, I did... thank you. Very interesting conversation and I will be interested to see how strong developers (outside of LC) latch onto the WatchKit and develop apps for it. I think it will be one of those make or break elements for Apple. I am interested, however, in digging more into the Ad

Re: lcTaskList and LiveCode 8

2015-03-16 Thread Benjamin Beaumont
Hi Bill, Thanks for the report. We've got a good amount of resource working on the IDE at the moment so it shouldn't take use too long to get this resolved. Warm regards, Ben On 14 March 2015 at 14:40, Bill Vlahos wrote: > I already had LC 8.0.0 DP1 installed and lcTaskList worked fine. > > W

Re: WatchKit & AndroidWear

2015-03-16 Thread Roger Eller
On Mon, Mar 16, 2015 at 10:56 AM, Richard Gaskin wrote: > Roger Eller wrote: > > > Does it have to use the LC 7 engine? Why not use what fits, LC 6? > > There is no build of the v6 engine that runs on wearables. > > Ummm... http://livecode1001.blogspot.com/search?q=Android+Wear Just luck I gue

Re: menuitems accumulating extra ( in them?

2015-03-16 Thread Dr. Hawkins
Ack, early release. the dictionary seems to suggest such foolish behavior: so when used to disable a menu item, the disable menu command adds an open parenthesis at the beginning of the specified line. Without checking to see if one is already there??? On Mon, Mar 16, 2015 at 7:52 AM, Dr. Hawkin

Re: WatchKit & AndroidWear

2015-03-16 Thread Richard Gaskin
Roger Eller wrote: > Does it have to use the LC 7 engine? Why not use what fits, LC 6? There is no build of the v6 engine that runs on wearables. What "fits" is more than size. Fixes are backported to v6.7 as a courtesy to those who haven't yet migrated their work to the current engine, but

menuitems accumulating extra ( in them?

2015-03-16 Thread Dr. Hawkins
I am seeing one menuItem in particular (hmm, the only one I disable) pick up multiple ( in front of it. Is the correct behavior of "disable menuItem foo" to simply stick a ( before its line of the text of the button in question? Should I be checking for whether or not it's already disabled (seem

Re: "Open in" for Android

2015-03-16 Thread Mark Schonewille
Hi Ludovic, You can now enter the custom URL scheme in the standalone builder (or isn't that what you're looking for?) -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 502

Re: WatchKit

2015-03-16 Thread Roger Eller
I highly recommend watching "All About Android" on TWiT.tv every week. Those guys do a great job of presenting any/all new trends in Android hardware and apps. They demo the latest variants of Android Wear devices from Pebble to Glass to LG-Watch to Moto360. I love those round screens on the high

Re: WatchKit

2015-03-16 Thread Roger Eller
Skip, did you see Monte's reply regarding LC and WatchKit in my spinoff thread "WatchKit & AndroidWear"? ~Roger On Sun, Mar 15, 2015 at 4:41 PM, Magicgate Software - Skip Kimpel < s...@magicgate.com> wrote: > Anybody experimented yet with Apple's WatchKit? Is it possible to create > an app for

Re: WatchKit & AndroidWear

2015-03-16 Thread Colin Holgate
I have built an app that uses accelerometer from LC7 to Google Glass, and it worked ok. That doesn’t mean that watch specific features (e.g., heart rate) will work without new functions in LiveCode. > On Mar 16, 2015, at 8:03 AM, Roger Eller wrote: > > Does it have to use the LC 7 engine? Wh

Re: WatchKit & AndroidWear

2015-03-16 Thread Roger Eller
Does it have to use the LC 7 engine? Why not use what fits, LC 6? Like I said, my early watch accepts LC apps built with 6, but a modern Android Wear watch has a more strict definition of what is allowed. OTOH, if Raspberry Pi handles LC 7, a smart watch should - based on hardware specs alone. O

"Open in" for Android

2015-03-16 Thread Ludovic THEBAULT
Hello, To open a file with your app in iOS, i found this thread : http://forums.livecode.com/viewtopic.php?f=75&t=18775 But how do the same for an android app ? Thanks ___ use-livecode mailing li

Re: Laughing my socks off.

2015-03-16 Thread Richmond
Like the cow said to the dairyman: "Udderly hilarious" if you read my original posting properly you would find that I had opened the "Resource Center" in LC 7.0.4 rc1. I am at work now, the latest recension I have installed here is 7.0.1 rc2 and it HAS a resource thing as well. Richmond. O