Re: LiveCode 8 and a new video player?

2015-06-04 Thread Mark Talluto
On Jun 4, 2015, at 5:06 PM, Richard Gaskin ambassa...@fourthworld.com wrote: Besides, RunRev has already decided to support media playback on Linux. The only new question I'm raising here is whether it needs to wait for The Ultimate Widget, or could we please have a few lines of C++ to tide

Re: Clock

2015-06-04 Thread Roger Eller
Bernd, I finally found a few minutes to play. I think possibly the layerMode may need a tweak to get smooth movement on Android. It looks great and smooth on the computer. Here's a video of the first run on my watch.

Re: LiveCode 8 and a new video player?

2015-06-04 Thread Richard Gaskin
Mark Talluto wrote: On Jun 4, 2015, at 12:37 PM, Mike Bonner wrote: The key would (again) be to have things packaged so that the dependencies are installed as part of the processes, making it as easy as possible. This is what makes working with Linux for certain markets very difficult.

Re: sorting SQLite keys where no leading zeros at end of name

2015-06-04 Thread Peter Haworth
If the text and numeric portions of the key are indeed separated by an underscore, the following should work as an ORDER clause (untested). ORDER BY substr(TheKeyColumn,1,instr(TheKeyColumn,'_')-1) ASC,CAST(substr(TheKeyColumn,instr(theKeyColumn,'_')+1) AS INTEGER) ASC If there are a fixed

sorting SQLite keys where no leading zeros at end of name

2015-06-04 Thread Dr. Hawkins
I have keys that get generated such as someKey_1 someKey_2 I just hit the snag that someKey_10 comes between the two of these. Is there a clean way to get SQLite (in memory) to ORDER these numerically without having to recode to force leading zeros? *yuk* -- Dr. Richard E. Hawkins,

Re: sorting SQLite keys where no leading zeros at end of name

2015-06-04 Thread Mike Bonner
You can do this. on mouseUp -- my field has sample data based on your example put field myfieldWithData into tData sort lines of tData ascending numeric by numberTag(each) -- tData now contains your sorted keys, do with them as you wish. end mouseUp function numberTag pVar -- returns the

Re: sorting SQLite keys where no leading zeros at end of name

2015-06-04 Thread Mike Bonner
oh duh. Ignore me. My answer sorts them after the fact with lc. Peters answer does the same basic thing inside sqlite. On Thu, Jun 4, 2015 at 5:07 PM, Peter Haworth p...@lcsql.com wrote: If the text and numeric portions of the key are indeed separated by an underscore, the following should

breakpoint gets edited out of cut/paste in IDE?

2015-06-04 Thread Dr. Hawkins
has anyone else seen this? If I copy a block of if sGrp=p13_6.0.1 then breakpoint end if in the IDE, and then paste it elsewhere in the IDE, the middle line with breakpoint is consistently not appearing, with instead a blank line. Has anyone else seen something like this?

Re: LiveCode 8 and a new video player?

2015-06-04 Thread Richard Gaskin
Mark Talluto wrote: On Jun 4, 2015, at 1:37 PM, Richard Gaskin wrote: Already sold: RunRev is committed to delivering a player object for all supported platforms. Are you under the impression that they are not going to use native hooks for each platform for video playback? Not at all. I

Re: sorting SQLite keys where no leading zeros at end of name

2015-06-04 Thread Dr. Hawkins
On Thu, Jun 4, 2015 at 4:07 PM, Peter Haworth p...@lcsql.com wrote: ORDER BY substr(TheKeyColumn,1,instr(TheKeyColumn,'_')-1) ASC,CAST(substr(TheKeyColumn,instr(theKeyColumn,'_')+1) AS INTEGER) ASC If there are a fixed number of chars before the numeric part of the key, then you can replace

Re: LiveCode 8 and a new video player?

2015-06-04 Thread Mark Talluto
On Jun 4, 2015, at 1:37 PM, Richard Gaskin ambassa...@fourthworld.com wrote: Already sold: RunRev is committed to delivering a player object for all supported platforms. Are you under the impression that they are not going to use native hooks for each platform for video playback? Eg:

