Re: Remote debugger

2017-03-04 Thread Sannyasin Brahmanathaswami via use-livecode
Never mind… went thru the whole process again. on android → force stop the app and then the IDE says the debugging session closed. Awesome I found an obscure bug or rather difference binfile://someAppPath/Unicode.txt into myNewText works on iOS and Mac OSX but not on android only 1 slash

Re: Remote debugger

2017-03-04 Thread Sannyasin Brahmanathaswami via use-livecode
Eureka! I got it working on Andrioid --TSNet, check --internet, check --remote debugger, check --internet permissions, check -- manually set gRevDevelopment to true (in msg box) # confirmed it is false even when checked in the IDE (weird) -- set break point in a script -- plug in Nexus5

Can you test: Send Back in 9 dp5 is broken

2017-03-04 Thread Sannyasin Brahmanathaswami via use-livecode
Can you test this -- open a card in Stack A with many groups on it. -- set select grouped object to true in the ID tool bar "Select Grouped" -- select an object # mine is corrupted graphic whose gradient keeps gettins "wacked" but the IDE. -- delete it -- go to another stack B # mine is a stack

Script Profiler

2017-03-04 Thread Ralph DiMola via use-livecode
Both the Remote Debugger and Script Profiler are exciting. There's only one of me so I went for the script profiler first. Looked at the LC lesson and it seemed simple enough... Enable, do some stuff in your stack and the disable. I did that and the Profiler screen pops up but it's empty. Am I

Re: Remote debugger

2017-03-04 Thread Mike Kerner via use-livecode
I have it working on ios, but I have found several bugs with it. It's the first try... On Sat, Mar 4, 2017 at 5:35 PM, Dave Kilroy via use-livecode < use-livecode@lists.runrev.com> wrote: > Thanks Jacque - but I’m not convinced that’s it - I set that (for android) > plus Internet, Remote

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

2017-03-04 Thread Tom Glod via use-livecode
this discussion has been very useful on many fronts. I'm going to have fewer nightmares about security. On Fri, Mar 3, 2017 at 1:00 PM, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > It looks like the encrypt command is already using this method if the > "with salt"

Re: UI design problem

2017-03-04 Thread Dr. Hawkins via use-livecode
On Sat, Mar 4, 2017 at 2:04 PM, tbodine via use-livecode < use-livecode@lists.runrev.com> wrote: > Dr. Hawkins via use-livecode wrote > > pass mousedown > > Err, no I didn't :) But my though would be after pasting, to move the image control (slider, group, whatever) to the top level, and to

Re: ouch: the beginning of the end

2017-03-04 Thread Dr. Hawkins via use-livecode
On Sat, Mar 4, 2017 at 2:05 AM, Lagi Pittas via use-livecode < use-livecode@lists.runrev.com> wrote: > If You HAVE tom use the ACTUAL government PDF and be pixel perfect then how > can you be printing anything of any type out as a pdf > whether with eps or any changed fields - maybe I haen't read

Re: UI design problem

2017-03-04 Thread Tom Glod via use-livecode
ahhh how do you know if the user wants to move the image or the text? maybe use a modifier key to help you differentiate between what the user wants to grab. if controlKey() is down then ... or maybe give a hotkey to select either text or image. and maybe a red border around the

Re: Remote debugger

2017-03-04 Thread Dave Kilroy via use-livecode
Thanks Jacque - but I’m not convinced that’s it - I set that (for android) plus Internet, Remote Debugger - and have tried various combinations of including and not including tsNet - and have rebooted by mac and router … but I don’t think I tried making wifi required for iOS, will try that in

Re: UI design problem

2017-03-04 Thread Jonathan Lynch via use-livecode
The message would pass up the message path, to the group that owns both targets. That is where you would place the script to decide which object to move. The following code will help you know which object was clicked: Put word 1 of the target into tObjectType If tObjectType = "field" then --

Re: UI design problem

2017-03-04 Thread tbodine via use-livecode
Dr. Hawkins via use-livecode wrote > pass mousedown "Pass mousedown" doesn't work here. (Message does not travel down to the image control below the field.) I used a send "mousedown" which does travel through, but what doesn't work then is the "grab image 'blah'" line in the mousedown handler

Re: ouch: the beginning of the end

2017-03-04 Thread Paul Dupuis via use-livecode
On 3/4/2017 3:10 PM, Dr. Hawkins via use-livecode wrote: > On Fri, Mar 3, 2017 at 8:10 PM, Bob Sneidar via use-livecode < > use-livecode@lists.runrev.com> wrote: > >> What is this XPDF viewer you speak of? Not showing up in the LC dictionary. > > a unix pdf display program. > > XPDF is not a

