Re: $PATH

2011-01-27 Thread David Bovill
Ah yes - that's how I remember it. So setting the $PATH from within LiveCode works on a temporary basis, but $PATH is not in sync with your personal users terminal (bash) settings. It would be good to know where exactly LiveCode gets it's $PATH settings from? 2011/1/26 François Chaplais

Re: Answer file with type BMPf?

2011-01-27 Thread William de Smet
Thanks Ken, I tried your suggestion but no luck. I tested it on Windows 7 en OSX 10.6 with LC 4.5.3. New stack, image area and code. All files OK but BMP is still a no go! Anyone? Greetings, William - Verstuurd vanaf mijn iPhone! Op 26 jan. 2011 om 21:45 heeft Ken Ray

Re: Answer file with type BMPf?

2011-01-27 Thread William de Smet
Hi Bernd, I use this script in an image area: on mouseup answer file Kies een foto: with type All Images|jpg,gif,png,bmp|JPEG,GIFf,PNGf,BMPf if it = empty then put empty into img foto1 exit mouseUp end if

Re: Htmltext: storing data in markup

2011-01-27 Thread Richard Gaskin
David Bovill wrote: Anyone got any suggestions / experience in using htmltext to store data / metadata. Most of the time is strips out any additional tags you might add (which is a great pity) - but I've found it useful to use markup like: a name=some thing you want to storeFor this text/a

Re: Answer file with type BMPf?

2011-01-27 Thread Jan Schenkel
--- On Thu, 1/27/11, William de Smet williamdes...@gmail.com wrote: Hi Bernd, I use this script in an image area: on mouseup     answer file Kies een foto: with type All Images|jpg,gif,png,bmp|JPEG,GIFf,PNGf,BMPf                if it = empty                then                   put

Re: Htmltext: storing data in markup

2011-01-27 Thread Ben Rubinstein
On 27/01/2011 13:38, David Bovill wrote: Anyone got any suggestions / experience in using htmltext to store data / metadata. Most of the time is strips out any additional tags you might add (which is a great pity) - but I've found it useful to use markup like: a name=some thing you want to

Re: Htmltext: storing data in markup

2011-01-27 Thread David Bovill
Sounds good Ben On 27 January 2011 14:20, Ben Rubinstein benr...@cogapp.com wrote: A technique I used a few years ago, which worked out well, was to use the low-order bits of the colour to code an ID that my code could associate with whatever it liked. By reserving two bits each from R/G/B

Re: OAuth

2011-01-27 Thread David Bovill
On 27 January 2011 14:37, Andre Garzia an...@andregarzia.com wrote: On Thu, Jan 27, 2011 at 11:42 AM, David Bovill da...@vaudevillecourt.tv wrote: I'll work on it with you Harald, we could take some steps looking at this next weekend at a LiveCode TV event? I think Andre has some code

Re: Build for Server Basics

2011-01-27 Thread Björnke von Gierke
you do not need to build a standalone for server. instead, the server is a package that you can install on an apache web server, and then use rev code in an php-like fashion, using rev code in text files that the server interprets. On 27 Jan 2011, at 14:44, Ray Horsley wrote: Greetings,

Re: On-rev Rename problem

2011-01-27 Thread Alex Tweedly
works OK for me ?rev put the detailed files into t replace CR with br CR in t put br t rename a.txt b.txt put the detailed files into t replace CR with br CR in t put br t ? -- Alex. On 27/01/2011 16:17, Rick Harrison wrote: Hi there, I've been trying to use rename file in an

Re: [ANN] TimeMachine

2011-01-27 Thread Richmond
On 01/27/2011 12:22 AM, Bob Sneidar wrote: I liked the movie better than the book. The movie had a nice love story and all ended well. The book dropped you off in a decidedly unfriendly section of the slums of Norganza on planet FriedZig without any explanation. Or did I dream that? Bob We

irev scripting and libURL

2011-01-27 Thread Devin Asay
Have searched but can't find the answer to this: Are libURL calls available in the revServer environment? How is libURL implemented? Is it an external or integrated into the engine? Thanks, Devin Devin Asay Humanities Technology and Research Support Center Brigham Young University

Re: Answer file with type BMPf?

2011-01-27 Thread William de Smet
Thanks everyone for taking the time to look into my problem. @Jan: Thanks! Bedankt! Your suggestion did it. @ Bernd: I will use your latest suggestion as well. Till next time :-) greetings, William 2011/1/27 BNig niggem...@uni-wh.de Hi William, Jan's solution works for me with bmp to

RE: Build for Server Basics

2011-01-27 Thread Ray Horsley
Actually, yes. It is IIS, however, I understand there's no server package for Windows at this time. No problem, though, since Fire Daemon is working well for us. Thanks, Ray Horsley LinkIt! Software -Original Message- From: use-livecode-boun...@lists.runrev.com

Re: Build for Server Basics

