Re: Multiple Alignments In One Line?

2013-04-04 Thread André Bisseret
Bonjour Scott, Before Data grids I used to use the following handler to right align (mainly numbers) in a tab stops field Below, in order to right align the second column in a field "fData" with two columns : --- on mouseUp local tData, --- set the itemDel to tab put fld "fDa

Re: [OT] Mobile App - Should it be Paid or Free?

2013-04-04 Thread Randy Hengst
I'm just catching up on this strand… a related question. Given that it's tax season in the US, for folks who sell and give away apps… do the free apps count somewhere as a business expense? be well, randy -- On Apr 3, 2013, at 1:36 PM, Scott Rossi wrote: > Hi Ender: > > One popular approac

Re: CGI scripts are failing

2013-04-04 Thread Mike Bonner
LC is still 32 bit, so even if the newer versions were ok for cgi it wouldn't work without the 32 bit libs. LC server has the same limitation. I too look forward to the open sourcing so some of this can be addressed. When they ask you what is in the 32 bit libs and what specific libs you need you

Re: [OT] Mobile App - Should it be Paid or Free?

2013-04-04 Thread Thomas McGrath III
I am not a tax consultant so be warned! I was thinking marketing expenses like mass mailings that drive business to your business sounds about the same as an app that was paid for/developed to do the same thing??? maybe not… Tom -- Tom McGrath III http://lazyriver.on-rev.com mcgra...@mac.com On

Re: CGI scripts are failing

2013-04-04 Thread Richard Gaskin
Mike Bonner wrote: LC is still 32 bit, so even if the newer versions were ok for cgi it wouldn't work without the 32 bit libs. LC server has the same limitation. I too look forward to the open sourcing so some of this can be addressed. I had thought that 64-bit support was one of the Kickstarte

Re: UniCode with iOS mobilePick

2013-04-04 Thread Ender Nafi Elekçioğlu
Unfortunately, it does not. Fortunately, there is a workaround. The Option Menu Button trigger the native mobilePick control. So, here is the recipe {pseudo-code}: --- on createMobilepickTrigger _create a button _set its type to option menu _set its rect to 0,0,1,1 _set its text to tUniencoded

Re: CGI scripts are failing

2013-04-04 Thread Mike Bonner
Hmm probably was but my memory is always a fuzzy sinkhole. Some days I have to go outside to remember the sky is blue. On Thu, Apr 4, 2013 at 8:04 AM, Richard Gaskin wrote: > Mike Bonner wrote: > >> LC is still 32 bit, so even if the newer versions were ok for cgi it >> wouldn't work without the

Re: [OT] Mobile App - Should it be Paid or Free?

2013-04-04 Thread Ender Nafi Elekçioğlu
Hello all, I came to a decision, I'll choose Scenario #1. This one and several succeeding ones will be free. Not freemium, not ad-supported, absolutely free. They're for little pre-school children, it wouldn't be cool to distract them with ads or cutting off the story in the middle to force their

searching an array?

2013-04-04 Thread Chris Sheffield
Okay array experts. I need help. :-) Is there any way to search and/or filter an array? I'm not finding anything in the docs, but I probably don't know what I'm looking for. My only thought was to use combine to convert the array to a list, and then use the filter command to locate what I need.

Re: searching an array?

2013-04-04 Thread Andrew Kluthe
Not that I have seen or come across. Although, people on the list come up with some pretty neat (and fast) search routines for things. On Thu, Apr 4, 2013 at 10:31 AM, Chris Sheffield wrote: > Okay array experts. I need help. :-) > > Is there any way to search and/or filter an array? I'm not fin

Re: searching an array?

2013-04-04 Thread Mike Bonner
it might be possible to arrayencode the array and search that. If its a text only search it doesn't look like this should be too awful bad as long as key names and text entries stay clear text (it seems they do) Looking at the data there is a definite pattern. Would it be worth it? Probably not

Re: [OT] Mobile App - Should it be Paid or Free?

2013-04-04 Thread Randy Hengst
Hi Tom, My sense of things matches yours… however, with mass mailings it's pretty easy to know how much each mailing cost… how do you determine the "value/cost" of something that is free? … especially if it's always been free… be well, randy - On Apr 4, 2013, at 8:58 AM, Thomas McGrath III

Re: searching an array?

2013-04-04 Thread Peter Haworth
I've usually just bitten the bullet and done it with nested repeat loops going through the various levels of keys. It's pretty simple code and I've always found array handling to be extremely fast so unless you have huge numbers of keys, it will probably work fine. Pete lcSQL Software

Re: [OT] Mobile App - Should it be Paid or Free?

2013-04-04 Thread tbodine
Colin Holgate-2 wrote > Strange is going on at the moment, instead of the typical 20 or so copies > a day, we've been seeing over 1,000 a day on Amazon. Not on iTunes or > Google Play, just Amazon. Just to clarify, that's a Kindle version on Amazon, right? Or is Amazon now a platform for nonKindl

