Re: [off]sublimeText update

2019-03-13 Thread Mike Kerner via use-livecode
irectory for changes to the files. The ST plugin works by > sending messages to a server process running in the IDE. > > forums.livecode.com/viewtopic.php?f=77&t=31079 > github.com/bwmilby/lc-misc/tree/master/ScriptTracker > github.com/bwmilby/lc-misc/blob/master/ScriptTracker/Script

[off]sublimeText update

2019-03-13 Thread Mike Kerner via use-livecode
The new sublimeText update dropped this morning, and it's pretty sweet. It now has things like git status integration, which is very cool. It would be really cool if we could get better integration between external text editors and ST. The ST kluge works great for updating scripts live in LC, exce

Re: Need crash course in Dropbox library

2019-02-17 Thread Mike Kerner via use-livecode
Hey pink Yes, you are just going to put 150MB at a time into the pData parameter and ship it. I have not uploaded any binary files, just encoded text files, so you may have to fiddle with encoding to make sure you don't get into any trouble. You should be able to open/read the files using put url "

Re: Need crash course in Dropbox library

2019-02-15 Thread Mike Kerner via use-livecode
Hey, pink, thanks for the clarification. First of all, is there a reason why you are doing it this way instead of using dropboxUpload? If you use dropboxUpload you can do it all in one shot. Gerard's stack explains the process and how to use the various commands Doing it the way you are doing it,

Re: Need crash course in Dropbox library

2019-02-15 Thread Mike Kerner via use-livecode
Then I would suggest Grab Gerard's LC dropbox v2 goodies that are at https://github.com/macMikey/dropboxapi_v2 The LC dropbox library was "inspired by" Gerard's library. The command names are different, but I'm pretty sure it's one-to-one and I'm pretty sure the syntax is identical. Where it isn'

Re: Need crash course in Dropbox library

2019-02-14 Thread Mike Kerner via use-livecode
sup pink? Are you using the LC dropbox library or the phx library? We can do this here or off-list. On Thu, Feb 14, 2019 at 9:12 AM pink via use-livecode < use-livecode@lists.runrev.com> wrote: > Sorry for asking like this, but I need a quick tutorial in using the > dropbox > library. I have an

Re: preOpenCard not running on iPhoneX simulator

2018-12-16 Thread Mike Kerner via use-livecode
Trap inside the preopencard handler. LC fails silently in built applications, so if some code or routine that is either directly or indirectly triggered by the preopencard handler fails, the handler will just stop executing. You might be able to find out what's going on with the mobile debugger, t

Re: Can We Position the Label/Name of a Button

2018-12-04 Thread Mike Kerner via use-livecode
have you tried setting the textAlign? On Tue, Dec 4, 2018 at 3:02 PM Sannyasin Brahmanathaswami via use-livecode < use-livecode@lists.runrev.com> wrote: > See: > > http://wiki.hindu.org/screenshots/button-label-center.png > > Syntax > set the iconGravity of button to position > Summary >

Re: glo webhooks

2018-12-03 Thread Mike Kerner via use-livecode
> for the rest of us” origins. For this reason it is becoming hard to be > productive in LC just using common sense and programming experience. > > But I guess this is a rant, so I will stop. > > Graham > > > On 3 Dec 2018, at 16:23, Mike Kerner via use-livecode < > u

Re: glo webhooks

2018-12-03 Thread Mike Kerner via use-livecode
iness, to read > something about software development that means absolutely nothing to me… > OK, Google will come to the rescue, but I am seriously thinking that maybe > it's time to give up. > > (Sigh) > > Graham > > > On 3 Dec 2018, at 14:51, Mike Kerner via us

glo webhooks

2018-12-03 Thread Mike Kerner via use-livecode
I see that gitkraken's glo boards now support webhooks who's using gitkraken, and is anyone thinking about implementing webhook handling for glo? -- 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

Re: LiveCode equivalent to 'cron' for automated background functions?

2018-11-29 Thread Mike Kerner via use-livecode
@tom Yeah, that was a nifty demonstration of how to get around single-threadedness, especially after Mark and I had been talking about that very topic for a week or so. I was thinking that it would be cool to attach various LC externals and libraries to make a robust way to implement some better f

Re: LiveCode equivalent to 'cron' for automated background functions?