2011-01-27 Thread Björnke von Gierke
oh in that case, you can alternatively also use rev 3.5 as cgi. there have been only some minor changes to the faceless-relevant stuff since then. as a bonus, you'll be able to open stacks and use externals, all in iis. if you do not have 3.5 you can ask support to send it to you (and ask them

Re: On-rev Rename quotes work. Vars don't!

2011-01-27 Thread Rick Harrison
Hi again, The following works: rename imac27.jpg imac2012.jpg what's below doesn't work: put imac27.jpg into NameOfOldFile put imac2012.jpg into NameOfNewFile rename NameOfOldFile NameOfNewFile also this doesn't work: put imac27.jpg into NameOfOldFile put imac2012.jpg into NameOfNewFile put

Re: On-rev Rename quotes work. Vars don't!

2011-01-27 Thread Björnke von Gierke
On 27 Jan 2011, at 19:56, Rick Harrison wrote: rename imac27.jpg imac2012.jpg what's below doesn't work: put imac27.jpg into NameOfOldFile put imac2012.jpg into NameOfNewFile rename NameOfOldFile NameOfNewFile Uhm that's wrong syntax, it should be: rename NameOfOldFile to

Re: On-rev Rename quotes work. Vars don't!

2011-01-27 Thread Rick Harrison
Hi Richard, The addition of the to keyword surprisingly made even what was working stop working! The bug needs to be fixed or the dictionary updated or both. Tim's suggestion of building the entire statement, and then executing it as a do command worked great! Thanks Tim for the great work

Re: [ANN] TimeMachine

2011-01-27 Thread form
On Thu, Jan 27, 2011 at 11:45 AM, Richmond richmondmathew...@gmail.comwrote: We purists preferred the TV series; especially the bit with Hot Black De Satio. *Makes a all-black interface to his next LiveCode app in honor of Adams* ~ Chris Innanen ~ Nonsanity

Re: On-rev Rename quotes work. Vars don't!

2011-01-27 Thread Klaus on-rev
Hi Rick, Hi Richard, The addition of the to keyword surprisingly made even what was working stop working! The bug needs to be fixed or the dictionary updated or both. Tim's suggestion of building the entire statement, and then executing it as a do command worked great! Thanks Tim for

RE: Build for Server Basics

2011-01-27 Thread Ray Horsley
Many thanks for this helpful information! Ray -Original Message- From: use-livecode-boun...@lists.runrev.com [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Björnke von Gierke Sent: Thursday, January 27, 2011 1:29 PM To: How to use LiveCode Subject: Re: Build for Server

Re: usb driver problem

2011-01-27 Thread Claudi Cornaz
Hi all yea, 17.23 CET. Finaly we have contact 12345678 /1296144957195 12345678 /1296144957802 12345678 /1296144958107 12345678 /1296144958412 12345678 /1296144959018 12345678 /1296144959322 12345678 /1296144959629 data kept on comming. Now I

Re: On-rev Rename quotes work. Vars don't!

2011-01-27 Thread Rick Harrison
Hi Klaus, I started out using the correct syntax with FILE, and it didn't work on On-Rev. I've verified that the pathname is correct. rename FILE xyz to zyx works fine on On-Rev however: put xyz into MyOldFileName put zyx into MyNewFileName rename FILE MyOldFileName to MyNewFileName does

Re: usb driver problem

2011-01-27 Thread Jerry J
On Jan 27, 2011, at 2:15 PM, Claudi Cornaz wrote: Hi all yea, 17.23 CET. Finaly we have contact Congratulations! Just in time for me. I'm just about to have to hook up to two serial devices in a project to replace a HC stack that has been running for about 12 years on a PowerBook G3

Re: On-rev Rename quotes work. Vars don't!

2011-01-27 Thread Klaus on-rev
Hi Rick, Hi Klaus, I started out using the correct syntax with FILE, and it didn't work on On-Rev. I've verified that the pathname is correct. rename FILE xyz to zyx works fine on On-Rev however: put xyz into MyOldFileName put zyx into MyNewFileName rename FILE

[OT] Re: [ANN] TimeMachine

2011-01-27 Thread Alex Tweedly
Surely a purist would prefer the original, i.e. the radio series. -- Alex. On 27/01/2011 16:45, Richmond wrote: On 01/27/2011 12:22 AM, Bob Sneidar wrote: I liked the movie better than the book. The movie had a nice love story and all ended well. The book dropped you off in a decidedly

Re: usb driver problem

2011-01-27 Thread Mark Wieder
Claudi- Congratulations on getting this working. And that's quite a story. I see a bright future ahead for LiveCode-Arduino cyborgs. -- -Mark Wieder mwie...@ahsoftware.net ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit

Re: An idea on multithreading implementation

2011-01-27 Thread Jeffrey Massung
On Jan 27, 2011, at 10:54 PM, Geoff Canyon Rev wrote: I'd suggest coroutines: http://en.wikipedia.org/wiki/Coroutine They have the advantage of being fairly similar to what some of us have done already with send.in to get this sort of behavior, and probably wouldn't break existing syntax.