Re: searching an array?

2013-04-04 Thread Mark Talluto
On Apr 4, 2013, at 8:31 AM, Chris Sheffield wrote: > Okay array experts. I need help. :-) > > Is there any way to search and/or filter an array? I'm not finding anything > in the docs, but I probably don't know what I'm looking for. My only thought > was to use combine to convert the array to

Re: searching an array?

2013-04-04 Thread Chris Sheffield
Thanks, Mike. Eventually this data will be stored in a SQLite db. I'm just working on a proof of concept right now and am not quite ready to create the database. I'm not sure about using arrayEncode(), as it returns a bunch of binary gobbledegook that may be difficult to decipher, but I may loo

6.0RC5

2013-04-04 Thread Peter Haworth
Scrolling still stops working for me "after a while" Sorry to be so unspecific but it's hard to tie down exactly when it starts happening. Usually after a lot of expansions of stacks, cards, and groups (with snapshots on). I also just experienced the whole PB display going blank after trying to

Re: [OT] Mobile App - Should it be Paid or Free?

2013-04-04 Thread Colin Holgate
It always was an Android store. You have to go through an extra step to get your app in the Kindle Fire store. So, I was talking about the Appstore, which includes both Fire and non-Fire apps. On Apr 4, 2013, at 12:35 PM, tbodine wrote: > >Just to clarify, that's a Kindle version on Amazon, ri

Re: CGI scripts are failing

2013-04-04 Thread Mark Wieder
Richard Gaskin writes: > I had thought that 64-bit support was one of the Kickstarter stretch > goals, but I can no longer find a complete list of all of the stretch goals. > > Anyone here have a URL to those? http://www.kickstarter.com/projects/1755283828/open-source-edition-of-livecode/posts

Conditional compile

2013-04-04 Thread Peter Haworth
The context of this is providing a "lite"/free and paid for version of a plugin. The free version will not have the full functionality of the paid for version. I'm struggling with the best way to deal with the codebase for this situation. I can set a custom property to define which version I'm

Leap Motion

2013-04-04 Thread Michael Kann
This might be of interest to LiveCode developers: http://www.newscientist.com/article/mg21829116.100-leap-motion-hacks-show-what-3d-gesture-sensing-can-do.html -- Watch for line break in URL ___ use-livecode mailing list use-livecode@lists.runrev.com Pl

Re: Leap Motion

2013-04-04 Thread Colin Holgate
I pre-ordered one 11 months ago. It will ship eventually, presumably on May 13th. On Apr 4, 2013, at 2:20 PM, Michael Kann wrote: > This might be of interest to LiveCode developers: > > http://www.newscientist.com/article/mg21829116.100-leap-motion-hacks-show-what-3d-gesture-sensing-can-do.ht

Re: Leap Motion

2013-04-04 Thread stephen barncard
Ha! Another kickstarter. I invested too. good stuff. On Thu, Apr 4, 2013 at 11:49 AM, Colin Holgate wrote: > I pre-ordered one 11 months ago. It will ship eventually, presumably on > May 13th. > > > On Apr 4, 2013, at 2:20 PM, Michael Kann wrote: > > > This might be of interest to LiveCod

Re: Conditional compile

2013-04-04 Thread Mark Wieder
Peter Haworth writes: > Am I faced with maintaining two separate stack files? Or perhaps some sort > of release process that would assemble a stack file from various components > so I only have to duplicate the things that differ between the two versions? Can you put the extra functionality int

Page 2 of a PDF

2013-04-04 Thread Ray Horsley
I believe this has come up before but don't I see any way to convert page 2, page 3, etc. of a PDF to a PNG or JPEG via snapshot using either revBrowser or a player object. A browser object doesn't seem to display a specified page at all, and while I can manually scroll through a PDF using a pl

Re: Leap Motion

2013-04-04 Thread Mark Wieder
Colin Holgate writes: > I pre-ordered one 11 months ago. Did you manage to sign up for the developers program? I submitted my request last year and only got a "we'll contact you later" message. -- Mark Wieder mwie...@ahsoftware.net ___ use-livec

Re: Leap Motion

2013-04-04 Thread stephen barncard
yeah I did but didn't send money. I guess I didn't kickstart it at all. The hardware was offered but I lost track and got on to other things. It's exciting stuff though. You know I like hardware-software interfacing... On Thu, Apr 4, 2013 at 12:34 PM, Mark Wieder wrote: > Colin Holgate writ

Re: Leap Motion

2013-04-04 Thread Colin Holgate
I can't remember. A friend was sent one without even applying, so I have seen one in person. On Apr 4, 2013, at 3:34 PM, Mark Wieder wrote: > >Did you manage to sign up for the developers program? I submitted my request > last year and only got a "we'll contact you later" message. ___

