Re: Does anyone have a copy of the Pop3 Lib that used to be on Sarah's site?

2012-12-03 Thread Richard Gaskin
Jim Schaubeck Colin wrote: If it helps anyone to find a copy, this was the original URL: http://www.troz.net/rev/stacks/POP_library_demo.rev So, presumably the stack is named POP_library_demo.rev, and may be on someone's hard drive as we speak! Colin, That was it !! I tried your

Re: how my book is doing...

2012-12-03 Thread Dr. Hawkins
On Sunday, December 2, 2012, Bill Vlahos wrote: Keep the Mac. http://wiki.lyx.org/Mac/Mac I've had it for years :). In fact, it's on most of not all of my macs. but these days, it's mostly legal writing, much of which has to be shared with other lawyers. And no equations. LyX really can do

Re: how my book is doing...

2012-12-03 Thread tbodine
Congrats, Colin. I continue to find your book very helpful. I recommend it to the LiveCode community. -- Tom Bodine -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/how-my-book-is-doing-tp4657757p4657815.html Sent from the Revolution - User mailing list archive

Stack Save As issue

2012-12-03 Thread Peter Haworth
Whenever I use the IDE Save As menu item to save a stack in a different file (or do it by script), I get the IDE messages about a stack with the same name as one already in memory being loaded. It seems that the IDE attempts to load the saved as version of the stack after saving it. Is anyone

Re: Stack Save As issue

2012-12-03 Thread Charles E Buchwald
Yes, I'm seeing that, too. - Charles On 2012-12-03, at 12:10 PM, Peter Haworth p...@lcsql.com wrote: Whenever I use the IDE Save As menu item to save a stack in a different file (or do it by script), I get the IDE messages about a stack with the same name as one already in memory being

Interesting wordOffset behavior

2012-12-03 Thread Peter Haworth
I'm finding that wordOffset treats comment chars as a word even if they are immediately followed by another character. For example: wordOffset(--,repeat with x=1 to 100 --check something) ...returns 6. I would have expected it to return zero since there is no occurrence of -- surrounded by

Re: Interesting wordOffset behavior

2012-12-03 Thread Mark Schonewille
Hi Pete, It will return 0 if you set the wholeMatches to true. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkprogrammer KvK: 50277553 Use Color Converter to convert CMYK, RGB, RAL, XYZ,

Re: Weird array comparison limitation

2012-12-03 Thread Robert Sneidar
I agree. Something that ought to work... well, ought to! I think I have dodged the bullet by using a personal development policy where I avoid wherever I can the use of a not equal comparison. I always use not (a = b). I forget why I developed this method, but now I see the problem you are

Re: Interesting wordOffset behavior

2012-12-03 Thread Peter Haworth
Thanks Mark. I knew there must be a logical explanation for it! Pete lcSQL Software http://www.lcsql.com On Mon, Dec 3, 2012 at 12:39 PM, Mark Schonewille m.schonewi...@economy-x-talk.com wrote: Hi Pete, It will return 0 if you set the wholeMatches to true. -- Best regards, Mark

Re: App rejected now the 3rd time - because...

2012-12-03 Thread Matthias Rebbe
Thanks to all for your suggestions. I added now a more detailed english description for the reviewer, although i informed the review board team already after the 2nd rejection about the app and its planned usage. Unfortunately i cannot add more content, because the customer would not pay for

Re: App rejected now the 3rd time - because...

2012-12-03 Thread Monte Goulding
Hmm... this brings up a point for anyone contracted to get an app into the app store rather than just build an app to client requirements. As app store guidelines are such a shifting target how are people covering themselves in the event the client requirements are not sufficient to meet them?

Re: App rejected now the 3rd time - because...

2012-12-03 Thread Matthias Rebbe
Am 03.12.2012 um 23:19 schrieb Monte Goulding mo...@sweattechnologies.com: Hmm... this brings up a point for anyone contracted to get an app into the app store rather than just build an app to client requirements. As app store guidelines are such a shifting target how are people covering

Re: App rejected now the 3rd time - because...

2012-12-03 Thread Monte Goulding
It's probably a good opportunity for us to get more work when you think about it…. But it could also happen that the customer then will not place an order. But anyway better no order than working for nothing. Better not to get the job than deal with a customer that really doesn't want to

iOS: Setting defaultFolder seems to be broken - missing project folders in app package

2012-12-03 Thread Ralf Bitter
Whenever I build an iOS standalone with LiveCode 5.5.3 (Build 1497) all project folders are missing in the app package, so for example referenced images are not included. Furthermore I noticed that setting the defaultFolder strangely doesn't work anymore with iOS builds. This applies to

Re: Stack Save As issue

2012-12-03 Thread Robert Sneidar
Save as a different name. Save as will open the new stack in memory, which will conflict with the present stack with the same name. Bob ' On Dec 3, 2012, at 8:10 AM, Peter Haworth wrote: Whenever I use the IDE Save As menu item to save a stack in a different file (or do it by script), I get

Re: Interesting wordOffset behavior

2012-12-03 Thread Robert Sneidar
Wordoffset returns space delimited data. Bob On Dec 3, 2012, at 10:36 AM, Peter Haworth wrote: I'm finding that wordOffset treats comment chars as a word even if they are immediately followed by another character. For example: wordOffset(--,repeat with x=1 to 100 --check something)

Calling Live Code form inside Word Press

2012-12-03 Thread Brahmanathaswami
Tomorrow or the next day we will be releasing our new web site. 95% RevIgniter/livecode with /blog running Word Press on the same public_html folder.. it would be really cool if we could invoke live code functions from inside Word Press... I wonder, has anyone tried setting up .lc functions

RE: Stack Save As issue

2012-12-03 Thread Ralph DiMola
Pete, Same Here. I have resigned to closing then re-opening LC whenever I do a Save As, Ralph DiMola IT Director Evergreen Information Services rdim...@evergreeninfo.net -Original Message- From: use-livecode [mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Peter Haworth

Re: Calling Live Code form inside Word Press

2012-12-03 Thread Monte Goulding
Try something like this: $contents = file_get_contents('http://example.com/revigniter/path/to/some/function/with/some/parameters'); On 04/12/2012, at 1:36 PM, Brahmanathaswami wrote: Tomorrow or the next day we will be releasing our new web site. 95% RevIgniter/livecode with /blog running

Re: Interesting wordOffset behavior

2012-12-03 Thread Peter M. Brigham
Yeah, it doesn't really behave properly. If you do put word 2 of one tab two tab three you get tabtwotabthree and put word 2 of one cr two cr three gives you crtwocrthree It really should consider any white space as a word delimiter. Sigh. Probably Richard Gaskin can tell us the

Re: Stack Save As issue

2012-12-03 Thread Peter M. Brigham
The problem with this tack is that often you will have stack references in your scripts that will break. -- Peter Peter M. Brigham pmb...@gmail.com http://home.comcast.net/~pmbrig On Dec 3, 2012, at 9:27 PM, Robert Sneidar wrote: Save as a different name. Save as will open the new stack in

set imageSource of text in Data Grid?

2012-12-03 Thread Phil Davis
Hi folks - Let's say I have a data grid containing a list of tasks, where each line has two columns - col 1 is the task description and col 2 is a space character. As each task completes, I want my code to set the imageSource of col 2 of that line to the ID of a little checkmark image. I feel

Re: set imageSource of text in Data Grid?

2012-12-03 Thread Phil Davis
Thanks to Glen Bojsza off-list for getting me started in the right direction. Here is what I did in the column behavior script, assuming pData is either a space or an image ID: on FillInData pData -- This message is sent when the Data Grid needs to populate -- this template with the