Re: Console container for put function?

2015-04-24 Thread Mark Wieder
On 04/23/2015 11:09 PM, Peter W A Wood wrote: I’m trying to find a better way than: if the environment is “server” then put tResult else put tResult after Field tReport end That's exactly how I deal with it, with the exception that I wra

Does Version 7.0.4 work with Xcode 6.3.1?

2015-04-24 Thread William Prothero
Anybody tried it? Bill William A. Prothero http://es.earthednet.org/ ___ 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/l

Re: Console container for put function?

2015-04-24 Thread Peter W A Wood
Thanks for the insight and suggestion, Richard. I’ve gone with the “MyPut” option for the moment. Regards Peter > On 24 Apr 2015, at 23:22, Richard Gaskin wrote: > > Peter Wood wrote: > > > I’m planning on writing some library functions for testing that can > > be called from either a GUI st

Re: Hanging indents?

2015-04-24 Thread Terry Judd
Thanks Tom, a list style might have worked but Peter¹s firstIndent and leftMargin combination has done it nicely for me. Regards, Terry... On 25/04/2015 1:10 am, "tbodine" wrote: >Terry, > >If you are open to your hanging indent lines having an outline or list >format, try setting the ListStyl

Re: Hanging indents?

2015-04-24 Thread Terry Judd
Thanks Peter, that¹s it. firstIndent negative and leftMargin positive! Much appreciated, Terry... On 24/04/2015 11:24 pm, "Peter M. Brigham" wrote: >Sorry, you wanted a hanging indent. Try something like this: > >set the firstindent of fld "text" to -25 >set the margins of fld "text" to "28,3,

Re: where does revsecurity.dll comes from?

2015-04-24 Thread Mark Talluto
On Apr 24, 2015, at 5:55 AM, Tiemo Hollmann TB wrote: > Who can give me a hint, where this dll comes from and how I can get rid of > it - and hopefully speed up the build process? Hi Teimo, The revsecurity.dll allows you to use encryption in your applications. This would include commands like:

Re: Android Intents/iOS Extensions?

2015-04-24 Thread J. Landman Gay
On 4/23/2015 8:07 PM, Monte Goulding wrote: OK, here it is... sorry Jacque for leading you up a garden path on that forum topic we discussed this on. Thanks Monte. The garden path was productive, it led me to a fix. :) However, given your specific case where even if you edit the manifest in

Re: Plain text library stacks

2015-04-24 Thread Peter M. Brigham
Ah, I see. Thanks. And may I say, your presence on this list, even if only occasional, is much appreciated. -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Apr 24, 2015, at 2:11 PM, Mark Waddingham wrote: > 1. No - substacks are part of the parent stackfile when

Re: Plain text library stacks

2015-04-24 Thread Mark Waddingham
1. No - substacks are part of the parent stackfile when on disk so they only make sense as normally saved (binary) stacks. 2. Yes - script only stacks are stacks. The script only part only pertains to the on disk format which is a text file. Sent from my iPhone > On 24 Apr 2015, at 19:06, Pete

Re: Plain text library stacks

2015-04-24 Thread Peter M. Brigham
Questions about these script-only stacks: 1. can they be made substacks of another stack? 2. can you do "start using stack…" with them? -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Apr 24, 2015, at 12:41 PM, Michael Doub wrote: > I just updated the MasterLibrary

Re: Plain text library stacks

2015-04-24 Thread Michael Doub
I just updated the MasterLibrary to allow you to create a Script Only Stack and insert functions and commands with just a few clicks. https://www.dropbox.com/s/3wpwn3hfbmpl7sk/MasterLibrary.livecode?dl=0 -= Mike On 4/23/15 2:58 PM, Thierry Douez wrote: Absolutely, that's what Peter was sho

Re: Console container for put function?

2015-04-24 Thread Mike Bonner
Nifty! Thanks! Wow there are a lot of hidden jewels in lc. On Fri, Apr 24, 2015 at 9:22 AM, Richard Gaskin wrote: > Peter Wood wrote: > > > I’m planning on writing some library functions for testing that can > > be called from either a GUI stack or a server script. When called > > from a GUI sc

Re: Hanging indents?

2015-04-24 Thread tbodine
Terry, If you are open to your hanging indent lines having an outline or list format, try setting the ListStyle of the block of lines where you want the hanging indent. Here's a tutorial: http://lessons.runrev.com/m/4071/l/58770-how-do-i-use-hierarchical-list-support -- Tom Bodine -- View this

Re: Console container for put function?

2015-04-24 Thread Richard Gaskin
Peter Wood wrote: > I’m planning on writing some library functions for testing that can > be called from either a GUI stack or a server script. When called > from a GUI script it will display its results in a Field, when called > from a server script it will displays its result in the console. >

Re: Need Help With FTP