2018-11-28 Thread Mike Kerner via use-livecode
ntially useful for a couple of > lightweight activities I’d like to have ticking-over in the background on > my LC Server, pending page visits. > Best, > Keith > > > On 28 Nov 2018, at 17:30, Mike Kerner via use-livecode < > use-livecode@lists.runrev.com> wrote: > &g

Re: LiveCode equivalent to 'cron' for automated background functions?

2018-11-28 Thread Mike Kerner via use-livecode
In the meantime, there are two commands to have a look at if you want to have a crack at rolling your own send and do send "doSomething" to me in 60 seconds then there is a way to see if you're interrupting an asynchronous activity pendingMessages On Wed, Nov 28, 2018 at 12:02

Re: LiveCode equivalent to 'cron' for automated background functions?

2018-11-28 Thread Mike Kerner via use-livecode
LC is single-threaded so CRON is a little tricky. I have code that works with those limitations. I suppose I should repo it. Some day I might even get the secondary process part working. On Wed, Nov 28, 2018 at 11:15 AM Keith Clarke via use-livecode < use-livecode@lists.runrev.com> wrote: > Fo

Re: directory tree view

2018-11-16 Thread Mike Kerner via use-livecode
Yep, some more testing shows that it was a bug in my test code that was leading me to believe that the widget object code was embedded in the stack. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscrib

Re: directory tree view

2018-11-16 Thread Mike Kerner via use-livecode
Hmm. I just seem to have answered my own question. It seems that it is the latter. I think we need to have a discussion with LC about widget versions. On Fri, Nov 16, 2018 at 4:11 PM Mike Kerner wrote: > Brian, > So walk me through this: Is the LCB code for the widget a component of

Re: directory tree view

2018-11-16 Thread Mike Kerner via use-livecode
y > release of 9. > > Thanks, > Brian > On Nov 16, 2018, 9:06 AM -0600, Mike Kerner via use-livecode < > use-livecode@lists.runrev.com>, wrote: > > Brian, > > The widgets are backward-compatible, right? I can include the new version > >

Re: directory tree view

2018-11-16 Thread Mike Kerner via use-livecode
Brian, The widgets are backward-compatible, right? I can include the new version of the widget and it will work in any version of 8 or 9? ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and mana

Re: Reading data from Google Sheets

2018-11-15 Thread Mike Kerner via use-livecode
why aren't you using merggoogle again? It has issues but it would be easier to get going. On Thu, Nov 15, 2018 at 3:06 PM JJS via use-livecode < use-livecode@lists.runrev.com> wrote: > i used this 3 years ago, found some examples and altered it a bit, still > works ok. > > we used this to find i

directory tree view

2018-11-15 Thread Mike Kerner via use-livecode
I fought through the various tree view issues and got it to build a directory list that's kind-of functional. Please break and report issues on the repo. https://github.com/macMikey/directoryTreeView -- On the first day, God created the heavens and the Earth On the second day, God created the oce

Re: NSURLErrorDomain error -999

2018-11-14 Thread Mike Kerner via use-livecode
however since it's macos i'm sure it's similar to ios. I'll stick a try/catch in. It's weird because the file that it's complaining about isn't even one that's being loaded. On Wed, Nov 14, 2018 at 11:20 AM Mike Kerner wrote: > mac not ios >

Re: NSURLErrorDomain error -999

2018-11-14 Thread Mike Kerner via use-livecode
mac not ios On Wed, Nov 14, 2018 at 10:23 AM panagiotis merakos via use-livecode < use-livecode@lists.runrev.com> wrote: > Do you see this on the (mobileControlCreate) iOS browser? > > I think you can just ignore it. > > https://quality.livecode.com/show_bug.cgi?id=12575 > > Best, > Panos > -- >

NSURLErrorDomain error -999

2018-11-14 Thread Mike Kerner via use-livecode
Any idea what the error means, before I fire up the sniffer? -- 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, "This is good."

Re: Reading data from Google Sheets

2018-11-14 Thread Mike Kerner via use-livecode
There's also the mergGoogle external. On Wed, Nov 14, 2018 at 12:37 AM Kaveh Bazargan via use-livecode < use-livecode@lists.runrev.com> wrote: > Thank you so much to both. And Andre, if you could write a blog post for > every question I have it would help me a lot. ;-) > > Actually I think I had

Re: tree view hide key