Re: sorting SQLite keys where no leading zeros at end of name

2015-06-04 Thread Peter Haworth
Let me know if it works. I might have the wrong number of prans, etc but the theory should work. Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and SQLiteAdmin http://www.lcsql.com/sqliteadmin.html On Thu, Jun 4, 2015 at 4:12 PM, Dr.

Re: message path

2015-06-04 Thread Mark Schonewille
Mike, My advice is specifically for problems with the IDE itself. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Installer Maker for LiveCode:

Re: message path

2015-06-04 Thread Mike Kerner
Well, try these two, for starters (bug report 15468) 1) Open a new stack - it doesn't appear in the pb until you do something else in the pb so that it updates itself. Now, maybe there's something funky going on so that the pb doesn't get the memo that I've opened a new stack (like some library

Re: message path

2015-06-04 Thread Mark Schonewille
Hi Mike, put true into gRevDevelopment and set a breakpoint in front of the first line that seems to cause problems. Now debug the same way you would with your own scripts. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage:

Re: advice needed re uploading text binary data from iOS app

2015-06-04 Thread Ethan Lish
Livecode.io looks like a nice database abstraction layer with cloud and local database support.  Seems to be in beta.  Has pricing been announced for this product? Any announced date for production release? E On Thu, Jun 4, 2015 at 8:29 AM -0700, Eric Corbett e...@canelasoftware.com wrote:

Re: advice needed re uploading text binary data from iOS app

2015-06-04 Thread Eric Corbett
Hi Ethan, We haven’t released official pricing yet, as the product is still in beta. However, we use it in our production apps and there are other dev teams who have shipped apps using LiveCloud. The current release is very stable. We estimate the Tier 1 pricing will be around $20.00 per

Re: AW: AW: LiveCode 8 and a new video player?

2015-06-04 Thread Richard Gaskin
Martin Koob wrote: When the AVFoundation based player was being developed as a replacement for the QTKit player I tested most of the features of the player and submitted bug reports for anything that was missing or not working correctly. The team was very good at following up and ensuring

Re: LiveCode 8 and a new video player?

2015-06-04 Thread Mark Talluto
On Jun 4, 2015, at 11:07 AM, Richard Gaskin ambassa...@fourthworld.com wrote: In fact, if I had basic playback with startTime for Windows and Linux as we have for OS X, I'd never need that fancy widget at all. It seems to me that Apple Devs were simply lucky with this one. When LiveCode was

Re: message path

2015-06-04 Thread Mike Kerner
Mark, The problem is in the ide, itself. Sorry that wasn't clear. I'm trying to track down bug 15648, and for part of that chase, I'm trying to determine why the projectbrowser isn't getting told to update its list of open stacks. On Thu, Jun 4, 2015 at 1:19 PM, Mark Schonewille

Re: AW: AW: LiveCode 8 and a new video player?

2015-06-04 Thread Richmond
On 04/06/15 20:06, Martin Koob wrote: I agree with you Tiemo, the cross platform player widget should have the same functionality as the current AVFOundation based player on Mac OS X with properties like currentTime, startTime, endTime playdate and callbacks etc.; messages like

Re: AW: AW: LiveCode 8 and a new video player?

2015-06-04 Thread Martin Koob
I agree with you Tiemo, the cross platform player widget should have the same functionality as the current AVFOundation based player on Mac OS X with properties like currentTime, startTime, endTime playdate and callbacks etc.; messages like currentTimeChanged, playStarted, playPaused,

Re: advice needed re uploading text binary data from iOS app

2015-06-04 Thread Dave Kilroy
I also use Gugliermo's Dropbox library which is excellent http://www.phoenixsea.ch/downloads/Livecode/phxDropboxLib.zip For a recent ios and android project I've also made use of the techniques John Craig uses in his kick-ass upload demo which you can see at

Re: Commercial license renewal

2015-06-04 Thread JB
This is not the support site but his question is extremely useful for many others and I am interested in seeing what answer he gets. John Balgenorth On Jun 4, 2015, at 7:48 AM, Bob Sneidar bobsnei...@iotecdigital.com wrote: You will want to contact supp...@runrev.commailto:supp...@runrev.com

Re: revXMLCreateTree or revCreateXMLTree ?

2015-06-04 Thread Mark Wieder
On 06/02/2015 08:01 AM, Devin Asay wrote: A few years ago, it seems like most of the functions and commands of the form revNnnXMLMmm were deprecated in favor of the form revXMLNnnMmm. I think this is a bug on server that should be reported. Yeah, that was my doing. The revXML... forms are

Re: Anybody Hear From Jan Schenkel?

2015-06-04 Thread Mark Wieder
On 06/02/2015 12:21 PM, Jan Schenkel wrote: My apologies for the scandalously late reply. Yes, I am still alive. Yay! -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: message path

2015-06-04 Thread Mike Kerner
it doesn't look like it, unfortunately. That appears to be too specific. I'm trying to fix a couple of issues with the projectBrowser, so I am trying to see where in the labarynth of LC tools I should be looking. It's interesting, for instance, that the application browser gets updated at times

Re: message path

2015-06-04 Thread Richard Gaskin
Mike Kerner wrote: I'm trying to fix a couple of issues with the projectBrowser, so I am trying to see where in the labarynth of LC tools I should be looking. Would this help?: http://fourthworld.net/lc/devo-mpath.png If so it's not far from being releasable, and will be available at no

Re: message path

2015-06-04 Thread Scott Rossi
Could you use the executionContexts? Regards, Scott Rossi Creative Director Tactile Media UX/UI Design On Jun 4, 2015, at 7:34 AM, Mike Kerner mikeker...@roadrunner.com wrote: Is there a way to discover the current message path, inluding the various LC libraries? -- On the first day,

Commercial license renewal

2015-06-04 Thread Dr. Hawkins
After the renewals from the kickstarter, I'm coming up for renewal again. I had thought that the annual rate was changing to $300 or $500, but it indicates that it is still $750. Would this still be the license I used to have, in which my Livecode applications during that year don't expire, or

Re: advice needed re uploading text binary data from iOS app

2015-06-04 Thread Eric Corbett
Hi Phil, Have you come across LiveCloud yet (livecloud.io)? LiveCloud is a NoSQL database system designed for LiveCode. Currently LIveCloud is in beta release, but we use it extensively in-house for all our projects. You can sign up and use it for free. Just download the LiveCloud Manager

message path

2015-06-04 Thread Mike Kerner
Is there a way to discover the current message path, inluding the various LC libraries? -- On the first day, God created the heavens and the Earth On the second day, God created the oceans. On the third day, God put the animals on hold for a few hours, and did a little diving. And God said,

Re: Commercial license renewal

2015-06-04 Thread Bob Sneidar
You will want to contact supp...@runrev.commailto:supp...@runrev.com for that. This is not the support site. Bob S On Jun 4, 2015, at 07:43 , Dr. Hawkins doch...@gmail.commailto:doch...@gmail.com wrote: After the renewals from the kickstarter, I'm coming up for renewal again. I had thought

Re: Roadmap

2015-06-04 Thread Richmond
On 04/06/15 00:24, Monte Goulding wrote: On 4 Jun 2015, at 6:50 am, Richmond richmondmathew...@gmail.com wrote: This is odd, as it states that a Full IDE Prototype depends on Widgets and Themes, which just is not true: an alternative IDE can be cobbled together right now - I mucked around

Re: Roadmap

2015-06-04 Thread Richmond
On 04/06/15 00:09, Richard Gaskin wrote: Richmond wrote: Where is the Full IDE prototype . . . ? This is odd, as it states that a Full IDE Prototype depends on Widgets and Themes, which just is not true: an alternative IDE can be cobbled together right now - I mucked around with the

advice needed re uploading text binary data from iOS app

2015-06-04 Thread Phil Jimmieson
Hi folks, I've been writing a couple of iOS apps that capture data and at the moment I save this data locally and it is eventually transferred to a PC for processing via iTunes (so it happens only occasionally). I'd like to transfer data automatically to a secure server when my app is running

Re: advice needed re uploading text binary data from iOS app

2015-06-04 Thread Mike Kerner
I use dropbox. Monte has an external, and Gugliermo wrote a library. Both work great. On Thu, Jun 4, 2015 at 6:53 AM, Phil Jimmieson p...@liverpool.ac.uk wrote: Hi folks, I've been writing a couple of iOS apps that capture data and at the moment I save this data locally and it is eventually

Re: LiveCode 8 and a new video player?

2015-06-04 Thread Mike Bonner
If things are packaged properly, and lc is added to repositories to use native installers (synaptic, rpm, yum, whatever..) dependencies fulfillment should be part of the process. Of course this means more manhours getting things set up to be packaged, and I don't think the mothership has many

Re: LiveCode 8 and a new video player?

2015-06-04 Thread Richmond
On 04/06/15 21:39, Mark Talluto wrote: On Jun 4, 2015, at 11:07 AM, Richard Gaskin ambassa...@fourthworld.com wrote: In fact, if I had basic playback with startTime for Windows and Linux as we have for OS X, I'd never need that fancy widget at all. It seems to me that Apple Devs were simply

Re: Commercial license renewal

2015-06-04 Thread Dr. Hawkins
On Thu, Jun 4, 2015 at 11:13 AM, JB sund...@pacifier.com wrote: This is not the support site but his question is extremely useful for many others and I am interested in seeing what answer he gets. That is why I posted it here--I'm looking for other commercial customers' experiences. While

Re: LiveCode 8 and a new video player?

2015-06-04 Thread Richard Gaskin
Mark Talluto wrote: Native playback on all platforms would be fantastic. My guess is that Mac and Win are going to be easier due to both OS having the blocks to play with. Windows has had a native multimedia API for a long time, but last I read the API still in use in LC was deprecated more

AW: AW: LiveCode 8 and a new video player?

2015-06-04 Thread Tiemo Hollmann TB
Richmond wrote: We don't need anything 'fancy': merely simple PLAY, PAUSE, STOP for video in a player object. AND, the most important thing is that one doesn't have to spend hours fiddling around for different platforms. Here I don't agree at all. I am not sure, what you or Richard count to

Re: Datagrid Wierdness

2015-06-04 Thread Mike Kerner
I know I'm late to the party, but since you're pulling data from a db, you can just set the dgtext of the dg with the result of the query, too. On Wed, Jun 3, 2015 at 6:59 PM, Mike Bonner bonnm...@gmail.com wrote: These LC growing pains can be a bit rough sometimes. On Wed, Jun 3, 2015 at

Bug 15336 - libUrl is not decoding incoming data properly

2015-06-04 Thread John Dixon
Bug 15336 - libUrl is not decoding incoming data properly... To the liveCode lot in Edinburgh, Any chance that this is going to be fixed soon ? ___ use-livecode mailing list

Re: LiveCode 8 and a new video player?

2015-06-04 Thread Mark Talluto
On Jun 4, 2015, at 12:27 PM, Richmond richmondmathew...@gmail.com wrote: Isn't that rather like expecting Quicktime to be installed on all Windows and Mac boxes? My guess is that, Windows Media Player will be the most logical *native* player for Windows in LiveCode 8. AVFoudation is the

Re: Commercial license renewal

2015-06-04 Thread JB
They say if plan A fails there is always a plan B. Maybe it is time for another name change to make it legal. John Balgenorth On Jun 4, 2015, at 12:30 PM, Dr. Hawkins doch...@gmail.com wrote: On Thu, Jun 4, 2015 at 11:13 AM, JB sund...@pacifier.com wrote: This is not the support site but

Re: LiveCode 8 and a new video player?

2015-06-04 Thread Mark Talluto
On Jun 4, 2015, at 12:37 PM, Mike Bonner bonnm...@gmail.com wrote: The key would (again) be to have things packaged so that the dependencies are installed as part of the processes, making it as easy as possible. This is what makes working with Linux for certain markets very difficult. If