Re: SQLite/LiveCode Issues

2013-08-16 Thread Mark Smith
Peter, thanks for your efforts to keep LC current and capable on the database front. -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/SQLite-LiveCode-Issues-tp4624881p4668806.html Sent from the Revolution - User mailing list archive at Nabble.com.

If you bought my book...

2013-08-16 Thread Mark Schonewille
Hi everyone, Just a quick note for everyone who bought the book Programming LiveCode for the Real Beginner. I'm still getting orders from people who don't provide correct contact information. It takes a lot of effort to find out who ordered the book and where the book should be shipped.

medical dictionary and spell checker for Livecode

2013-08-16 Thread Thomas McGrath III
Curious if anyone has a Medical Dictionary and Spell checker for Livecode? Thanks -- Tom McGrath III http://lazyriver.on-rev.com mcgra...@mac.com ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe,

Re: IDE versus MSG Box - Field Tabstops

2013-08-16 Thread Jim Lambert
Jacque wrote: Yup, that's been an issue forever. We need a property called the rgbColor. The inability to retrieve RGB values from an object forces ugly workarounds like this one, which requires an entire LC lesson: How about? get the backcolor of someControl as {colorName | RGBcolor |

Re: IDE versus MSG Box - Field Tabstops

2013-08-16 Thread Jim Lambert
Jim Lambert wrote: How about? get the backcolor of someControl as {colorName | RGBcolor | HEXcolor} Jim Lambert Just to be clear this is a suggested syntax not the reality. Jim Lambert ___ use-livecode mailing list

Re: IDE versus MSG Box - Field Tabstops

2013-08-16 Thread J. Landman Gay
On 8/16/13 12:57 PM, Jim Lambert wrote: Jim Lambert wrote: How about? get the backcolor of someControl as {colorName | RGBcolor | HEXcolor} Jim Lambert Just to be clear this is a suggested syntax not the reality. Like. -- Jacqueline Landman Gay | jac...@hyperactivesw.com

Problems with shell command (Windows 2008 Server)

2013-08-16 Thread Ben Rubinstein
Has anyone encountered problems with the shell command not returning, on Windows 2008 Server? I've got an app written in LC, which does a bunch of jobs configured by a script file (not a file of LiveCode syntax, just a set of instructions in an XML syntax); finishing with a bunch of batch

Re: medical dictionary and spell checker for Livecode

2013-08-16 Thread RunRevPlanet
Hi Tom, I have half the answer, I sell a LiveCode Spell checker here: http://www.runrevplanet.com/ but it does not include a medical dictionary. Although if you can source a suitable list of words you could add them to the dictionary. - -- Scott McDonald Components, Controls, Tools and

Re: Control From Outside

2013-08-16 Thread Mark Schonewille
Hi Mike, On Windows, your best option is probably to use sockets, if you are trying to communicate between two LiveCode standalones. If you want to communicate between a LiveCode standalone and another non-LiveCode application, it depends on the options available in the other application.

Mac/WIndows ASCII characters

2013-08-16 Thread Peter Haworth
I'm displaying data from a custom property in a scrolling list field. Before I put the data into the field, I replace return chars in it with numToChar(182) - the paragraph symbol. This works fine on Windows but on a Mac I get a completely different character - an O with some sort of accent

Re: Mac/WIndows ASCII characters

2013-08-16 Thread Mark Schonewille
Hi Pete, Either use isoToMac(numToChar(182)) or numToChar(166). The isoToMac and macToIso functions apply to all ASCII character above 128 and not only if store on one platform and displayed on another. If you use the Latin-1 character table on Mac, like you're doing now, you'll always need

Re: Mac/WIndows ASCII characters

2013-08-16 Thread Curry Kenworthy
Pete wrote: I replace return chars in it with numToChar(182) - the paragraph symbol. This works fine on Windows but on a Mac I get a completely different character - an O with some sort of accent over it. Try para; with htmltext! Best wishes, Curry K.