Re: color picker in IOS

2012-01-10 Thread Monte Goulding
Hi Howard I've written an external for iOS. It's a bonus when you buy mergZXing my iOS barcode reader external. See http://goulding.ws/merzxing Cheers Monte On 11/01/2012, at 7:43 AM, Howard Bornstein wrote: > How are people handling the need to present a color picker under IOS? > AFAICT this

Re: MP3 Tag Editor

2012-01-10 Thread stephen barncard
Glad it worked out. I didn't check the stack I linked you to, I thought it had specs on the stack, like libJson. Who put Mark's ON-rev site back up? I thought it disappeared.Or is he an on-rev pioneer with a forever plan? yes I too was impressed with his strict adherence to specs in all his

[ANN] mergZXing - iOS Barcode Reader External

2012-01-10 Thread Monte Goulding
Hi All Today I have released mergZXing my iOS Barcode Reader External for sale via my website http://goulding.ws/mergzxing for US$49. The external will also be available on the LiveCode marketplace ASAP. mergZXing currently supports reading barcodes in these formats: UPC-A and UPC-E EAN-8 and

Re: MP3 Tag Editor

2012-01-10 Thread Sivakatirswami
On Mon Jan 9 18:30:54 2012, stephen barncard wrote: Swami, yes, the late and recently mentioned Mark Smith made a well-documented stack for that purpose. It's been tested by me and it also works on Livecode server with no modifications. http://revonline2.runrev.com/stack/80/id3lib-v1-0-2 Tha

Re: MP3 Tag Editor

2012-01-10 Thread Web Admin Himalayan Academy
On Mon Jan 9 18:30:54 2012, stephen barncard wrote: Swami, yes, the late and recently mentioned Mark Smith made a well-documented stack for that purpose. It's been tested by me and it also works on Livecode server with no modifications. http://revonline2.runrev.com/stack/80/id3lib-v1-0-2 T

Re: standalone not quitting on Win7

2012-01-10 Thread Nicolas Cueto
Hi Mark, > That script looks familiar :-) Thought it might be yours. Knew it couldn't be mine -- somewhat over my head! And you were right. Now, after I removed the database drivers from Externals on my nonWin7 machine, the standalone won't close there either. Will verify this on my Win7 once I

Re: standalone not quitting on Win7

2012-01-10 Thread Mark Schonewille
Hi Nicolas, That script looks familiar :-) Do you do any error checking in your standalone? If, for example, you're not including database drivers, revOpenDatabases() will cause an error and your app will not quit. You need to adjust your script a little by removing the irrelevant parts. -- Be

standalone not quitting on Win7

2012-01-10 Thread Nicolas Cueto
Hello, A standalone can quit on pre-Win7 but not on Win7. Here's the relevant scripts for the card and the stack: on closeStackRequest lock messages -- MySql put revOpenDatabases() into myDatabases repeat for each item myBase in myDatabases revCloseDatabase myBase end repeat

Re: OS X Lion

2012-01-10 Thread Kay C Lan
On Wed, Jan 11, 2012 at 3:43 AM, Pete wrote: > Pre-Lion, I would just click on the icon for my Home directory, then > navigate to Library/Preferences in the Finder. In Lion, I could not find a > home directory icon to click on, nor could I find an icon representing the > computer's hard drive, e

Stack to read offline the LiveCode Forum

2012-01-10 Thread Mark Stuart
Alejandro wrote: >> Does exists a LiveCode stack to read offline all the LiveCode forum postings? << Alejandro, if you go to this link, I mentioned that I had an application that reads the mail list. Currently, it doesn't have the offline feature, but if folk are interested in that, I would add it

Re: Lunching an LiveCode iOS app from another app

2012-01-10 Thread Todd Geist
Thanks Ken, On Tue, Jan 10, 2012 at 12:59 PM, Ken Ray wrote: > > On Jan 10, 2012, at 10:02 AM, Todd Geist wrote: > > > Hello, > > > > I need a way to Launch a LiveCode app on IOS from another app. This is > > often done with a custom URL scheme. Is there a way to get a Live Code > app > > to u

Re: OS X Lion

2012-01-10 Thread Pete
Thanks Mark and Marty! Pete On Tue, Jan 10, 2012 at 11:54 AM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote: > Pete, > > Press shift-command-G and enter /Library/Preferences or > ~/Library/Preferences, press enter and you'll see the preferences folder. > > -- > Best regards, > > Mark

Re: Lunching an LiveCode iOS app from another app

2012-01-10 Thread Ken Ray
On Jan 10, 2012, at 10:02 AM, Todd Geist wrote: > Hello, > > I need a way to Launch a LiveCode app on IOS from another app. This is > often done with a custom URL scheme. Is there a way to get a Live Code app > to use a custom url scheme? There is on the desktop, but I don't know about iOS… o

color picker in IOS

