Re: conversion of field margins from older version to 8

2016-10-24 Thread Randy Hengst
What about something like this: repeat with z = 1 to the number of fields of this stack set the margins of field z to "8" end repeat be well, randy Randy Hengst www.classroomFocusedSoftware.com > On Oct 24, 2016, at 6:25 PM, Dr. Hawkins wrote: > > Among

Clipboard problem

2016-10-24 Thread Michael Julian Lew
I’ve just installed LiveCode 8.1.1 and I’ve come across an anomaly with the clipboard in Mac OS X 10.9.5. When I populate the clipboard with a return-delimited list using this line the results paste correctly into Nisus Writer Pro but paste into Excel with an extra blank line between lines,

Re: Special Paste

2016-10-24 Thread hh
@Bob. After your answer I read Charles' question again. Probably he asks for the other way: how to match the styled text of the 'paste-target' *in LC*? @Charles. If this is correct, then you could try to insert the clipboardData["text"] or use menu Edit > Paste Unformatted. This has no style and

Re: conversion of field margins from older version to 8

2016-10-24 Thread Dr. Hawkins
On Mon, Oct 24, 2016 at 5:46 PM, Randy Hengst wrote: > What about something like this: > >repeat with z = 1 to the number of fields of this stack > set the margins of field z to "8" >end repeat > Something like that. The problem is that my margins in the label

sluggishness of 8.1.1 on send in 0/wait 0 pairs?

2016-10-24 Thread Dr. Hawkins
I still don't have my finger completely on this one, but watching the sluggish shifting back and forth between tabs on the script editor, I think I'm starting to grasp it. I (like I assume many others) have a number of places with blocks like send doIt to stack worker in 0 wait 0 with messages

conversion of field margins from older version to 8

2016-10-24 Thread Dr. Hawkins
Among the quiet changes in 8 was a significant change in how field margins are rendered, making many of my cards difficult to read. Is there a simple script that can concert from old to new? I suppose that this came about because the default margins and placement were utterly inconsistent across

Re: Special Paste

2016-10-24 Thread Bob Sneidar
I believe there is the clipboardData ["html"] and clipboardData ["rtf"]. Bob S > On Oct 24, 2016, at 12:29 , Charles Szasz wrote: > > I having been trying to implement Paste and Match Style found on Pages app > and also on Word, which is called Paste Special, where the text

Re: How experimental is OS X 64-Bit mode?

2016-10-24 Thread Graham Samuel
While we’re at it (in case the mother ship is listening), HTML5 deployment is still said to be “highly experimental”. That would prevent me (and I imagine others) from even trying to produce a browser-based app. Is this going to change, and sooner or later? > On 24 Oct 2016, at 11:26, Tiemo

[ANN] This Week in LiveCode 56

2016-10-24 Thread Peter TB Brett
Hi all, Read about new developments in LiveCode open source and the open source community in today's edition of the "This Week in LiveCode" newsletter! Read issue #56 here: https://goo.gl/U7bRCg This is a weekly newsletter about LiveCode, focussing on what's been going on in and

Re: Why pointers are fast

2016-10-24 Thread Bob Sneidar
Nice resource. I'm going to go through that just fir kicks and grins. Bob S > On Oct 24, 2016, at 08:15 , JB wrote: > > To understand why pointers are fast you need to know > a pointer stores the address to a object like a variable > in memory and you need to know what

Re: Store to iCloud?

2016-10-24 Thread Earthednet-wp
Bob, Thanks for the info. Trying to implement this on my own is getting deeper into the bowels of Xcode than I want. I looked at the api for Dropbox and fiddled with it a bit, but communicating with these api's is not in my area of expertise. I'd love to see some sample code. I looked at the

Re: Store to iCloud?

2016-10-24 Thread Mike Kerner
Are you referring to the phoenix lib? The documentation is pretty much in order. There is also the mergDropbox plugin that LC distributes, and there's a Dropbox 2.0 API that is also out there. We do all of our data transfer between devices and desktops with dropbox, right now. That's across a

Re: Store to iCloud Drive on iOS?