2018-11-02 Thread Mike Kerner via use-livecode
collapse the entire tree (optionally > > > setting the arrayData at the same time) > > > - MouseUp no longer registers as a click when the MouseDown was on a > > > different row > > > > > > I don't see anything else in the QCC for the Tree Widget tha

Re: Tab between fields on mobile device

2018-11-01 Thread Mike Kerner via use-livecode
Instead of using tab we use enterkey, that way both hardware and on-screen keyboards work. On Thu, Nov 1, 2018 at 9:42 AM Andrew Bell via use-livecode < use-livecode@lists.runrev.com> wrote: > I'm trying to tab from field to field in a mobile app when pressing > the TAB key on a bluetooth keyboar

Re: tree view hide key

2018-10-31 Thread Mike Kerner via use-livecode
I was thinking about using it for a directory view. It seemed like a natural fit - nodes are subdirectories and leaves are files. You can't just limit the hiliteChanged event to leaves, so you have to be able to determine if the user clicked on a leaf or a node, and if it's a node behave differen

Re: tree view hide key

2018-10-31 Thread Mike Kerner via use-livecode
ent row > > I don't see anything else in the QCC for the Tree Widget that I can address > at the moment. > > Thanks, > Brian > > On Tue, Oct 30, 2018 at 5:08 PM Bob Sneidar via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > Yeah I real

tree view hide key

2018-10-30 Thread Mike Kerner via use-livecode
In tree view can you hide the keys of the array? I was messing with using it to display directory and subdirectory contents, but it seems that you have to display the key, which makes some other things more difficult. ___ use-livecode mailing list use-li

Re: ?Make Docset? updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-29 Thread Mike Kerner via use-livecode
I'm going to wait on both until later today and see if they auto-update. The ipad auto-updated for me on Saturday. On Sat, Oct 27, 2018 at 10:27 PM James Hale via use-livecode < use-livecode@lists.runrev.com> wrote: > From Mike > > First of all, thanks a lot for doing this. Dash is now my defaul

Re: “Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread Mike Kerner via use-livecode
I should say that just worked on mac (as in I manually updated). On ios, it just prompted me that there was an update and auto-updated. On Sat, Oct 27, 2018 at 8:12 PM Mike Kerner wrote: > is it because of the versioning? Anyway, thanks, that worked. > > On Sat, Oct 27, 2018 at

Re: “Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread Mike Kerner via use-livecode
in docset. > > > > Best Regards, > > Ron > > > >> On Oct 27, 2018, at 6:45 AM, Mike Kerner via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> > >> First of all, thanks a lot for doing this. Dash is now my default way >

Re: “Make Docset” updated to 3.1, DASH docset for LC now at 1.7.1

2018-10-27 Thread Mike Kerner via use-livecode
First of all, thanks a lot for doing this. Dash is now my default way to access the docs, on both my ipad and mac. I love it. Second, I have auto-updates turned on for both platforms, but they both show the LC docs at 1.6.1 ___ use-livecode mailing list

Re: [off]Hactoberfest

2018-10-26 Thread Mike Kerner via use-livecode
FIVE DAYS Y'ALL! I got my five pull requests in, and just confirmed my t-shirt. On Tue, Oct 23, 2018 at 8:01 AM Trevor DeVore via use-livecode < use-livecode@lists.runrev.com> wrote: > On Fri, Oct 19, 2018 at 9:54 AM Trevor DeVore > wrote: > > > I've added another screencast that shows how to a

Re: [off]Hactoberfest

2018-10-19 Thread Mike Kerner via use-livecode
Something to remember, everyone, is even if you have no idea what you're doing, you probably can still help. Fixing something in docs is a great way to start. • There are a bunch of LC-related projects on GitHub. You can do something for ANY of them. Me? I've been working on Trevor's Levure fr

[off]Hactoberfest

2018-10-12 Thread Mike Kerner via use-livecode
Hactoberfest is back live at GitHub - submit 5 pull requests in October and maybe win a t-shirt. There are a bunch of LC projects on github, so now's the time to make an improvement to one of them and enter! https://hacktoberfest.digitalocean.com -- On the first day, God created the heavens and

Re: Reading PDF Form Data in LiveCode?