2015-04-24 Thread Richard Gaskin
Gregory Lypny wrote: > Blocking is not really the problem for me; it’s the session timeouts > or dropped connection when downloading many files in a loop. I think > the public server does not like repeated calls with the same > connection, but I do not know how to make a new connection for, say,

Re: Need Help With FTP

2015-04-24 Thread Robert Brenstein
On 24.04.2015 at 8:43 Uhr -0400 Gregory Lypny apparently wrote: Hi Phil, Thanks for the detailed handler! I'll give it a whirl. Blocking is not really the problem for me; it's the session timeouts or dropped connection when downloading many files in a loop. I think the public server does not

Re: where does revsecurity.dll comes from?

2015-04-24 Thread jbv
Hi Dave Thanks for this detailed answer. I must say I have a complete different experience : I have been testing several apps of mine on various win versions (xp, vista, 7) without revsecurity.dll and never got any warning of any kind... Besides, my clients have been using the same apps on the same

Re: where does revsecurity.dll comes from?

2015-04-24 Thread Dave Kilroy
Hi jvb I've been using it so long with on particular windows app that I'm not 100% sure what will happen now without it. But I did run a test about a year ago on a Win7 machine with that app (which connects to the internet on start-up) With revsecurity.dll included: On first launch of the app my

Re: where does revsecurity.dll comes from?

2015-04-24 Thread jbv
Hi > Hi Tiemo - your app will need this if it it connects to the internet (at > least on a windows machine with anti-virus) > Could you please elaborate a bit more ? Do you mean the app won't able to connect to the internet on a windows machine with anti-virus, or do you mean the security will be

Re: Hanging indents?

2015-04-24 Thread Peter M. Brigham
Sorry, you wanted a hanging indent. Try something like this: set the firstindent of fld "text" to -25 set the margins of fld "text" to "28,3,3,3" -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Apr 24, 2015, at 2:54 AM, Terry Judd wrote: > Has anyone managed to c

Re: Hanging indents?

2015-04-24 Thread Peter M. Brigham
I think you have to set the firstIndent of the field to a positive integer and set the left margin of the field to a negative number. -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Apr 24, 2015, at 2:54 AM, Terry Judd wrote: > Has anyone managed to create a hangi

AW: where does revsecurity.dll comes from?

2015-04-24 Thread Tiemo Hollmann TB
Hi Klaus, hmm, it is the first time in years I experience this and because of the long build time, I am not happy :) Schönes WE! Tiemo -Ursprüngliche Nachricht- Von: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] Im Auftrag von Klaus major-k Gesendet: Freitag, 24. April 2015 1

Re: where does revsecurity.dll comes from?

2015-04-24 Thread Dave Kilroy
Hi Tiemo - your app will need this if it it connects to the internet (at least on a windows machine with anti-virus) - "The difference between genius and stupidity is; genius has its limits." - Albert Einstein -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/

Re: where does revsecurity.dll comes from?

2015-04-24 Thread Klaus major-k
Hi Tiemo > Am 24.04.2015 um 14:55 schrieb Tiemo Hollmann TB : > > Hello, > > I am building the first time a standalone for a new stack on windows with LC > 6.5.2. > > The build process lasts unusual long (1-2 min) and after build I got a > "revsecurity.dll" in my standalone directoy. > I have n

where does revsecurity.dll comes from?

2015-04-24 Thread Tiemo Hollmann TB
Hello, I am building the first time a standalone for a new stack on windows with LC 6.5.2. The build process lasts unusual long (1-2 min) and after build I got a "revsecurity.dll" in my standalone directoy. I have never seen this dll before and don't find any unknown option in my standalone sett

Re: Need Help With FTP

2015-04-24 Thread Gregory Lypny
Hi Phil, Thanks for the detailed handler! I’ll give it a whirl. Blocking is not really the problem for me; it’s the session timeouts or dropped connection when downloading many files in a loop. I think the public server does not like repeated calls with the same connection, but I do not know ho

AW: fastes way to search an array?

2015-04-24 Thread Tiemo Hollmann TB
Hi Mike, my first description wasn't very exact. Actually these are two different cases, which occur not together. One time I need a search with "begins" and another time with "contains". And I decided to stay with such a standard repeat loop thru the array, without extracting the keys before or us

Re: Plain text library stacks

2015-04-24 Thread Mark Waddingham
On 2015-04-23 20:41, Michael Doub wrote: Mark, It appears that when you programmatically create a script only stack and save it. The engine auto inserts the first line: script "stackname".I see that when I look at the file with a text editor. When I edit the script of the stack in liveco

Re: Console container for put function?

2015-04-24 Thread Mike Bonner
Ah k. Honestly, I suspect checking the environment to decide where to output is the best way. Don't think I see an easy way around the way things work. If it wasn't possible to put things into fields in the server environment, I'd say it would be nice if any puts whatsoever defaulted to stdout, b