Re: UI design problem

2017-03-04 Thread Tom Glod via use-livecode
the solution is simple . look up how to pass messages, it is easy and made for in situations such as this. pass mousedown On Sat, Mar 4, 2017 at 3:52 PM, tbodine via use-livecode < use-livecode@lists.runrev.com> wrote: > Hi Livecoders. > > I am hoping you'll have some ideas for solving a UI

UI design problem

2017-03-04 Thread tbodine via use-livecode
Hi Livecoders. I am hoping you'll have some ideas for solving a UI design/coding problem. My app lets users create simple presentation screens, one per card. The user can import a picture and add a headline (text field) to the card. And since the user will sometimes want the text to be over the

Re: revZip functions, compressing and extracting folder for transfer

2017-03-04 Thread Phil Davis via use-livecode
Here is a sanitized version of a simple zip library stack I use in projects. It keeps me from having to get down into the nuts and bolts every time I want to zip a file: https://www.dropbox.com/s/t8z27p8cy5ir1v9/libZip.livecode?dl=0 HTH - Phil Davis On 3/4/17 9:25 AM, Matt Maier via

Re: Remote debugger

2017-03-04 Thread J. Landman Gay via use-livecode
On 3/4/17 1:58 PM, Dave Kilroy via use-livecode wrote: Nope I can’t get this working in iOS or Android :( however it does fire in the iOS simulator http://quality.livecode.com/show_bug.cgi?id=19367 Looks like you fell into the same trap I did. You have to enable internet permissions on

Re: ouch: the beginning of the end

2017-03-04 Thread Dr. Hawkins via use-livecode
On Fri, Mar 3, 2017 at 8:10 PM, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > What is this XPDF viewer you speak of? Not showing up in the LC dictionary. a unix pdf display program. -- Dr. Richard E. Hawkins, Esq. (702) 508-8462

Re: ouch: the beginning of the end

2017-03-04 Thread Dr. Hawkins via use-livecode
On Fri, Mar 3, 2017 at 8:07 PM, Bob Sneidar via use-livecode < use-livecode@lists.runrev.com> wrote: > err... are the forms already created? Or are you trying to create the > forms from scratch programaticaly? If the former, I wrote an application > that does just that. I first create a fillable

Re: Remote debugger

2017-03-04 Thread Dave Kilroy via use-livecode
Nope I can’t get this working in iOS or Android :( however it does fire in the iOS simulator http://quality.livecode.com/show_bug.cgi?id=19367 ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe

Re: revZip functions, compressing and extracting folder for transfer

2017-03-04 Thread J. Landman Gay via use-livecode
On 3/4/17 11:25 AM, Matt Maier via use-livecode wrote: Is there an overview or tutorial on how to use the revZip functions? Under the Help menu, choose Sample Stacks and search for "revZip". There are a couple of stacks there. Also under the Help menu, choose Tutorials. There is one lesson

revZip functions, compressing and extracting folder for transfer

2017-03-04 Thread Matt Maier via use-livecode
Is there an overview or tutorial on how to use the revZip functions? Do I have to use each individual function to manually describe the process of creating and using a zip archive? Like, to create the archive, do I have to write my own code to open it, repeat for each file and/or each folder,

Re: Remote debugger

2017-03-04 Thread Sannyasin Brahmanathaswami via use-livecode
J. Landman Gay wrote: So far, all I've found is the blog post: Thanks. Seems easier for android because you can run test to the device on a tethered phone, but I can't do that with iPHone (or can we?) you can

Re: ouch: the beginning of the end

2017-03-04 Thread Paul Dupuis via use-livecode
On 3/3/2017 11:10 PM, Bob Sneidar via use-livecode wrote: > What is this XPDF viewer you speak of? Not showing up in the LC dictionary. > > Bob S Available only with Business License and for a while it was missing from the Dictionary, but you can find it in LC 8.1.3 or the latest 9.0 dp builds.

Re: ouch: the beginning of the end

2017-03-04 Thread Lagi Pittas via use-livecode
Maybe I'm being dense here but If You HAVE tom use the ACTUAL government PDF and be pixel perfect then how can you be printing anything of any type out as a pdf whether with eps or any changed fields - maybe I haen't read all the posts but am I missing something? Can you explain in 1 place