2018-10-10 Thread Mike Kerner via use-livecode
That looks like an interesting list. We just started on a new app in LC for managing troves of scanned documents, and one of the tasks we were planning to add was connecting to an OCR service and a PDF-converter. On Wed, Oct 10, 2018 at 11:04 AM Stephen Barncard via use-livecode < use-livecode@lis

Re: OT our shipping software is finally finished

2018-10-07 Thread Mike Kerner via use-livecode
Since we're talking about shipping software, I prefer to have our forklift operators having mobiles on their trucks instead of lappies, but we do have a bunch of desktop (and server, and mainframe) apps, it's just that most of them are written in tools other than LC. I will say that integrating ou

[off] Do me a solid

2018-09-29 Thread Mike Kerner via use-livecode
https://www.fastcompany.com/90243936/exclusive-tim-berners-lee-tells-us-his-radical-new-plan-to-upend-the-world-wide-web -- 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

Re: App Dead on iOS 12

2018-09-28 Thread Mike Kerner via use-livecode
ange > anything. > > > > > Am 28.09.2018 um 21:21 schrieb Mike Kerner via use-livecode < > use-livecode@lists.runrev.com>: > > > > interesting. What topology are you using, and did you try expanding the > > text area? > > > > On Fri,

Re: App Dead on iOS 12

2018-09-28 Thread Mike Kerner via use-livecode
ex. > > > > Under Mac OS X i do not see these wrong gaps. > > > > > > > >> Am 28.09.2018 um 19:22 schrieb Mike Kerner via use-livecode < > use-livecode@lists.runrev.com>: > >> > >> fonts are rendered differently in 9 than in 8. Charact

Re: App Dead on iOS 12

2018-09-28 Thread Mike Kerner via use-livecode
ts, could you please give some more information about your font issues. > > Regards, > > Matthias Rebbe > > > > Am 28.09.2018 um 15:43 schrieb Mike Kerner via use-livecode < > use-livecode@lists.runrev.com>: > > > > on the fonts? Mark knows about it. It&#

Re: App Dead on iOS 12

2018-09-28 Thread Mike Kerner via use-livecode
on the fonts? Mark knows about it. It's a feature. On Thu, Sep 27, 2018 at 7:11 PM Monte Goulding via use-livecode < use-livecode@lists.runrev.com> wrote: > > > On 28 Sep 2018, at 7:03 am, Mike Kerner via use-livecode < > use-livecode@lists.runrev.com> wrote: &

Re: App Dead on iOS 12

2018-09-27 Thread Mike Kerner via use-livecode
No joy using 8.x. 9.x breaks fonts so we're stuck in 8 until we have someone fix all the font issues with 9. On Mon, Sep 24, 2018 at 9:50 AM panagiotis merakos via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi all, > > If you folks still see crashes on startup on iOS 12 and you are u

Re: Stacks whose names start with "rev"

2018-09-27 Thread Mike Kerner via use-livecode
what if the filename and the stack name are different? On Thu, Sep 27, 2018 at 3:23 PM dunbarxx via use-livecode < use-livecode@lists.runrev.com> wrote: > Jacque. > > Can you include an invisible, unprintable char between the "R" and the "E"? > > Then the file name would appear to read as "rev" b

Re: (browser) focus hocus pocus broke us

2018-09-26 Thread Mike Kerner via use-livecode
FYI, Paul's final example, which is like an LC version of acrobat reader, now has its own repo (https://github.com/macmikey/xpdf) On Tue, Sep 25, 2018 at 10:58 AM Mike Kerner wrote: > h, so far so good. > It's really embarrassing that I didn't remember xpdf. At all

Re: (browser) focus hocus pocus broke us

2018-09-25 Thread Mike Kerner via use-livecode
h, so far so good. It's really embarrassing that I didn't remember xpdf. At all. Especially since Paul did a video about it at LCG THIS YEAR. Watching it again now. Thanks PM! On Tue, Sep 25, 2018 at 9:07 AM Mike Kerner wrote: > We do have a business license, and I have no i

Re: (browser) focus hocus pocus broke us

2018-09-25 Thread Mike Kerner via use-livecode
if XPDF > could be useful in your use case. > > Best, > Panos > -- > > On Tue, Sep 25, 2018 at 3:44 AM Mike Kerner via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > I'm loading a pdf, not a web page into the widget. > >

Re: Script-only-stack file issue 9.0.1

