Re: Threading (plus random question)

2016-09-08 Thread BNig
Hi, currently on a Mac command-alt-tab switches between browse and edit mode. I use it all the time. If I remember correctly keyboard switching between edit and browse mode was broken for a while and it took Mark Waddingham some magic to implement it in the refactored Mac engine a while to get it

Re: SQL joining from list of values to match single value?

2016-09-08 Thread Kay C Lan
On Fri, Sep 9, 2016 at 6:37 AM, Dr. Hawkins wrote: > > Do you include a delimiter after your first and last entries? It seems > clumsy, but I don't see a way around it with LIKE WHERE dpdDnas LIKE '7,%' OR dpdDnas LIKE '%,7,%' OR dpdDnas LIKE '%,7' I've found that leaving

Re: Forum digests

2016-09-08 Thread ahsoftware
On 09/08/2016 11:29 AM, J. Landman Gay wrote: Thanks. Oddly enough, after I posted, I got yesterday's digest (or maybe it was today's, I haven't read it yet.) My server had an issue yesterday which is probably the cause. I also just got a few duplicate list emails from yesterday too. So, the

Re: Threading (plus random question)

2016-09-08 Thread ahsoftware
On 09/08/2016 09:40 AM, Richard Gaskin wrote: Control-Tab is handy on a Mac, but the rest of the world has been using it to switch applications for nearly two decades. That's alt-tab. (Command-tab on macs). I've had control-tab integrated into PowerTools for so long I didn't realize the IDE

Re: SSL with "accept" command?

2016-09-08 Thread ahsoftware
On 09/08/2016 02:30 PM, Bob Sneidar wrote: If you are looking for a cross platform solution you might want to look at (SSLSocketFactory) for java or Open SSL if native. Thanks for that. -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode

Re: SSL with "accept" command?

2016-09-08 Thread ahsoftware
On 09/08/2016 02:27 PM, Bob Sneidar wrote: Somewhat oversimplified to say the least. :-) Not really. The fix was just to return only the proper amount. It's a one-line code change to the heartbeat algorithm. Voila - no more buffer overflow. -- Mark Wieder ahsoftw...@gmail.com

Re: urlResponse empty in 8.1.0RC1

2016-09-08 Thread ahsoftware
On 09/08/2016 12:50 PM, Trevor DeVore wrote: PUT and DELETE have been around for as long as I can remember. I used them years ago with a web service. I'm assuming DELETE works the same, yes the DELETE verb, of course, requires that the server you're talking to supports it for the service

Re: Threading (plus random question)

2016-09-08 Thread Dr. Hawkins
On Thu, Sep 8, 2016 at 4:12 PM, Monte Goulding wrote: > Yep, still tokenized… obviously this is low hanging fruit for optimization > where users don’t want colorization > That used to be the only use I saw for color displays, so I generally stayed to monochrome, which was

Re: Debugger forgetting soft breakpoints

2016-09-08 Thread Dr. Hawkins
On Thu, Sep 8, 2016 at 11:25 AM, J. Landman Gay wrote: > On 9/7/16 3:26 PM, Monte Goulding wrote: > >> ay, because nobody did any work on the debugger for 8.1 so it’s good >> that it didn’t break all by itself ;-) >> > > *I* broke all by myself. I wish I could blame it

Re: Threading (plus random question)

2016-09-08 Thread Monte Goulding
> On 9 Sep 2016, at 8:57 AM, Monte Goulding wrote: > > I’m not actually sure if it makes any difference if you use colorization or > not. The mutated lines still get tokenized as you type. I’ll check on that > but regardless we need it to have reasonable performance with or

Re: Threading (plus random question)

2016-09-08 Thread Monte Goulding
> On 9 Sep 2016, at 8:53 AM, Richard Gaskin wrote: > > I don't use colorization, but typing in the SE isn't nearly as snappy as > typing in any other field. It's gotten better since v7, but not quite up to > v6 speeds. I’m not actually sure if it makes any

Re: Threading (plus random question)