Re: CGI scripts are failing

2013-04-04 Thread Richard Gaskin
Mark Wieder wrote: Richard Gaskin writes: I had thought that 64-bit support was one of the Kickstarter stretch goals, but I can no longer find a complete list of all of the stretch goals. Anyone here have a URL to those? http://www.kickstarter.com/projects/1755283828/open-source-edition-of-

Re: Page 2 of a PDF

2013-04-04 Thread Andrew Kluthe
I was calling imagemagick and ghost script for a while to do this from the shell, but recently start using VeryPDF's proprietary solution for doing this from a command line to save on filesize when I bundle it. On Thu, Apr 4, 2013 at 2:35 PM, Ray Horsley wrote: > I believe this has come up befo

Re: Conditional compile

2013-04-04 Thread Peter Haworth
Thanks Mark. I was thinking of something similar to that after I wrote the email. Actually revolving around a library stack to make the calls a little easier. Would mean some reorganization of the code but I think it's pretty well modularized so probably not too bad. I probably missed this somew

Re: Conditional compile

2013-04-04 Thread Mark Wieder
Peter Haworth writes: > Thanks Mark. I was thinking of something similar to that after I wrote the > email. Actually revolving around a library stack to make the calls a > little easier. Would mean some reorganization of the code but I think it's > pretty well modularized so probably not too ba

Re: CGI scripts are failing

2013-04-04 Thread Mark Wieder
Richard Gaskin writes: > Hmmm...I had thought there were more things than I see there. If that's > the complete list, I didn't see anything there about 64-bit. What I see is: 357k Resolution independence 376k Pluggable themes 405k Cocoa 417k Physics engine 424k Windows8+phone theme 434k

Re: Conditional compile

2013-04-04 Thread J. Landman Gay
On 4/4/13 4:42 PM, Mark Wieder wrote: Peter Haworth writes: I probably missed this somewhere but how can we check in a script if we're running in the open source version of Livecode? if the date > 2013.04.09 then ... Heh. :) More seriously: get the password of stack "home" It's locked

Re: CGI scripts are failing

2013-04-04 Thread J. Landman Gay
On 4/4/13 5:04 PM, Mark Wieder wrote: Richard Gaskin writes: Hmmm...I had thought there were more things than I see there. If that's the complete list, I didn't see anything there about 64-bit. What I see is: 357k Resolution independence 376k Pluggable themes 405k Cocoa 417k Physics en

Re: Conditional compile

2013-04-04 Thread Peter Haworth
On Thu, Apr 4, 2013 at 2:42 PM, Mark Wieder wrote: > I do something similar to implement plugins in an app: check a specific > directory, get a list of the stacks there, query the interface of each one > (the uRIP["events"]) and enable those features. > I like that! > > > I probably missed this

Re: Conditional compile

2013-04-04 Thread Peter Haworth
On Thu, Apr 4, 2013 at 3:08 PM, J. Landman Gay wrote: > Heh. :) More seriously: > > get the password of stack "home" > > It's locked right now and will return "true". > No too serious though... is it? Surely there'll be an official way to check, like maybe another value for the environment or s

Re: Conditional compile

2013-04-04 Thread Dr. Hawkins
On Thu, Apr 4, 2013 at 11:04 AM, Peter Haworth wrote: > I'm struggling with the best way to deal with the codebase for this > situation. I can set a custom property to define which version I'm in but > since I can't password protect my source code in the open source version, > it would be a simp

Re: Page 2 of a PDF

2013-04-04 Thread Mac Bennett
I've been using "pdfimages" one of the tools that comes with "xpdf"; I am using Livecode shell calls to batch process a hundred or so pdfs of old letters which were scanned as pdf. From the commandline, pdfimages outputs numbered jpg or ppm files of each page in multipage pdfs. (Note: this

Re: Conditional compile

2013-04-04 Thread Peter Haworth
On Thu, Apr 4, 2013 at 5:43 PM, Dr. Hawkins wrote: > You don't need to make your free version open source; just compile it > with the commercial product like the other one. > This isn't a compiled standalone, it's a plugin. Pete lcSQL Software ___

Re: UniCode with iOS mobilePick

2013-04-04 Thread Scott Morrow
Thanks! On Apr 4, 2013, at 7:36 AM, Ender Nafi Elekçioğlu wrote: > Unfortunately, it does not. > Fortunately, there is a workaround. > > The Option Menu Button trigger the native mobilePick control. > So, here is the recipe {pseudo-code}: > > --- > > on createMobilepickTrigger > _create a b

The little object that wasn't there

2013-04-04 Thread Cal Horner
I have a stack (like everyone else) and the 'Master' card contains all the objects needed to make a complete window. Some of the buttons are needed for separate cards, but not all of the cards. When I need one I do the standard thing, push -> go to master card -> copy one of the buttons -> pop ->