2018-09-24 Thread Mike Kerner via use-livecode
If you're on windows, there is no case-sensitivity, so when using git, for example, there are issues with "file" and "FILE" because they're the same to windows. Then there are the names thou shalt never use (con, prn, aux, nul, com1, com2, com3, com4, com5, com6, com7, com8, com9, com0, lpt1, lpt2

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread Mike Kerner via use-livecode
I'm loading a pdf, not a web page into the widget. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: (browser) focus hocus pocus broke us

2018-09-24 Thread Mike Kerner via use-livecode
2874/how-to-detect-focus-on-gtksocket > > < > > > https://stackoverflow.com/questions/50092874/how-to-detect-focus-on-gtksocket > > > > > > > So the PR is in limbo unfortunately… > > > > Cheers > > > > Monte > > &

Re: Script-only-stack file issue 9.0.1

2018-09-24 Thread Mike Kerner via use-livecode
Unfortunately, the tao of lc isn't documented everywhere, and things that work on one os don't work on another, see "All the filenames that work on every platform but not on Windows". There seems to be another issue with single-quotes in paths, even though LC specifically substitutes them into pat

Re: (browser) focus hocus pocus broke us

2018-09-23 Thread Mike Kerner via use-livecode
already tried focusing on another control, and, I have no idea what document.activeElement.blur() is supposed to do, but that didn't fix it either. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: (browser) focus hocus pocus broke us

2018-09-23 Thread Mike Kerner via use-livecode
One additional note, Panos suggested that browserDocumentLoadFailed might be firing. Surprise it is, but the error is "plug-in handled load" but firing a "focus on nothing" inside that event doesn't help, either. On Sun, Sep 23, 2018 at 7:31 AM Mike Kerner wrote: &g

(browser) focus hocus pocus broke us

2018-09-23 Thread Mike Kerner via use-livecode
How do we take focus away from the browser widget? I am loading PDF's into the browser widget. At that point, all key presses get eaten up by the widget (e.g. arrows make the widget scroll), even if a field has the insertion point. Scripting the widget to intercept those events doesn't work. "foc

Re: Script-only-stack file issue 9.0.1

2018-09-22 Thread Mike Kerner via use-livecode
NM. This is related to having double-quotes in a foldername. On Sat, Sep 22, 2018 at 3:47 PM Mike Kerner wrote: > Is anyone having issues with creating and assigning SOS's as behaviors in > 9.0.1? > > -- > On the first day, God created the heavens and the Earth > On the

Script-only-stack file issue 9.0.1

2018-09-22 Thread Mike Kerner via use-livecode
Is anyone having issues with creating and assigning SOS's as behaviors in 9.0.1? -- 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, "This is

Re: best way to open a script-only library stack?

2018-09-19 Thread Mike Kerner via use-livecode
I work on all my SOS's with a text editor instead of in the LC script editor. If you're using Atom or Sublime Text you can generate "projects" which are just pointers to a folder. Then on the left panel there will be a quick-click list of SOS's to edit for that project. If you use Sublime, you c

Re: This is disturbing!

2018-09-06 Thread Mike Kerner via use-livecode
a decision based on other engine > factors. > > I can see it being ok in 99% of cases. > > > On Thu, Sep 6, 2018 at 1:25 PM Mike Kerner via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > Ignoring the leading or trailing whitespace is weird and >

Re: This is disturbing!

2018-09-06 Thread Mike Kerner via use-livecode
ode@lists.runrev.com> wrote: > On 2018-09-06 18:52, Mike Kerner via use-livecode wrote: > > Right. If the explanation is clear then it's not an issue (even if it > > is a > > little weird - "6.abc"="6.xyz" is false but "6."&CR is "6.&qu

Re: This is disturbing!

2018-09-06 Thread Mike Kerner via use-livecode
Right. If the explanation is clear then it's not an issue (even if it is a little weird - "6.abc"="6.xyz" is false but "6."&CR is "6."&space is true) On Thu, Sep 6, 2018 at 12:43 PM Mark Waddingham via use-livecode < use-livecode@lists.runrev.com> wrote: > On 2018-09-06 18:21, Mark Wieder via us

Re: This is disturbing!

2018-09-06 Thread Mike Kerner via use-livecode
so the description seems to imply that the comparison should be as strings if double-quotes are included around the literals. On Thu, Sep 6, 2018 at 12:14 PM Mike Kerner wrote: > Dictionary: > First, if you look in the operands, it says > *The operands value1 and value2 can be numbers

Re: This is disturbing!

2018-09-06 Thread Mike Kerner via use-livecode
Dictionary: First, if you look in the operands, it says *The operands value1 and value2 can be numbers, literal strings of characters (delimited with double quotes), or any sources of value, including arrays.* The example for comparing two strings is "ABC" = "abc" -- true if and only if caseSensit

Re: This is disturbing!

2018-09-06 Thread Mike Kerner via use-livecode
dictionary says when comparing strings we go char by char, and says that quotes around the literal causes it to be evaluated as a string. On Thu, Sep 6, 2018 at 11:57 AM Mike Kerner wrote: > If I put anything else in place of the dot, I get a fail, but with the > dot, i get true > >

Re: This is disturbing!

2018-09-06 Thread Mike Kerner via use-livecode
If I put anything else in place of the dot, I get a fail, but with the dot, i get true On Thu, Sep 6, 2018 at 11:55 AM Tore Nilsen via use-livecode < use-livecode@lists.runrev.com> wrote: > It seems to only compare the integer part of the statements. If you > substitute the integer with a letter,

Re: This is disturbing!

2018-09-06 Thread Mike Kerner via use-livecode
wow. that's not cool. I just tried "is" and yep. is. On Thu, Sep 6, 2018 at 11:47 AM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > Did anyone know that "6. " is equal to "6."??? > > THAT is disturbing! So now we have to check the length of a string as well > to make su

Re: How to get word offset all instances of a string in a chunk of text?

2018-08-31 Thread Mike Kerner via use-livecode
Since the topic of processes came up a few weeks ago I've been thinking about what it would take to build a process/threading framework. I wonder if a text processing subprocessor, written and copiled in 6 would be worth everyone's time. The main app would hand off the data and the command to the

Re: What do we know about LC 10?

2018-08-30 Thread Mike Kerner via use-livecode
Mark tends to complain about the engine, but they also inherited the engine when they bought it from MetaCard. He has said that it is difficult to work on. On Thu, Aug 30, 2018 at 2:57 PM Tom Glod via use-livecode < use-livecode@lists.runrev.com> wrote: > Kevin seemed pretty pumped about it. > >

Re: LiveCode 1.6.1 docset now available

2018-08-30 Thread Mike Kerner via use-livecode
James, Talk about why dash. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: What do we know about LC 10?

2018-08-29 Thread Mike Kerner via use-livecode
we don't even have 9.0.1 out yet. On Wed, Aug 29, 2018 at 3:02 PM Tom Glod via use-livecode < use-livecode@lists.runrev.com> wrote: > Hey folks, > > What do we know about whats coming in LC 10? > > My only hint was the smile on Kevin's face when he mentioned it when him > and Chris were here in

Re: OCR

2018-08-24 Thread Mike Kerner via use-livecode
mp;hl=en > > ~Roger > > > On Mon, Oct 3, 2016 at 9:40 AM, Mike Kerner > wrote: > > > After you sent it, I uploaded a sample of what the camera would see. I > was > > disappointed in the results, so I'm worried that that solution is going > to > > be a

Re: logging

2018-08-18 Thread Mike Kerner via use-livecode
It's a different audience. Choose wisely. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-livecode

Re: logging

2018-08-18 Thread Mike Kerner via use-livecode
insaw really > sharp. > > -- Alex. > > > On 18/08/2018 17:06, Mike Kerner via use-livecode wrote: > > I'm messing with the logger in levure, and looking for feedback, sample > > code, and thoughts others have from your own logging experience. > > • Formatting

logging

2018-08-18 Thread Mike Kerner via use-livecode
I'm messing with the logger in levure, and looking for feedback, sample code, and thoughts others have from your own logging experience. • Formatting • Delimiters • Information you include • Targets (files, message box, dialogs, fields, etc.) -- On the first day, God created the heavens and the E

Re: Livecode Global

2018-08-10 Thread Mike Kerner via use-livecode
And you can pull all the recordings off the website. I'd say the beginner series is worth the price all by itself. That guy is AWESOME. Brian was ok, too. I don't remember anything earth-shattering, which is usually what gets people talking. Lots of good instructionals this time. On Fri, Aug 10

Re: Regaining IDE Efficiency: Property Inspector

2018-08-09 Thread Mike Kerner via use-livecode
I'm not a fan of sheets. I find myself doing constant scrolling because the property I'm looking for never seems to be on the screen, or if I'm changing multiple properties and messing with settings to see what the combination does, I'm constantly going up down up down, overshooting the property,

Re: Home Screen Icon Not Rendered on iOS

2018-07-30 Thread Mike Kerner via use-livecode
makes the needed Android icons. > > > > On Jul 30, 2018, at 8:52 AM, panagiotis merakos via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > > Do the icons have an alpha channel? I *think* they are not allowed to > have > > one. > > &g

Re: iOS multi-line input field

2018-07-30 Thread Mike Kerner via use-livecode
Second one: I've had a similar problem. I think there's a QR for it First one: Try moving your handler to inputEndEditing, just for giggles On Sun, Jul 29, 2018 at 6:30 PM J. Landman Gay via use-livecode < use-livecode@lists.runrev.com> wrote: > I'm looking at a stack with a multi-line input f

Re: Home Screen Icon Not Rendered on iOS

2018-07-30 Thread Mike Kerner via use-livecode
Yes, I've had a similar problem, but I haven't figured it out. I went back and found a couple of icons we had used several years ago. They do work, so I'm also baffled. On Mon, Jul 30, 2018 at 10:11 AM Sannyasin Brahmanathaswami via use-livecode wrote: > Apple continues to give us grief…Anyone

Re: drawing a Barcode without a Barcode font

2018-07-26 Thread Mike Kerner via use-livecode
It doesn't surprise me that the optical scanning on the iphone is performing differently than the ccd or laser scanner on the conveyor are. The laser/ccd is only going to scan in the 600-650 nm wavelength, which is both good and bad. The overall width of the barcode shouldn't matter to the scanner

Re: drawing a Barcode without a Barcode font

2018-07-25 Thread Mike Kerner via use-livecode
What up Matthias? You're using 2 of 5, right? TT can be a little messy depending on how small you try to make the barcodes, and that Zebra isn't going to help. Start with proportionally jacking the widths and then see if you can scan. I meant to ask you this before, but since you got it running I

Re: Help with Bug #19550: Add support for symlinks to standalone builder

2018-07-20 Thread Mike Kerner via use-livecode
A couple of thoughts: 1) There might be cases where symlinks should not be traversed, so there probably should be an option to traverse or not 2) There are probably going to be cases where the symlinks are recursive. I think there should definitely be an option to resolve those. On Fri, Jul 20, 20