2016-09-08 Thread Richard Gaskin
J. Landman Gay wrote: On 9/8/16 3:08 PM, Monte Goulding wrote: On 9 Sep 2016, at 5:38 AM, Richard Gaskin wrote: I wonder if it makes sense to add some sort of option to stop the real-time reformatting so I can type at my natural speed without waiting for LC to finish figuring out how it

Re: Threading (plus random question)

2016-09-08 Thread J. Landman Gay
On 9/8/16 3:08 PM, Monte Goulding wrote: On 9 Sep 2016, at 5:38 AM, Richard Gaskin wrote: I wonder if it makes sense to add some sort of option to stop the real-time reformatting so I can type at my natural speed without waiting for LC to finish figuring out how it

Re: SQL joining from list of values to match single value?

2016-09-08 Thread Dr. Hawkins
On Thu, Sep 8, 2016 at 11:22 AM, Mike Kerner wrote: > I would make IS IN work, and do it in two queries, > Something like put revDataFromQuery(tab,vtab, theDb,"SELECT uniqDna, parDnas FROM theTable WHERE (parDnas <>'');" into theData split theData by vtab and tab

Re: Script Editor focus (was Re: Threading (plus random question)_

2016-09-08 Thread Monte Goulding
> On 9 Sep 2016, at 5:14 AM, Monte Goulding wrote: > > Actually that annoys me too. I've had multiple times where I thought the it > didn't open but actually it was just behind a stack. I'll see if I can find > some time to look into that. Easily fixed:

Re: new IDE command for revDocumentationGo?

2016-09-08 Thread Richard Gaskin
Mark Wieder wrote: Here's what I do: local tText, tData put the clicktext into tText if the version > 7 then put ideDocsFetchLCSData(tText) into tData if tData is not empty then revIDEGoToLCSDictionaryEntry tText, tData[1]["type"] end if else revDocumentationGo tText end if

Re: new IDE command for revDocumentationGo?

2016-09-08 Thread mwieder
Here's what I do: local tText, tData put the clicktext into tText if the version > 7 then put ideDocsFetchLCSData(tText) into tData if tData is not empty then revIDEGoToLCSDictionaryEntry tText, tData[1]["type"] end if else revDocumentationGo tText end if -- Mark Wieder

Re: SQL joining from list of values to match single value?

2016-09-08 Thread Bob Sneidar
I beg to differ. Sometimes lists are the best way to do it. I have a column that can contain any combination of 3 values: customer, site, and IT or nothing at all. I use vert bars as delimiter, so my query is ex. "... where contacttype LIKE '%|site|%'". I also have another column where a

Re: new IDE command for revDocumentationGo?

2016-09-08 Thread Monte Goulding
> On 9 Sep 2016, at 7:21 AM, Richard Gaskin wrote: > > In IDE < 8.0 the revDocumentationGo command could be used to open the > Dictionary to a specific entry, e.g.: > >revDocumentationGo “securityPermissions" > > What is the current command for this in v8.0?

Re: SSL with "accept" command?

2016-09-08 Thread Bob Sneidar
I got this back: Robert, That tool is written using the .Net framework. The framework has an SSLStream class built in that allows you to easily secure any stream. If you are looking for a cross platform solution you might want to look at (SSLSocketFactory) for java or Open SSL if native.

Re: SSL with "accept" command?

2016-09-08 Thread Bob Sneidar
Somewhat oversimplified to say the least. :-) Bob S On Sep 7, 2016, at 20:03 , ahsoftware > wrote: OpenSSL 2.0 was apparently compromised a couple years back (if you recall the heartbleed bug) and TLS got caught up in it because TLS 1.0 was

new IDE command for revDocumentationGo?

2016-09-08 Thread Richard Gaskin
In IDE < 8.0 the revDocumentationGo command could be used to open the Dictionary to a specific entry, e.g.: revDocumentationGo "securityPermissions" What is the current command for this in v8.0? Where can I find a guide to such IDE commands and functions? -- Richard Gaskin Fourth World

Re: SQL joining from list of values to match single value?

2016-09-08 Thread Ben Rubinstein
This may be one of those unhelpful responses which suggests doing something different instead of answering your question, so apologies in advance - I don't know how to do the thing you're trying to do. But if you have control of the database structure, could you re-engineer to do use a

Re: Threading (plus random question)

2016-09-08 Thread Monte Goulding
> On 9 Sep 2016, at 5:38 AM, Richard Gaskin wrote: > > Speaking of: I dislike being overwhelmed with too many Prefs settings as > much as teams hate the technical debt they impose, but - > > I wonder if it makes sense to add some sort of option to stop the

Re: urlResponse empty in 8.1.0RC1

2016-09-08 Thread Trevor DeVore
On Thu, Sep 8, 2016 at 2:46 PM, Richard Gaskin wrote: > LC supports PUT in addition to GET and POST? > > I thought that only worked for FTP. When was that added for HTTP? I see > that's now part of the Dict entry for "put", but the only version number is > "1.0"

Re: urlResponse empty in 8.1.0RC1

2016-09-08 Thread Richard Gaskin
pink wrote: > put tJson into URL(tURL) LC supports PUT in addition to GET and POST? I thought that only worked for FTP. When was that added for HTTP? I see that's now part of the Dict entry for "put", but the only version number is "1.0" for the introduction of the token, and I

Re: Threading (plus random question)

2016-09-08 Thread Richard Gaskin
Monte Goulding wrote: >> On 9 Sep 2016, at 2:40 AM, Richard Gaskin wrote: >> >> Personally I prefer SuperCard's Cmd-[ and Cmd-] > > I have plans for to use those for in/outdent which they are commonly > used for. Particularly in multiline comments but also when auto > format is off. In a word

Re: urlResponse empty in 8.1.0RC1

2016-09-08 Thread Monte Goulding
Please open a bug report as this sounds like a tsNet regression. Thanks Monte Sent from my iPhone > On 9 Sep 2016, at 12:35 AM, pink wrote: > > I am using CouchDB in 8.1 and here is my problem: > > these are the two crucial commands for putting a document into CouchDB >

Re: Threading (plus random question)

2016-09-08 Thread Monte Goulding
I have plans for to use those for in/outdent which they are commonly used for. Particularly in multiline comments but also when auto format is off. Sent from my iPhone > On 9 Sep 2016, at 2:40 AM, Richard Gaskin wrote: > > Personally I prefer SuperCard's Cmd-[ and

Re: Script Editor focus (was Re: Threading (plus random question)_

2016-09-08 Thread Monte Goulding
Actually that annoys me too. I've had multiple times where I thought the it didn't open but actually it was just behind a stack. I'll see if I can find some time to look into that. Sent from my iPhone > On 8 Sep 2016, at 11:47 PM, Ben Rubinstein wrote: > > To hijack the

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Roger Eller
On Thu, Sep 8, 2016 at 2:15 PM, Fraser Gordon wrote: > All this work is needed just to keep up with changes Apple have made - > it isn't about adding support for new features, it's just keeping things > working. > > Android, on the other hand, is very good about

Re: Device rotation and browser widget

2016-09-08 Thread Sannyasin Brahmanathaswami
The caveat is: Safari app in iOS and Chrome app on Android "own" the entire card rect. Since, in LC we can set that rect for the browser widget to anything we want… how exactly should it be have when the phone is turned sideways? or turned "upright" (if watching a movie in e.g. Youtube,

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Colin Holgate
Another factor in the iOS support compared to Android is that with iOS the majority of users update to the latest version right away, whereas with Android you’re at the mercy of the phone manufacturer, who may never get around to updating their version of the OS. The percentage of users with

Re: SQL joining from list of values to match single value?

2016-09-08 Thread Peter Haworth
Never a good idea to put lists of items into a single column. If you need that capability, best to define another table with uniqdna column as a foreign key to your main table and a column to hold a single pardna, then have 1 row for each uniqdna/pardna pair. With thst structure the query is

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread J. Landman Gay
On 9/8/16 12:50 PM, Richard Gaskin wrote: LiveCode provides the basics for a wide range of apps on every major desktop and mobile platform. Some features take only minutes where they might take days in C. A couple of years ago my nephew had just finished an intro programming class. I was

Re: Forum digests

2016-09-08 Thread J. Landman Gay
On 9/8/16 11:34 AM, Mike Kerner wrote: I do and I did On Thu, Sep 8, 2016 at 12:32 PM, J. Landman Gay wrote: Does anyone else get the forum digest? I haven't received one for a couple of days and want to know if it's my server or LC. Thanks. Oddly enough, after I

Re: Threading (plus random question)

2016-09-08 Thread Richard Gaskin
Mike Kerner wrote: > Yes, there's a lot you can do with a script. If we got a few people > together who are interested in hacking LC, though, we could add it as > a feature on a community hack day. If we can get some movement on bug fixes I'd happily support a Hack Day. As for this particular

Re: Debugger forgetting soft breakpoints

2016-09-08 Thread J. Landman Gay
On 9/7/16 3:26 PM, Monte Goulding wrote: ay, because nobody did any work on the debugger for 8.1 so it’s good that it didn’t break all by itself ;-) *I* broke all by myself. I wish I could blame it on you guys. :) -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive

Re: SQL joining from list of values to match single value?

2016-09-08 Thread Mike Kerner
I would make IS IN work, and do it in two queries, OR, in the case where you have something less than 10k values, just build a container and chunk it. If that wasn't an option, I'd N:N it, and just add the extra tables and a join. On Thu, Sep 8, 2016 at 1:16 PM, Dr. Hawkins

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Richard Gaskin
Fraser Gordon wrote: > Adding new platform-specific features to the core engine is > surprisingly difficult and writing externals using Android APIs > can be tricky (due to needing to use both C++ and Java) so not > many third-parties do it, which is why we're busy working on > the 'Infinite

Re: Threading (plus random question)

2016-09-08 Thread Mike Kerner
Then it's two hands, at least on every keyboard I use, which still takes the right hand out of commission. Yes, there's a lot you can do with a script. If we got a few people together who are interested in hacking LC, though, we could add it as a feature on a community hack day. On Thu, Sep 8,

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Fraser Gordon
On 08/09/2016 17:37, Roger Eller wrote: > What I meant to ask is, which specific NEW Android 7.0 features > aresupported in LC? Where is the latest list of mobile features that > wouldshow LiveCodes commitment for keeping parity between supported > mobileplatforms? > ~Roger The reason more work

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Richard Gaskin
Roger Eller wrote: > Android 7.0 Nougat is the latest version currently. > > The killer feature of 7 is the ability to run 2 apps at the same > time, and share screen space (side by side). It looks like that's declarable in the manifest:

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Roger Eller
On Thu, Sep 8, 2016 at 12:52 PM, Richard Gaskin wrote: > Roger Eller wrote: > > > On Thu, Sep 8, 2016 at 11:17 AM, Peter TB Brett wrote: > >> LiveCode already supports deployment to Android 7.0. > > > > What I meant to ask is, which specific NEW Android 7.0 features

SQL joining from list of values to match single value?

2016-09-08 Thread Dr. Hawkins
I've been trying to wrap my head around this query for weeks, and hope someone can point out what I'm missing. In my table, the main key is uniqDna, an integer. There can also be dpdnDnas and parDnas, the uniqDna of a dependent or parent dna. I'm not seeking any good way to keep the dndDnas and

Re: Script Editor focus (was Re: Threading (plus random question)_

2016-09-08 Thread Ben Rubinstein
On 08/09/2016 16:14, J. Landman Gay wrote: The "window appears behind" problem happens with the dictionary too when you choose to look up a term using the contextual menu in the script editor. Is there a bug report on this? I'll add a comment. It's not very good, but it will be improved by

Re: Threading (plus random question)

2016-09-08 Thread Richard Gaskin
Mike Kerner wrote: > On Thu, Sep 8, 2016 at 12:40 PM, Richard Gaskin wrote: > >> J. Landman Gay wrote: >> >> > I have the same issue with ctrl/cmd 0 and 9 and being right handed. >> > I have been capturing control -tab for years in a frontscript. It >> > would be very convenient if LC adopted

Re: Threading (plus random question)

2016-09-08 Thread Richard Gaskin
Rod McCall wrote: > I asked a similar question a few years back, but is threading now > supported in LiveCode? Or indeed are there any plans to support it? Like Mike said, if you need concurrency you can get that today with multiprocessing. On OS X and Linux this is nearly as efficient as

Re: Threading (plus random question)

2016-09-08 Thread Mike Kerner
Again, not convenient for right-handers. On Thu, Sep 8, 2016 at 12:40 PM, Richard Gaskin wrote: > J. Landman Gay wrote: > > > I have the same issue with ctrl/cmd 0 and 9 and being right handed. > > I have been capturing control -tab for years in a frontscript. It > >

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Richard Gaskin
Roger Eller wrote: > On Thu, Sep 8, 2016 at 11:17 AM, Peter TB Brett wrote: >> LiveCode already supports deployment to Android 7.0. > > What I meant to ask is, which specific NEW Android 7.0 features are > supported in LC? I didn't see anything in the Release Notes for the latest build that was

Re: Device rotation and browser widget

2016-09-08 Thread J. Landman Gay
I tried to do that but I'm not getting any resizestack message at all. One permutation did send the message but the browser still failed to resize correctly so I changed the script and now I can't remember what I did when the message was sent. I've been juggling things between

Re: Threading (plus random question)

2016-09-08 Thread Richard Gaskin
J. Landman Gay wrote: > I have the same issue with ctrl/cmd 0 and 9 and being right handed. > I have been capturing control -tab for years in a frontscript. It > would be very convenient if LC adopted that. Control-Tab is handy on a Mac, but the rest of the world has been using it to switch

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Roger Eller
On Thu, Sep 8, 2016 at 11:17 AM, Peter TB Brett wrote: > > > On 08/09/2016 16:06, Roger Eller wrote: > >> What is the timeline for LiveCode support in Android 7.0? >> >> https://www.android.com/versions/nougat-7-0/ >> > > LiveCode already supports deployment to Android

Re: Threading (plus random question)

2016-09-08 Thread J. Landman Gay
I have the same issue with ctrl/cmd 0 and 9 and being right handed. I have been capturing control -tab for years in a frontscript. It would be very convenient if LC adopted that. Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software |

Re: Forum digests

2016-09-08 Thread Mike Kerner
I do and I did On Thu, Sep 8, 2016 at 12:32 PM, J. Landman Gay wrote: > Does anyone else get the forum digest? I haven't received one for a couple > of days and want to know if it's my server or LC. > > Jacqueline Landman Gay | jac...@hyperactivesw.com >

Re: Forum digests

2016-09-08 Thread Roger Guay
I’m getting now, but it is irregular to say the least… > On Sep 8, 2016, at 9:32 AM, J. Landman Gay wrote: > > Does anyone else get the forum digest? I haven't received one for a couple of > days and want to know if it's my server or LC. > > Jacqueline Landman Gay

Forum digests

2016-09-08 Thread J. Landman Gay
Does anyone else get the forum digest? I haven't received one for a couple of days and want to know if it's my server or LC. Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: Threading (plus random question)

2016-09-08 Thread Mike Kerner
The thing I don't like about ctrl/cmd 0 and 9 is that it's an awkward reach when you're trying to do it by touch, and if you're right-handed, you can't do it while having your right on the mouse or trackpad, either. ctrl/cmd-` would be better IMHO, not that I miss HC's cmd-tab, or anything. I'd

Re: Threading (plus random question)

2016-09-08 Thread Devin Asay
> On Sep 8, 2016, at 8:53 AM, ahsoftware wrote: > > On 09/08/2016 06:52 AM, Mike Kerner wrote: > >> • Shortcut to switch between browse and pointer > > control-tab? And Cmd/cntl - 9 for Browse/run mode and cmd/cntl - 0 for pointer/edit mode. Devin Devin Asay Director

Re: Threading (plus random question)

2016-09-08 Thread Devin Asay
> On Sep 8, 2016, at 7:18 AM, Monte Goulding wrote: > > I wonder how many people would scream if we removed the enter closes an > applied tab feature? Keep enter to apply though. Keep it please. I use it constantly and it saves a lot of mousing. Devin Devin Asay Director

Re: Threading (plus random question)

2016-09-08 Thread Mike Kerner
ctrl-tab is a good idea, that's what you use in a browser The focus flip is a problem that causes the ide window to get the focus when the script editor had the focus (or vice versa). I forget the bug number, but you could be editing scripts in the SE, hit backspace, and wind up deleting the

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Roger Eller
What is the timeline for LiveCode support in Android 7.0? https://www.android.com/versions/nougat-7-0/ ~Roger ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Mark Talluto
> On Sep 8, 2016, at 12:57 AM, Peter TB Brett wrote: > > Hi all, > > Since Xcode 8 GM is now available for download by members of the Apple > developer program, I thought it might be helpful to give you an update on our > plans for enabling LiveCode app deployment

Re: Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Peter TB Brett
On 08/09/2016 16:06, Roger Eller wrote: What is the timeline for LiveCode support in Android 7.0? https://www.android.com/versions/nougat-7-0/ LiveCode already supports deployment to Android 7.0. Peter -- Dr Peter Brett

Re: Script Editor focus (was Re: Threading (plus random question)_

2016-09-08 Thread J. Landman Gay
The "window appears behind" problem happens with the dictionary too when you choose to look up a term using the contextual menu in the script editor. Is there a bug report on this? I'll add a comment. Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software

Re: Threading (plus random question)

2016-09-08 Thread ahsoftware
On 09/08/2016 06:52 AM, Mike Kerner wrote: • Shortcut to switch between browse and pointer control-tab? -- Mark Wieder ahsoftw...@gmail.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: Threading (plus random question)

2016-09-08 Thread J. Landman Gay
I use it all the time, more than any other method. What's the "focus flip"? What other issues are there? Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com On September 8, 2016 8:25:33 AM Rod McCall

Re: Script Editor focus (was Re: Threading (plus random question)_

2016-09-08 Thread Mike Kerner
This may be related to fixing the other focus issue that was causing me to toss lappies about, namely when the SE LOST the focus, and a delete/backspace caused carefully crafted objects to magically die (while their SE tab remained open). I'm with you, I like the enter shortcut, but I'm also all

urlResponse empty in 8.1.0RC1

2016-09-08 Thread pink
I am using CouchDB in 8.1 and here is my problem: these are the two crucial commands for putting a document into CouchDB put tJson into URL(tURL) put the urlResponse into tResult the urlResponse should contain a JSON with the result of the REST call, for example it could say:

Re: Threading (plus random question)

2016-09-08 Thread Mike Bonner
Despite my own clumsiness issues, I like it the way it is. (if everything that was affected by my fluctuating dexterity was "fixed" all that would be left is one really big hard to press button) On Thu, Sep 8, 2016 at 7:52 AM, Mike Kerner wrote: > I have a number of

Script Editor focus (was Re: Threading (plus random question)_

2016-09-08 Thread Ben Rubinstein
FWIW I use enter to compile, and then close, the Script Editor all the time - hardly ever use the mouse - and have never to the best of my recollection had problems with too many tabs closing. Maybe my keyboard repeat is slower than other peoples? I'm not sure how hard I'd scream if enter to

Re: Threading (plus random question)

2016-09-08 Thread Mike Kerner
I have a number of preferences that I'd like to add, anyway, so this is a great time to talk about them, and maybe get a little community project going. Here are some others: • Relative paths: I use multiple machines, and even though I store everything in Google Drive, the usernames aren't the

Re: Threading (plus random question)

2016-09-08 Thread Sannyasin Brahmanathaswami
"From my perspective the Enter key issue is driving me nuts... " Please! Don't make us have go to the mouse to close an SE tab...i love the feature (hit enter twice) Not screaming. Just sayin' got a bad enough wrist as it is In fact more robust, user configurable keyboard short cuts for

Re: Threading (plus random question)

2016-09-08 Thread Mike Kerner
Yes, it's an old, old, old feature from HC, if I remember, but sometimes I wind up with the focus going from the IDE to the SE for some reason (and sometimes the other way, but that seems to have been mostly fixed in 8.1, I believe), so I think I'm finishing a property edit in the IDE, but instead

Re: Threading (plus random question)

2016-09-08 Thread Monte Goulding
I wonder how many people would scream if we removed the enter closes an applied tab feature? Keep enter to apply though. Sent from my iPhone > On 8 Sep 2016, at 10:58 PM, Mike Bonner wrote: > > Open the editor, make a change, > tap enter twice and the change is applied and

Re: Threading (plus random question)

2016-09-08 Thread Rod McCall
>From my perspective the Enter key issue is driving me nuts... Rod McCall Researcher: HCI, Augmented Reality, Games and In-car Systems www.rodmc.com twitter: rodlux On Thu, Sep 8, 2016 at 3:20 PM, Mike Kerner wrote: > Monte, why not make it a preference? I

Re: Threading (plus random question)

2016-09-08 Thread Mike Kerner
Monte, why not make it a preference? I personally like it, except when I get the focus flip. On Thu, Sep 8, 2016 at 9:18 AM, Monte Goulding wrote: > I wonder how many people would scream if we removed the enter closes an > applied tab feature? Keep enter to apply though. > >

Re: Threading (plus random question)

2016-09-08 Thread Mike Bonner
IIRC thats the editor tabs closing on enter is a feature. Press once on a dirty tab and it compiles, press it on a green tab and it closes. I think the purpose is to speed up quicky edits. Open the editor, make a change, tap enter twice and the change is applied and gone. Unfortunately, a

Re: Threading (plus random question)

2016-09-08 Thread Mike Kerner
It still is not directly supported, you still do it the "old" way - one app launches and messages multiple instances of the "process" apps. I only occasionally have an issue where KB enter closes the SE, but usually it is when all tabs are green. On Thu, Sep 8, 2016 at 5:32 AM, Rod McCall

Re: Very OT - Bad pun

2016-09-08 Thread David V Glasgow
Are you thinking of A1? That is a famous road which runs from London to Edinburgh via Leicestershire, and is also a steak sauce ;-) > On 27 Aug 2016, at 12:25 am, Bob Sneidar wrote: > > Isn't that a steak sauce? > > Bob S > > > On Aug 25, 2016, at 08:28 ,

Re: The Joy of Removing Features - Part 3: Presenting the duplicate files / photos info to the user.

2016-09-08 Thread Kay C Lan
Thanks for sharing. You have at least one avid fan. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Threading (plus random question)

2016-09-08 Thread Rod McCall
Dear All, I asked a similar question a few years back, but is threading now supported in LiveCode? Or indeed are there any plans to support it? Out of curiosity does anyone else have problems with the script editor closing when the Enter key on the numeric keypad is pressed? (Keyboard: Swiss

Redpark serial cables

2016-09-08 Thread Ben Rubinstein
Has anyone used LiveCode on iOS with any of the Redpark serial cables, e.g. http://redpark.com/ttl-serial-cable-c2-ttl/ ? TIA, Ben ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage

Re: Another scary bug??

2016-09-08 Thread Ben Rubinstein
It is still happening in 8.1-rc2. On 07/09/2016 23:09, Bob Sneidar wrote: And now, even scarier, I copied the values out of the field I was testign with, and pasted the value into the code which uses hard coded values and THAT WORKS NOW when a second ago before I pasted the value, it did NOT

Re: System date

2016-09-08 Thread Antti Ilola
Checked. 2016-09-07 15:47 GMT+03:00 Robert Brenstein : > The problem might be that changing the language does not always change the > date formats. These are separate settings under OSX. > > ___ use-livecode mailing list

Xcode 8 / iOS 10 support coming in 8.1.1

2016-09-08 Thread Peter TB Brett
Hi all, Since Xcode 8 GM is now available for download by members of the Apple developer program, I thought it might be helpful to give you an update on our plans for enabling LiveCode app deployment using Xcode 8. - iOS 10 deployment using Xcode 8 will be available in the 8.1.1 release -