2016-10-24 Thread Mike Kerner
Bill, just continuing that discussion on dropbox, what you would do is retrieve the file from dropbox, and then store it with your app (it's just a file). The one thing I haven't tried to do is to use persistent custom properties inside of my apps. I'm more worried about the user deleting the

Re: [ANN] Release 9.0 DP 1

2016-10-24 Thread Dr. Hawkins
On Mon, Oct 24, 2016 at 2:52 AM, Ben Rubinstein wrote: > Could you output the annotations as PDF, and shell out to the command-line > version of PDFtk to overlay your annotation PDF on the original PDF? > That's tentatively the only way I see to do this going forward.

Re: [ANN] Release 9.0 DP 1

2016-10-24 Thread Bob Sneidar
So you want to create the PDF from scratch? How about if you were able to create the PDF as a fillable form, then save it in a database so you could recreate it at will? That is what my Forms Generator does. You can then fill it using either Applescript on a Mac, or else by creating the FDF xml

Re: Store to iCloud Drive on iOS?

2016-10-24 Thread Bob Sneidar
iOS has no file system that is accessible by the user. Installed apps are compiled to run "in place" and if they need memory for other things the memory is sandboxed from other apps. Your app can request permission to access another app's data, which that app has to be written to allow, and the

Re: Eureka Moment: preopencontrol

2016-10-24 Thread Keith Martin
On 24 Oct 2016, at 16:05, Sannyasin Brahmanathaswami wrote: dictionary needs help.. there are complete "outs" as we refer to them in our editing world: missing words/phrases can someone please fill in the missing parts? They are mission critical The Dictionary really needs attention, both

Re: Store to iCloud?

2016-10-24 Thread Earthednet-wp
Mike, Thanks! I'll look into it. Best, Bill William Prothero http://es.earthednet.org > On Oct 24, 2016, at 8:41 AM, Mike Kerner wrote: > > Are you referring to the phoenix lib? The documentation is pretty much in > order. There is also the mergDropbox plugin that

Re: [ANN] Release 9.0 DP 1

2016-10-24 Thread Dr. Hawkins
On Mon, Oct 24, 2016 at 7:59 AM, Bob Sneidar wrote: > So you want to create the PDF from scratch? How about if you were able to > create the PDF as a fillable form, then save it in a database so you could > recreate it at will? > The last thing I want is a fillable

Re: Store to iCloud?

2016-10-24 Thread Bob Sneidar
If you get info on the file or folder, then click the path in the dialog (it doesn't look like a path but click it anyway) then copy it, you can paste it into a text file and it will paste as the full path. Bob S > On Oct 21, 2016, at 13:15 , William Prothero wrote:

Why pointers are fast

2016-10-24 Thread JB
To understand why pointers are fast you need to know a pointer stores the address to a object like a variable in memory and you need to know what that address is doing. Here is another really good lesson on pointers. http://masters-of-the-void.com The tutorial is called Masters of the Void and

Re: Store to iCloud Drive on iOS?

2016-10-24 Thread Bob Sneidar
In Forms Generator, I have the users log in, and the first time they do they are prompted for certain critical settings, without which the app won't function. I save those settings in the login table of the database. For your purposes, you could simply create a sqlite table for that purpose.

Eureka Moment: preopencontrol

2016-10-24 Thread Sannyasin Brahmanathaswami
Just discovered "preopencontrol" wow! I wish I had discovered this years ago. dictionary needs help.. there are complete "outs" as we refer to them in our editing world: missing words/phrases can someone please fill in the missing parts? They are mission critical -- Sent to a

Re: Eureka Moment: preopencontrol

2016-10-24 Thread Mike Kerner
I was looking at the dictionary, about a month ago. The problem, now, is that it is being rendered using the 'bootstrap' javascript framework, so the only way to really work on it is to either learn the ins and outs of the framework or to start over. The good news is that LC updated to the

Re: Eureka Moment: preopencontrol

2016-10-24 Thread Ali Lloyd
Reading the source document will tell you what's missing: https://github.com/livecode/livecode/blob/develop/docs/dictionary/message/preOpenControl.lcdoc There are quite a few bad references of the form that should be . I will try and write a little script at some point to clean all of those

Re: Eureka Moment: preopencontrol

2016-10-24 Thread J. Landman Gay
For now I just open the LC 7 dictionary when these errors occur. If I had more time I'd help Devin fix them but I'm snowed under. The documentation is one of the easiest entries into the community OSS effort. On October 24, 2016 10:06:06 AM Sannyasin Brahmanathaswami

Re: How experimental is OS X 64-Bit mode?

2016-10-24 Thread Graham Samuel
Thanks, that’s pretty clear. I have a couple of ideas for web apps, but I will just leave them on the shelf. As to 64-bit, I imagine the word will arrive from the mother ship fairly soon? Cheers Graham > On 24 Oct 2016, at 19:22, Rick Harrison wrote: > > Hi

Re: How experimental is OS X 64-Bit mode?

2016-10-24 Thread Rick Harrison
Hi Graham, HTML5 still doesn’t talk to the outside world. You can’t have it access any databases etc. It is so experimental that I find it to be useless. I’m still waiting for a finished professional HTML5 product to be delivered to us. Until that time arrives I can’t recommend it to anyone.

Re: Eureka Moment: preopencontrol

2016-10-24 Thread Peter Haworth
Not surer whether it applies to preopencontrol but I came across a message path anomaly with open control a while back. See QCC report 14091 (still open) On Mon, Oct 24, 2016 at 8:05 AM Sannyasin Brahmanathaswami wrote: > Just discovered "preopencontrol" > > wow! I wish I had

How experimental is OS X 64-Bit mode?

2016-10-24 Thread Tiemo Hollmann TB
Hello, working with LC 8.1.1 I would like to prepare my programs for the next future as long as possible. I wouldn't like to produce a new 64 Bit standalone for all of my programs in a year, if in a year Apple makes 64 Bit mandatory. Since some versions I could create an OS X 64-Bit Mode

What do I have to prepare if enabling Hi-DPI scaling for Win standalone?

2016-10-24 Thread Tiemo Hollmann TB
Hello, Up to now I haven't enabled the Hi-DPI scaling for Windows standalones and since I don't have a hi-dpi monitor I can't test the difference of my standalones. Do I have to prepare anything different, if I enable the hi-DPI scaling? Is it necessary to exchange all images by images with

Re: [ANN] Release 9.0 DP 1

2016-10-24 Thread Ben Rubinstein
Could you output the annotations as PDF, and shell out to the command-line version of PDFtk to overlay your annotation PDF on the original PDF? (Disclaimer: I've not done this myself...) On 22/10/2016 22:31, Dr. Hawkins wrote: On Sat, Oct 22, 2016 at 2:13 PM, Monte Goulding

Re: How experimental is OS X 64-Bit mode?

2016-10-24 Thread Graham Samuel
Can’t answer, but I would also very much like to know. I have been making OSX standalones lately and have also seen ‘experimental’, which of course has put me off. Graham > On 24 Oct 2016, at 11:26, Tiemo Hollmann TB wrote: > > Hello, > > working with LC 8.1.1 I would

[ANN] calendar widget updated

2016-10-24 Thread BNig
Update of the calendar widget Added the option to use Custom day/month names beside English or System names. Resolved a name conflict by renaming properties of the widget calDayNames calMonthNames Also changed a property to NamesToUse to indicate [ English | System | Custom ] names to use.

Re: How experimental is OS X 64-Bit mode?

2016-10-24 Thread Peter TB Brett
On 24/10/2016 18:30, Graham Samuel wrote: Thanks, that’s pretty clear. I have a couple of ideas for web apps, but I will just leave them on the shelf. As to 64-bit, I imagine the word will arrive from the mother ship fairly soon? I believe that within the language development team we very

Re: [ANN] calendar widget updated

2016-10-24 Thread Roger Eller
Ok. Thanks for that clarification. ~Roger On Mon, Oct 24, 2016 at 3:35 PM, BNig wrote: > Hi Roger, > > please remove prior versions from the "extensions" folder in "My Livecode" > folder. > > Then move the unzipped folders to the "extensions" folder in "My

Re: Eureka Moment: preopencontrol

2016-10-24 Thread Sannyasin Brahmanathaswami
You mean it is rendered inside the LC IDE using bootstrap too? On 10/24/16, 5:34 AM, "use-livecode on behalf of Mike Kerner" wrote: The problem, now, is that it is being rendered using the 'bootstrap'

Re: [ANN] calendar widget updated

2016-10-24 Thread BNig
forgot to mention: compiled using 8.1.1, works in LC 9.0.0 DP1. http://www.berndniggemann.on-rev.com/calendar/calendar.zip Kind regards Bernd -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/ANN-calendar-widget-updated-tp4709700p4709703.html Sent from the

Special Paste

2016-10-24 Thread Charles Szasz
I having been trying to implement Paste and Match Style found on Pages app and also on Word, which is called Paste Special, where the text contents of the clipboard are pasted into a document that matches the existing font and font style in the document. I searched the Rev and LC archives

Re: [ANN] calendar widget updated

2016-10-24 Thread Roger Eller
Elanor's .lce file will select in Extensions Manager, but not your .lci file. ~Roger On Mon, Oct 24, 2016 at 3:21 PM, BNig wrote: > forgot to mention: > > compiled using 8.1.1, works in LC 9.0.0 DP1. > > http://www.berndniggemann.on-rev.com/calendar/calendar.zip > >

Re: [ANN] calendar widget updated

2016-10-24 Thread BNig
Hi Roger, please remove prior versions from the "extensions" folder in "My Livecode" folder. Then move the unzipped folders to the "extensions" folder in "My Livecode" folder manually. These are the actual folders should work when moved manually. In case everything fails you could use the

Re: How experimental is OS X 64-Bit mode?

2016-10-24 Thread Graham Samuel
Thanks - I’ll recompile the Mac version of the thing I’m working on and check it out. Cheers Graham > On 24 Oct 2016, at 21:20, Peter TB Brett wrote: > > > > On 24/10/2016 18:30, Graham Samuel wrote: >> Thanks, that’s pretty clear. I have a couple of ideas for web