Re: [Livecode Fr] au secours!

2013-01-01 Thread Mark Laffoon
Maybe this? http://stackoverflow.com/questions/7221087/applescript-to-get-the-url-from-safari On Monday, December 31, 2012, Ludovic Thébault wrote: Le 1 janv. 2013 à 01:12, Marc H. Bossiere mbossi...@pobox.comjavascript:; a écrit : Je ne peux pas commencer 2013 sans une solution! Ma

Re: Help with Regex (was Re: Switch, Case and wild-cards?)

2013-01-01 Thread Kay C Lan
From my own experience; if you are trying to parse ANY SQL statement that someone might enter, then NO, regex alone is not going to be your solution. If on the other hand you are dealing with a relatively small subset of SQL statements, maybe SELECT, UPDATE, DELETE, then regex would be able to

Re: REGEX and Livecode

2013-01-01 Thread Kay C Lan
Read the LC Dictionary entry for matchText. Regex IS already implemented in LC, if you care to use it. More importantly to you, as the dictionary states, it is PCRE library compatible, which to me means it is OS agnostic. All you need to do is learn the syntax (admittedly not trivial for some of

Re: Strange behaviour using the convert command

2013-01-01 Thread Kay C Lan
I'm not exactly sure but having 'break' statements inside IF THEN END IF seems wrong to me. When you get to the 'break' statement the code immediately jumps to the 'end switch' statement, completely bypassing the 'end if'. I would think the engine is then still looking for the 'end if' and not

Re: Blocking screenshots?

2013-01-01 Thread Mark Talluto
On Dec 31, 2012, at 2:00 PM, Roger Eller roger.e.el...@sealedair.com wrote: For your demo, maybe make everything very pale (20% of normal luminance), but have partial regions of text shown normally as a preview of the full version. ~Roger On Mon, Dec 31, 2012 at 4:46 PM, Richmond

Encrypt on mobile

2013-01-01 Thread Jan Schenkel
Hi all, Working on permissions and password protection for Quartam PDF Library, and I have a need for RC4 encryption at 40 bits. Actually, I do have a working plain LiveCode implementation by now, but the 'encrypt' command can do it too and is much faster. Here's the rub: I read in the release

Audio-voice recording

2013-01-01 Thread Massimiliano Fabbri
Hi all. I'm new in this list and in LiveCode programming. I need a POC (proof of concept) on how to do a simple app (iphone/Android) wich I can be able to: 1. Record audio/voice from any device (ios/android) 2. Convert the raw audio in another format (audio .aif or .mp3 file) 3. Send/upload

RE: Happy new year

2013-01-01 Thread Lynn Fredricks
Happy new year from Brazil! We´re starting our parties in here and we wish all a wonderful new year full of joy! Happy New Year from (temporarily) dry Oregon! :-) Best regards, Lynn Fredricks President Paradigma Software http://www.paradigmasoft.com Valentina SQL Server: The Ultra-fast,

Re: [ANN] Installer Maker Holidays Discount

2013-01-01 Thread Mark Schonewille
Happy New Year everybody! Tomorrow really is the last day to get a 33% discount on a new license for Installer Maker. Go to http://qery.us/za and click on the Plimus button. Use the coupon code 33OFF (that's the letter o, not a zero) in the check-out form to get the discount. Installer Maker

Re: What's On The Menu?

2013-01-01 Thread Peter Haworth
Thanks Kay, that's certainly another possibility. Nice choice of music by the way, although I'm not sure if ZZ Top is quite in the same league as the others! Pete lcSQL Software http://www.lcsql.com On Mon, Dec 31, 2012 at 9:45 PM, Kay C Lan lan.kc.macm...@gmail.com wrote: I appreciate not

Re: Strange behaviour using the convert command

