ouch: the beginning of the end

2017-03-06 Thread Alejandro Tejada via use-livecode
Hi Bob, on Tue Mar 7 2017, Bob Sneidar wrote: > the PDF has to be set up to "read" the FDF file when it opens No, after using "flatten" in PDFTK, the FDF content is embedded into the PDF file. For this reason, all interactive fields are not editable anymore. Does anyone try this command in MacOS

Android SDK

2017-03-06 Thread Javier Miranda V. via use-livecode
Hi friends, I installed the most current release of the Android SDK and all the packages starting form Android 4.0.3 (API Level 15) package up to 7.1.1 (API Level 25).  I am using a OS X Sierra, so the SDK was installed in  /Users/javiermiranda/Library/Android/sdk   (I navigate to that directory

Re: ouch: the beginning of the end

2017-03-06 Thread Bob Sneidar via use-livecode
I can tell you that FDF files work on virtually every PDF viewer/editor for any platform. But the PDF has to be set up to "read" the FDF file when it opens, otherwise you need to create a button that asks for the file (using javascript) and then populates from whatever file the user selects. O

Re: align field scrolls

2017-03-06 Thread Nicolas Cueto via use-livecode
Mike Bonner's solution -- using selectedLoc to set vScroll -- matches exactly the scrolling effect I'm after. Thank you, everyone. And, thank you Mike! -- Nicolas Cueto On 7 March 2017 at 00:40, Mike Bonner via use-livecode < use-livecode@lists.runrev.com> wrote: > An alternate solution.. > If

Re: UI design problem

2017-03-06 Thread Jim Lambert via use-livecode
> tbodine wrote: > > I'm using the mouseStillDown message to make either the text or image > follow the mouse until released. Glad you solved it. Jim Lambert ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscrib

Re: [ANN] Release 9.0.0 DP-5

2017-03-06 Thread Richard Gaskin via use-livecode
Andre Garzia wrote: > The fact that these decisions are being taken, where the HQ appears > to be focusing more and more on business licensees feels like I am > being forced into such license. At this moment, I am starting to > wonder if there is any reason to be indy at all. ...or Community. F

Re: "ouch: the beginning of the end"

2017-03-06 Thread Andre Garzia via use-livecode
Hi, If your objective is just displaying a PDF then you can use a RevBrowser window to do that, and even use PDF.js if you want: https://mozilla.github.io/pdf.js/ This would allow you to display the files as they are but won't help you change or create new files. On Thu, Mar 2, 2017 at 8:13 P

Re: "ouch: the beginning of the end"

2017-03-06 Thread Dr. Hawkins via use-livecode
On Mon, Mar 6, 2017 at 12:02 PM, Andre Garzia wrote: > If your objective is just displaying a PDF then you can use a RevBrowser > window to do that, and even use PDF.js if you want: > The intent is to display the pdf file that is about to be created, so that the user can modify it. Also, to gen

Re: [ANN] Release 9.0.0 DP-5

2017-03-06 Thread Mike Kerner via use-livecode
You can't build ios with community, so that's moot. Besides, this is not debugging, this is remote debugging, and if anything screams "premium", it's a feature like this. Anyone who has been building for mobile since we could do that with LC has been working with their own personal debugging hack

Re: the screenpixelscale on Microsoft SurfaceBook?

2017-03-06 Thread Andre Garzia via use-livecode
Hey Trevor, This is a Surface Pro 4 with Intel HD 520 running latest Windows 10 at 2736x1284 with 200% display scaling. The screenPixelScale reported is 2 on LC 8.1.2 I can't have my machine go to 3000x2000, sorry. On Tue, Feb 28, 2017 at 2:20 PM, Trevor DeVore via use-livecode < use-livecode@li

Re: Remote debugger

2017-03-06 Thread Roger Eller via use-livecode
Where can the new version be found? Is this page still maintained? http://mergext.com/plugins/mergdeploy/ On Mon, Mar 6, 2017 at 2:19 PM, Monte Goulding via use-livecode < use-livecode@lists.runrev.com> wrote: > > > On 7 Mar 2017, at 4:01 am, Mike Kerner via use-livecode < > use-livecode@lists

Re: Remote debugger

2017-03-06 Thread Monte Goulding via use-livecode
> On 7 Mar 2017, at 4:01 am, Mike Kerner via use-livecode > wrote: > > 1) There may be a crash bug related to mergDeploy (19365). I don't KNOW > that's mergDeploy related, but if MD is enabled, LC crashes, and if it is > not, it doesn't. > 2) Seeing !n instead of device name (19376) Hopefully

Re: [ANN] Release 9.0.0 DP-5

2017-03-06 Thread Andre Garzia via use-livecode
On Thu, Feb 23, 2017 at 5:41 PM, panagiotis merakos via use-livecode < use-livecode@lists.runrev.com> wrote: > - Implementation of a remote debugger (Business only): > Run a standalone for the local platform from the IDE and debug it whilst it > runs locally > Run a standalone for iOS or Android f

Re: Remote debugger

2017-03-06 Thread Mike Kerner via use-livecode
Monte, A couple of things: 1) There may be a crash bug related to mergDeploy (19365). I don't KNOW that's mergDeploy related, but if MD is enabled, LC crashes, and if it is not, it doesn't. 2) Seeing !n instead of device name (19376) On Sun, Mar 5, 2017 at 8:00 PM, Monte Goulding via use-livecode

Re: align field scrolls

2017-03-06 Thread Mike Bonner via use-livecode
An alternate solution.. If you put item 2 of the selectedloc of the first field - item 2 of the selectedloc of the second field into tScroll -- you can then set the vscroll of field "your second field" to the vscroll of field "your second field" - tScroll On Mon, Mar 6, 2017 at 8:27 AM, Paul Dupu

Re: align field scrolls

2017-03-06 Thread Paul Dupuis via use-livecode
You need 3 controls: 2 fields with the vertical scrollbars turned off and a vertical scroller Set the min of the vertical scrollbar to 0 and the max to the "max(the formattedHeight of field X,formattedHeight of field Y) In the scrollbar, add the script: on scrollbarDrag newPosition set the vS

Re: align field scrolls

2017-03-06 Thread dunbarx via use-livecode
So if your two fields have different number of lines, you must scale the "slave" field to the "master. You cannot just align their scroll values. If the master has, say 100 lines, and the slave 75, you simply set the ratio of the scroll of the master to its total line count to the ratio of the sla

Re: align field scrolls

2017-03-06 Thread Rick Harrison via use-livecode
Hi Nicolas, Does the number of lines increase or decrease between executions? Have you tried to add or subtract a constant to adjust for the difference? Rick > On Mar 5, 2017, at 9:45 PM, Nicolas Cueto via use-livecode > wrote: > >> Provided both fields have the same number of lines... > >

[ANN] This Week in LiveCode 73

2017-03-06 Thread Peter TB Brett via use-livecode
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 #73 here: https://goo.gl/SBNgjA This is a weekly newsletter about LiveCode, focussing on what's been going on in and around

Re: SHA1 cracked .... What are the chances this will be addressed in LC?

2017-03-06 Thread Peter TB Brett via use-livecode
On 03/03/2017 18:00, Bob Sneidar via use-livecode wrote: It looks like the encrypt command is already using this method if the "with salt" arguement is provided? At least the encrypted result starts with "salted" and at least part of the salt value. Hi Bob, The "encrypt" command provides sy