2012-01-10 Thread Howard Bornstein
How are people handling the need to present a color picker under IOS? AFAICT this option is not available through the IOS SDK. -- Regards, Howard Bornstein --- www.designeq.com ___ use-livecode mailing list use-livecode@lists.runrev

Re: Find nearest color in an RGB list

2012-01-10 Thread Michael Doub
This works like a charm! Thanks, Mike On 2012-01-10, at 3:03 PM, Nonsanity wrote: > Both look like good suggestions for getting the closest color a human would > think is a "match", but both involve converting Livecode's native RGB to > another format. I may be wrong, but I don't think t

Re: Find nearest color in an RGB list

2012-01-10 Thread Nonsanity
Both look like good suggestions for getting the closest color a human would think is a "match", but both involve converting Livecode's native RGB to another format. I may be wrong, but I don't think those conversions are available built-in. I'm sure functions have been written to do this many times

Re: OS X Lion

2012-01-10 Thread Mark Schonewille
Pete, Press shift-command-G and enter /Library/Preferences or ~/Library/Preferences, press enter and you'll see the preferences folder. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprog

Re: OS X Lion

2012-01-10 Thread Marty Knapp
Pete - Use the "Go" menu in the Finder, while holding down the option key - that makes it show in the menu. Marty A while back there was a discussion on the changes in access privileges to some directories in Lion, I believe mainly to do the system Library directory. Yesterday, I went through

OS X Lion

2012-01-10 Thread Pete
A while back there was a discussion on the changes in access privileges to some directories in Lion, I believe mainly to do the system Library directory. Yesterday, I went through the process of installing an LC app on Lion for the first time, and also experiencing Lion for the first time. I don'

Re: Sorting Advice

2012-01-10 Thread Pete
Hi Marty, I'm not too familiar with the sort command but it sounds like you could use the each keyword and write a custom function to return the concatenated values of items 1 and 2 (zero padding item 2 so you could sort works on text), thus sorting in 1 pass. I have no idea whether it would be a

Find nearest color in an RGB list

2012-01-10 Thread Michael Doub
I have a list of RGB colors that represent different color samples. I need to create a function that will return the closest perceived RGB entry in the list when supplied a single RGB value. Is anyone aware of a library or some sample code that would help with this task? >From searching I fo

Re: Rev Online--User samples broken?

2012-01-10 Thread J. Landman Gay
On 1/10/12 11:10 AM, Jim Hurley wrote: Is Rev Online broken? It doesn't seem to be accepting user contributions. Also, the Browse feature recognizes ".rev" but not ".livecode" I've been effectively locked out for quite a while now. It won't even recognize my password any more, and resetting i

Re: Rev Online--User samples broken?

2012-01-10 Thread Devin Asay
I can confirm that Rev Online is down here, too. So are the user comments in the Dictionary in the IDE. IIRC they are on the same server. I've sent a note to support asking about it. Devin On Jan 10, 2012, at 10:16 AM, René Micout wrote: > Hello, > I writed that 9th december 2011 and the resp

Re: Rev Online--User samples broken?

2012-01-10 Thread René Micout
Hello, I writed that 9th december 2011 and the response : " Dear René Micout, Thank you for writing to the help desk for LiveCode. This is an autoresponse. Your message has been received and assigned a ticket number. You should normally expect a response within 2 working days. During exceptiona

Rev Online--User samples broken?

2012-01-10 Thread Jim Hurley
Is Rev Online broken? It doesn't seem to be accepting user contributions. Also, the Browse feature recognizes ".rev" but not ".livecode" Jim Hurley ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubs

Re: Sorting Advice

2012-01-10 Thread Marty Knapp
OK, so I'm good. Just though I might be missing something. Thanks Stephen. Marty I think one has to make multiple passes - the doc say for "sort container": *The sort container command is a stable sort. This means that if the sortKey for two items or lines is the same, sorting does not change t

Re: [Bug 9604] Various issues regarding compatibility between LC system date formats and OS X date preferences

2012-01-10 Thread Pete
Thanks Ken. I responded to Michael on the qcc but probably not strongly enough. I didn't know a bug could be re-opned but I will do so. Pete On Mon, Jan 9, 2012 at 11:13 PM, Ken Ray wrote: > > On Jan 5, 2012, at 2:41 PM, Pete wrote: > > > There was a discussion recently on preventing SQL injec

Re: LC database locking commands

2012-01-10 Thread Bob Sneidar
I think you send it as a query. Odd that it is missing though... Bob On Jan 9, 2012, at 6:17 PM, Pete wrote: > I see a revDatabaseCommit and a revDatabaseRollback command for databases > but I don't see one that issues a BEGIN command. Not a big deal since I > can issue one with revExecuteSQL

Lunching an LiveCode iOS app from another app

2012-01-10 Thread Todd Geist
Hello, I need a way to Launch a LiveCode app on IOS from another app. This is often done with a custom URL scheme. Is there a way to get a Live Code app to use a custom url scheme? Thanks Todd ___ use-livecode mailing list use-livecode@lists.runrev.c