Re: odbc "information type out of range"

2018-07-06 Thread Mike Kerner via use-livecode
t; I have no way to test it, but if you change your insert to.. > insert into employee (empno) values (double(-1)) > > Does it make a difference? > > > On Fri, Jul 6, 2018 at 10:14 AM Mike Kerner via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > Hm

Re: odbc "information type out of range"

2018-07-06 Thread Mike Kerner via use-livecode
Hmmm. How about this: The insert is actually succeeding, but I'm getting the error. select count (*) from employee where empno=-1 -> 0 insert into employee (empno) values (-1) -> "revdberr,[Microsoft][ODBC Driver Manager] Information type out of range" select count (*) from employee where empno=

odbc "information type out of range"

2018-07-06 Thread Mike Kerner via use-livecode
I've got an odbc database that I'm trying to write to. From a tool like valentina it works fine, but in LC I'm getting "Information type out of range" from the driver. The line that fails is insert into employee (empno) values (-1) employee is defined as a double. Again, that very same line in v

tsnet dialog

2018-06-26 Thread Mike Kerner via use-livecode
I am catching lc errors, but if tsnet runs into something, it throws up a dialog, anyway. For example I have multiple wifi zones in my house. Some of those are a good distance away from where I might be. When my lappie auto-connects to one of them, the connection will naturally be slow. In that