2013-01-01 Thread Peter Haworth
Hi Nigel, Don;t see anything obvious but a couple of questions. Your loop is always looking at tArrayElement[1] - should the 1 be incrementing each time through the loop? Also, when you say the code does nothing, not sure just what you mean. Does the code not execute (checked with debug

Re: Help with Regex (was Re: Switch, Case and wild-cards?)

2013-01-01 Thread Peter Haworth
These would be guaranteed valid SQLite statements so their syntax would be exactly as documented, no errors. SOunds like it might be worthwhile spending a couple of hours with regex as an exercise to do this. Pete lcSQL Software http://www.lcsql.com On Tue, Jan 1, 2013 at 5:10 AM, Kay C Lan

What's On The Menu - Round 2

2013-01-01 Thread Peter Haworth
Continuing my quest to understand some of the fine points of menu handling with cascading items in LC, I'm now focusing on popup menus. The contents of the menu in question are set up dynamically in a mouseDown handler and some data conditions can cause either a checkmark or a diamond to appear

Re: REGEX and Livecode

2013-01-01 Thread Peter Alcibiades
The way to think about regex is a bit different for a linux user. If you have stuff to do involving heavy text manipulation - finding, substituting, rearranging, then you need to know regex. It makes life much simpler, you can do things at the command line that you would otherwise have to write

Re: File Properties

2013-01-01 Thread Todd Geist
Thanks Mark, So the only way to get the properties of a file is to get the properties of all the files in the same folder? and then find that file in that list? That seems terribly inefficient. What if there are 6 files in the folder? Todd Mark Schonewille wrote: Hi Todd, set the

Re: Encrypt on mobile

2013-01-01 Thread Mark Talluto
On Jan 1, 2013, at 8:34 AM, Jan Schenkel janschen...@yahoo.com wrote: Hi all, Working on permissions and password protection for Quartam PDF Library, and I have a need for RC4 encryption at 40 bits. Actually, I do have a working plain LiveCode implementation by now, but the 'encrypt'

Re: File Properties

2013-01-01 Thread Todd Geist
I found Trevor's FilesAndFolders library, and he has a fileGetInfo function in there. Thanks Trevor, but wow, thats a lot of work to get the file Properties. So the only way to get the properties of a file is to get the properties of all the files in the same folder? and then find that file

Re: Audio-voice recording

2013-01-01 Thread Roger Guay
I can't help you with the audio specifics, but if you've never done a mobile app before, I highly recommend LiveCode Mobile Development by Colin Holgate who hangs around this list a lot. I'm sure others will chime in on your audio specific needs. Welcome to this list and LiveCode, Roger

Change Email Address

2013-01-01 Thread lunchnmeets
Hi, How do I change my email address for this list? I'm closing my aol account FINALLY! :) My new email address is abilit...@att.net. Joe Orlando FL ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: Audio-voice recording

2013-01-01 Thread Monte Goulding
Hi Massimiliano Unfortunately LiveCode can't meet your requirements on android. On iOS you can use the rremicrophone external or my open source enhanced version (mergMicrophone). Cheers Monte -- M E R Goulding Software development services mergExt - There's an external for that! On

Re: Audio-voice recording

2013-01-01 Thread Roger Eller
With Android being based in Linux, I wonder if one could get shell (some command-line recorder) as the desktops can. ~Roger On Tue, Jan 1, 2013 at 2:39 PM, Monte Goulding mo...@sweattechnologies.comwrote: Hi Massimiliano Unfortunately LiveCode can't meet your requirements on android. On iOS

Re: Encrypt on mobile

2013-01-01 Thread Jan Schenkel
Thanks for the feedback, Mark - but I wasn't looking for an external solution :-) What I mainly wanted to know was how the mobile standalone apps cope with the 'cipherNames' property and 'encrypt' command as industrial strength encryption is missing. I don't have mobile deployment options so I

Re: Audio-voice recording

2013-01-01 Thread Massimiliano Fabbri
Thanks Monte for your answer. Where is disponsable your code to try it? THanks Massimiliano. Il 01/01/13 20:39, Monte Goulding ha scritto: Hi Massimiliano Unfortunately LiveCode can't meet your requirements on android. On iOS you can use the rremicrophone external or my open source enhanced

Re: REGEX and Livecode

2013-01-01 Thread Richmond
On 01/01/2013 08:07 PM, Peter Alcibiades wrote: Richmond, also have a look at txt2regex and regexxer. Should be in the repositories. To be honest, I can't be bothered, having worked out how to do all that is necessary for string manipulation without having to go near it. Peter -- View

Re: Audio-voice recording

2013-01-01 Thread Monte Goulding
A compiled version is available free from mergExt.com and source is at repo.goulding.ws Cheers -- M E R Goulding Software development services mergExt - There's an external for that! On 02/01/2013, at 6:38 AM, Massimiliano Fabbri eudosia.syst...@gmail.com wrote: Thanks Monte for your

Re: What's On The Menu - Round 2

2013-01-01 Thread Robert Brenstein
On 01.01.2013 at 9:56 Uhr -0800 Peter Haworth apparently wrote: First problem. The parameter to menuPick does not include any indication of whether the selected item has a checkmark or diamond before it. The indication is in the text of the selected menuitem itself, so you need to inspect

Re: REGEX and Livecode

2013-01-01 Thread Peter Haworth
Hi Peter, I'd be interested in looking at these buut not sure what you mean by the repositories . I checked revONline but didn't find either of them there. Pete lcSQL Software http://www.lcsql.com On Tue, Jan 1, 2013 at 10:07 AM, Peter Alcibiades palcibiades-fi...@yahoo.co.uk wrote:

Re: What's On The Menu - Round 2

2013-01-01 Thread Peter Haworth
Yeah, figured that out and all is working now. It just seems strange that LC doesn't provide that information as part of the itemname parameter in the menuPick handler. Pete lcSQL Software http://www.lcsql.com On Tue, Jan 1, 2013 at 1:52 PM, Robert Brenstein r...@robelko.com wrote: On

Re: (ANN) SmoothieRx

2013-01-01 Thread Monte Goulding
Well done Jim and Todd! I'll have to chase you for another case study :-) Cheers Monte -- M E R Goulding Software development services mergExt - There's an external for that! On 01/01/2013, at 5:43 AM, Jim Little littlejam...@mac.com wrote: Hi All, We are pleased to announce the