Re: [ANN] v2.2 of DB Lib

2018-06-19 Thread Mike Kerner via use-livecode
; > LC and out of LC into the databases. I still need to iron out some cases > > but I think it is better. > > > > On Tue, Jun 19, 2018 at 10:01 AM, Mike Kerner via use-livecode < > > use-livecode@lists.runrev.com> wrote: > > > >> what is the difference?

Re: [ANN] v2.2 of DB Lib

2018-06-19 Thread Mike Kerner via use-livecode
what is the difference? On Tue, Jun 19, 2018 at 8:09 AM Skip Kimpel via use-livecode < use-livecode@lists.runrev.com> wrote: > Is there an upgrade charge? > > SKIP KIMPEL > > On Mon, Jun 18, 2018 at 11:12 PM, Andre Garzia via use-livecode < > use-livecode@lists.runrev.com> wrote: > > > Friends, >

Re: Update to SublimeText LiveCode Script linter

2018-05-25 Thread Mike Kerner via use-livecode
so far so good here other than the version tag being a commit early... On Fri, May 25, 2018 at 10:51 AM Trevor DeVore via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi, > > The LiveCode Script linter for SublimeText has been updated. The update > includes fixes required in order to wo

Re: WTF Worldpay?

2018-05-17 Thread Mike Kerner via use-livecode
It might be a foreign-transaction thing. Some of my cards will not go through worldpay. On Thu, May 17, 2018 at 4:01 PM Mark Wieder via use-livecode < use-livecode@lists.runrev.com> wrote: > Still won't accept my credit cards. > Is this a brexit thing? > > -- > Mark Wieder > ahsoftw...@gmail

Re: How to dismiss keyboard on mobile

2018-05-10 Thread Mike Kerner via use-livecode
The sequence is return key is pressed focus is removed ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences: http://lists.runrev.com/mailman/listinfo/use-live

Re: How to dismiss keyboard on mobile

2018-05-10 Thread Mike Kerner via use-livecode
I personally use *on* inputReturnKey *focus* *on* nothing *end* inputReturnKey On Thu, May 10, 2018 at 6:02 PM Tore Nilsen via use-livecode < use-livecode@lists.runrev.com> wrote: > You could also try: > > on returnInField > > focus on nothing > > end returnInField > > > in the field script.

Re: date libraries/routines for LCG

2018-05-09 Thread Mike Kerner via use-livecode
Thank you... On Wed, May 9, 2018 at 11:29 AM Brian Milby via use-livecode < use-livecode@lists.runrev.com> wrote: > Is this one on your list? > > LiveCode library to handle date and time functions > https://github.com/derbrill/libdate > > On Wed, May 9, 2018 at 8:5

Re: date libraries/routines for LCG

2018-05-09 Thread Mike Kerner via use-livecode
ode?dl=0 > > On May 8, 2018, 9:10 PM -0400, Mike Kerner via use-livecode < > use-livecode@lists.runrev.com>, wrote: > > I'm working on my session for next week's lcg, which is going to focus on > > dates. I'd like to feature any libraries or routines

date libraries/routines for LCG

2018-05-08 Thread Mike Kerner via use-livecode
I'm working on my session for next week's lcg, which is going to focus on dates. I'd like to feature any libraries or routines that anyone wants to share that have to do with dates. Please email me at one of my 300 email addresses. -- On the first day, God created the heavens and the Earth On th

Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-02 Thread Mike Kerner via use-livecode
tely, in London > there > > > are plenty of trains and cars to run in front of as I can’t face > another > > > day of this. I’ve lost a huge client, a tonne of work and any chance of > > > being paid. And LC won’t care a jot! Last time I had something similar > I

Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-02 Thread Mike Kerner via use-livecode
I certainly have no money left to get LC > support and Monte, the only one who could do anything about it, will be in > bed by now. I am so totally screwed because I put my trust in LC. And not > for the first time! > > Sean Cole > Pi Digital > > > On 2 May 2018, at 13:43, M

Re: URGENT: MergGoogle no longer works on iOS: CLIENTS VERY UNHAPPY

2018-05-02 Thread Mike Kerner via use-livecode
See the thread on the other list. It appears to be working for me just fine. On Wed, May 2, 2018 at 6:56 AM Sean Cole (Pi) via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi > > Apparently, google stopped using their old method of oAuth and started > deprecation from 1March 2017. As o

Re: Scott Rossi and TactileMedia

2018-04-30 Thread Mike Kerner via use-livecode
I'm also a huge fan of tmnavigator, that has saved me from screaming and throwing a tantrum on multiple occasions, but that's not a widget. On Mon, Apr 30, 2018 at 11:47 AM Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > spell correct. I typed tmalign. > > > On Apr 30, 2018

<    1   2   3   4   5   6   7   8   9   10   >