Re: breakdown of my book

2012-07-22 Thread Pierre Sahores
Colin, Thanks and congratulations. Pre-ordered ! (in using the incredible unergonomic Packt payment workflow - lots of unneeded clicks). Kind regards, Pierre Le 21 juil. 2012 à 20:51, Jim Lambert a écrit : Colin, Thanks for the breakdown of your book. Glad the wait is one month less!

Re: Why killing Media was killing an investment in the future

2012-07-22 Thread Richmond
On 07/20/2012 03:25 AM, Lynn Fredricks wrote: It's my personal opinion that we ought to be making a much bigger effort to improve education across the board, and no, more money does not accomplish that goal. Im going to dodge the political bullets I hear a buzzing in the air, Bob ;-) For any

Re: RevMobile: Native controls

2012-07-22 Thread Pierre Sahores
Good point to get in mind ! Thanks Andre. Le 22 juil. 2012 à 02:49, Andre Garzia a écrit : On Sat, Jul 21, 2012 at 9:34 PM, Chipp Walters ch...@chipp.com wrote: I typically think either we're designing for Tablets or Phones-- but not for both at the same time. Most devs I've seen tend to

Re: RevMobile: Native controls

2012-07-22 Thread Monte Goulding
That's it. Like using a blown up iPhone app on your iPad. It's not the density the causes the problem it's the relationship between density and the number of pixels: pixels / density = size. By working out the size we can determine if a device screen is large enough for us to present the tablet

Re: Works in a button but not in the message box

2012-07-22 Thread Thomas McGrath III
ohh, I think I will try that. Maybe it has a hard time with this card. good idea. -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Jul 21, 2012, at 1:51 PM, dunb...@aol.com wrote: I agree, the message box is often frazzled trying to keep track of everything. If you

Re: breakdown of my book (LiveCode Mobile Development)...

2012-07-22 Thread Keith Clarke
...yep, jumped in, too - thanks Colin. As an old dog learning a new trick with development - and with LiveCode as my first step beyond HTML - I need some kind of best practice 'straight and narrow' path, amidst all the brilliant, creative but divergent '100 ways to roll your own' ideas that

Old timey data entry GUI problem

2012-07-22 Thread Björnke von Gierke
Hi everyone Sorry for the wall of text, here's a short version: I am developing a software for a charity tourney. I need typists to enter 4 numbers about 200 times within 30 minutes (or so). See screenshot of what I got right now: http://i.imgur.com/G7Fgg.png I have no experience with such

Re: Old timey data entry GUI problem

2012-07-22 Thread Ken Corey
I'm not sure what kind of tourney you've got there, but why in heaven's name do all 4 numbers have to be entered each time? Surely the id is known before-hand...and likely the table and partner number too, otherwise how is this event scheduled? All of this should be entered before the event

Re: breakdown of my book (LiveCode Mobile Development)...

2012-07-22 Thread Colin Holgate
I wouldn't go so far as to say I did best practices! Björnke can tell you (he's one of the two reviewers, Andreas being the other) that I did a few things in a way that wasn't how he would have done them! For much of the book, where it's talking about installing SDKs and the like, there are

Re: Old timey data entry GUI problem

2012-07-22 Thread Mike Bonner
I have a couple thoughts on this. First, thinking of the people doing the data entry as typists may not be the best viewpoint. You should look for people skilled at 10 key operation and gear the application towards 10 key methods. Approximately 800 numbers total every 30 minutes should be easily

Re: acceleratedrendering = true and ink = NOOP don't cooperate :-/

2012-07-22 Thread Randy Hengst
Hi Scott and Jacque, Thanks for the help… I've been exploring colorOverlay… looks like I can make it work. be well, randy - On Jul 22, 2012, at 12:14 AM, Scott Rossi wrote: The first question to Randy would be, why do you want to change the image to black? What's the end effect you're

Re: breakdown of my book (LiveCode Mobile Development)...

2012-07-22 Thread Magicgate Software - Skip Kimpel
Just preordered my copy as well Can't wait! On Sunday, July 22, 2012, Colin Holgate wrote: I wouldn't go so far as to say I did best practices! Björnke can tell you (he's one of the two reviewers, Andreas being the other) that I did a few things in a way that wasn't how he would have done

Re: breakdown of my book (LiveCode Mobile Development)...

2012-07-22 Thread Petrides, M.D. Marian
I pre-ordered, too. This should make an excellent companion to last year's online course on mobile app development. Can't wait for the release date. Soon, very soon On Jul 22, 2012, at 9:21 AM, Keith Clarke wrote: ...yep, jumped in, too - thanks Colin. As an old dog learning a new

Any suggestions?

2012-07-22 Thread Charles Szasz
I have the following group script for 19 checkboxes which puts the names of 19 checkboxes into a field final when they are checked. However due to size restrictions of my window, I need to have the names of checkboxes to appear in an additional field when the first field cannot hold all of the

Re: RevMobile: Native controls

2012-07-22 Thread Jim Lambert
In watching Chipp's videos, I wish LiveCode's Preferences would contain a control for setting the default image quality. For example, to good to avoid the repeated resetting. One could do this by changing the templateimage, but a preference would be handy. Jim Lambert

Re: Old timey data entry GUI problem

2012-07-22 Thread Björnke von Gierke
Thanks for your thoughts, some interesting stuff. The game that is played is Jassen the (almost) official Swiss national card game: http://en.wikipedia.org/wiki/Jass You asked why I need those exact four numbers. Yes, all 4 numbers need to be entered: - I need to know the ID of the persons

Re: Any suggestions?

2012-07-22 Thread Peter M. Brigham
On Jul 22, 2012, at 12:31 PM, Charles Szasz wrote: I have the following group script for 19 checkboxes which puts the names of 19 checkboxes into a field final when they are checked. However due to size restrictions of my window, I need to have the names of checkboxes to appear in an

Re: Any suggestions?

2012-07-22 Thread Charles Szasz
Hi Peter! Thanks for your suggestion! I removed the line feeds and cr from your script after pasting it into my group script. I got an error message for this line of code put counter . tName cr after theList: compilation error at the line 29 (repeat: garbage where a command should be) near

Re: Any suggestions?

2012-07-22 Thread Peter Haworth
Hi Charles, Here's an amended verison of your script that I think will work (untested). on mouseUp put the number of buttons of me into nbr put 1 into x repeat with n = 1 to nbr put the short name of button n of me into tName if not the hilite of button n of me then next

Re: Old timey data entry GUI problem

2012-07-22 Thread Björnke von Gierke
I really like your idea of using the numpad + to switch between fields. That frees the other hand for handling the paperwork. A great speedup! To avoid lag slowing down entry, I can do all checking and db-to-entry comparisions asynchronous. They're done via sockets anyway. As for proof

Re: Any suggestions?

2012-07-22 Thread Peter M. Brigham
On Jul 22, 2012, at 1:37 PM, Charles Szasz wrote: … I got an error message for this line of code put counter . tName cr after theList: compilation error at the line 29 (repeat: garbage where a command should be) near ., char 11 Any suggestions? Sorry: put counter . tName cr

Re: Preview of Resolution Independent Control library for RevMobile

2012-07-22 Thread Bill Vlahos
Chipp and Ken, This is fantastic. Thank you. Bill Vlahos _ InfoWallet (http://www.infowallet.com) is about keeping your important life information with you, accessible, and secure. lcTaskList: (http://www.infowallet.com/lctasklist/index.htm) On Jul 21, 2012, at 4:03 AM, Chipp

Re: Old timey data entry GUI problem

2012-07-22 Thread Mike Bonner
Makes sense. Which brings you back to the main thing, if you can find someone already trained to use a 10 key (a volunteer accountant? *grin* ) their accuracy should be very high. Worst case have guidlines to help people get in a rhythm. As you say, 'smart' people tend to do their own thing

First stack tutorial

2012-07-22 Thread Dar Scott
I'm looking for a tutorial (or maybe a few) for making a hello world stack. RevMedia on Windows is preferred. Dar ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your

Re: Old timey data entry GUI problem

2012-07-22 Thread Peter Haworth
Yes, SQLite doesn't work well, if at all, over a network connection mainly due to the flakiness of file locking over a network. Sounds like you found a way round that but there are a couple of client/server third party addons for SQLite. Never tried them but Google sqlite server for info.

Re: Old timey data entry GUI problem

2012-07-22 Thread Ken Corey
On 22/07/2012 18:47, Björnke von Gierke wrote: As for proof checking as a second persons job, we'd need two or three people for every one person entering stuff. Printouts would be too slow, but because there's a networked database solution existing already, proof reading could be done on

Re: First stack tutorial

2012-07-22 Thread J. Landman Gay
On 7/22/12 1:24 PM, Dar Scott wrote: I'm looking for a tutorial (or maybe a few) for making a hello world stack. RevMedia on Windows is preferred. RR has some: http://lessons.runrev.com/s/lessons/searches?utf8=%E2%9C%93text=hello+worldcommit=Search -- Jacqueline Landman Gay |

Re: First stack tutorial

2012-07-22 Thread Chipp Walters
Type in msg: create new stack; create fld; put hello world into it; save the topstack :-p (don't you just hate a smart ass) -- Chipp Walters CEO, Altuit, Inc. ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: First stack tutorial

2012-07-22 Thread Dar Scott
Thanks! I'll try this one. I'll need to email a few details and tell people to save, but it is a good start with pictures. http://lessons.runrev.com/s/lessons/m/2571/l/23274-hello-world Dar On Jul 22, 2012, at 12:43 PM, J. Landman Gay wrote: On 7/22/12 1:24 PM, Dar Scott wrote: I'm

Re: First stack tutorial

2012-07-22 Thread Mark Wieder
Chipp- Sunday, July 22, 2012, 11:46:16 AM, you wrote: Type in msg: create new stack; create fld; put hello world into it; save the topstack :-p (don't you just hate a smart ass) Yeah. But that's quite a one-liner. -- -Mark Wieder mwie...@ahsoftware.net

Re: Preview of Resolution Independent Control library for RevMobile

2012-07-22 Thread Roger Eller
I tried a simple test, and they don't exactly play well together. tmControls are grouped objects with their own control scripts, and a nice gui editor for altering their appearance. If I select each component of the group separately, I can set their resize attributes with altResizer, but if I

Re: Any suggestions?

2012-07-22 Thread Charles Szasz
Hi Pete! Thanks for your suggestion! I just tried your script and got the error message compilation error (Chunk: bad preposition) near into , char 28 for the following line: put line tLines+1 to x into field final2 While I did paste and not your script into my group script, I did remove

Re: Why killing Media was killing an investment in the future

2012-07-22 Thread Alejandro Tejada
Richmmond wrote: Richmond Mathewson-2 wrote [snip] Certainly in Britain (and here in Bulgaria) the end result of years of pseudo-socialist thinking has resulted in a feeling that the state must provide: all parents have to do is produce children and after that provide food and bed, and

Re: Preview of Resolution Independent Control library for RevMobile

2012-07-22 Thread Scott Rossi
tmControl already has its own scaling routine.  I'll probably have to look providing a way to disable it if folks want to use Chipp's/Ken's library. Regards, Scott Rossi Creative Director Tactile Media, UX Design Original message Subject: Re: Preview of Resolution Independent

Re: Any suggestions?

2012-07-22 Thread Charles Szasz
Peter, I was away from my computer when you submitted your suggestion. I found an error in your code (nor) for nbr for the first line of code. I added the ampersand that you suggested to the following line: put counter . tName cr after theList Despite that change, I got another error

Re: Any suggestions?

2012-07-22 Thread Peter M. Brigham
\On Jul 22, 2012, at 4:42 PM, Charles Szasz wrote: Hi Pete! Thanks for your suggestion! I just tried your script and got the error message compilation error (Chunk: bad preposition) near into , char 28 for the following line: put line tLines+1 to x into field final2 While I did

Re: Preview of Resolution Independent Control library for RevMobile

2012-07-22 Thread Roger Eller
I'm only weighing my options at this point. If somehow Chipp/Ken's library could be incorporated into tmControl (optionally), once they get it through beta, it could possibly be the best of both worlds. I've only used tmControl for a little while, but what do you mean by it already has its own

Re: Any suggestions?

2012-07-22 Thread Peter M. Brigham
Peter, I was away from my computer when you submitted your suggestion. I found an error in your code (nor) for nbr for the first line of code. I added the ampersand that you suggested to the following line: put counter . tName cr after theList Despite that change, I got another

Re: Any suggestions?

2012-07-22 Thread Peter Haworth
Ah, sorrt Charles. It should be: put line tLines+1 to x of theList into field final2 Don't have your original script in front of me but I think theList was the name of variable you had. Pete lcSQL Software http://www.lcsql.com On Sun, Jul 22, 2012 at 1:42 PM, Charles Szasz csz...@mac.com

Fornt Script handler for nameChanged

2012-07-22 Thread Peter Haworth
I think what I'm doing is probably pretty uncommon but on the off chance, has anyone ever used a nameChanged handler in a front script? It seems the IDE generates a ton of these messages for it's own controls and I need to find a way to filter those out and process only the ones that result from

Re: Old timey data entry GUI problem

2012-07-22 Thread Peter W A Wood
Björnke On 23 Jul 2012, at 01:47, Björnke von Gierke wrote: As for proof checking as a second persons job, we'd need two or three people for every one person entering stuff. Printouts would be too slow, but because there's a networked database solution existing already, proof reading could

Re: Any suggestions?

2012-07-22 Thread Charles Szasz
Hi Pete, Yes, I noticed that mistake and changed it but still get an error message: execution error for the following line (Operators +:error in left operand),char 16 put line tLines+1 to x of thelist into field final in the following snippet of code. put the number of buttons of me into

Re: Any suggestions?

2012-07-22 Thread Mike Bonner
Confirm that tLines contains a number, that's the most likely cause. On Sun, Jul 22, 2012 at 4:54 PM, Charles Szasz csz...@mac.com wrote: Hi Pete, Yes, I noticed that mistake and changed it but still get an error message: execution error for the following line (Operators +:error in left

Re: Any suggestions?

2012-07-22 Thread Charles Szasz
Mike, I just checked and found tLines has no number.. Sent from my iPad ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: Any suggestions?

2012-07-22 Thread Chipp Walters
Peter and Charles, FWIW, I always use: delete last char of theList instead of put line 1 to -1 of theList into theList -- no trailing return It works with item lists, too and doesn't throw an error if theList is On Sunday, July 22, 2012, Peter M. Brigham wrote: repeat with n = 1 to nbr

Re: Preview of Resolution Independent Control library for RevMobile

2012-07-22 Thread Thomas McGrath III
Scott, The reason I use tmControls (besides ease of use) is because you have gone through all of the effort in making them Pixel Perfect which is what is needed for iOS as quasi Native Controls and look and feel of iOS native apps. The reason I would want to use Chipp and Ken's (excellent)

Re: Preview of Resolution Independent Control library for RevMobile

2012-07-22 Thread Chipp Walters
FWIW, If tmControls had a settable altHeight and an altWidth, then they should be able to work. Or if one could set their height and width from a script, the resizer library would see them as just another control. Take a peek at the lib code to see how his is done. On Sunday, July 22, 2012, Roger

Re: Preview of Resolution Independent Control library for RevMobile

2012-07-22 Thread RevList
Saturday, July 21, 2012 at 11:45 PM -0700 wrote: Hi Chipp, Cool. Way to pre-order ? Will your Interface Designer framework include a way to apply rules to multiple controls at once ? Kind regards, Pierre How can one get get/purchase Interface Designer. That looks fantastic too.

Re: Preview of Resolution Independent Control library for RevMobile

2012-07-22 Thread Monte Goulding
On 23/07/2012, at 9:29 AM, Thomas McGrath III wrote: when using Monte's mergMK mapkit which renders so much faster in non-retina then in retina which then requires me to not use iOS resolution That's the first I've heard of that. Actually you should be using UIKit points for all my controls

Re: Old timey data entry GUI problem

2012-07-22 Thread Dr. Hawkins
On Sunday, July 22, 2012, Peter Haworth wrote: Yes, SQLite doesn't work well, if at all, over a network connection mainly due to the flakiness of file locking over a network. Sounds like you found a way round that but there are a couple of client/server third party addons for SQLite. Never

For crying out loud: messages on create card.

2012-07-22 Thread Dr. Hawkins
Ivelong figured ther was a bottleneck, especially after learning about locking messages while deleting cards. But for crying out loud . . . Single stepping,and getting frustrated with the debugger. Step ore a create card, and the debugger leaps about five lines. Step into,and face both empty

Re: Any suggestions?

2012-07-22 Thread Peter M. Brigham
On Jul 22, 2012, at 7:28 PM, Chipp Walters wrote: Peter and Charles, FWIW, I always use: delete last char of theList instead of put line 1 to -1 of theList into theList -- no trailing return It works with item lists, too and doesn't throw an error if theList is Actually put line

Re: For crying out loud: messages on create card.

2012-07-22 Thread J. Landman Gay
On 7/22/12 9:05 PM, Dr. Hawkins wrote: Thwo thirds of a seconding messages to create an empty card??? How big is your stack? It's instantaneous in a new stack. -- Jacqueline Landman Gay | jac...@hyperactivesw.com HyperActive Software | http://www.hyperactivesw.com

Re: For crying out loud: messages on create card.

2012-07-22 Thread Chipp Walters
Try it in a standalone. Don't forget neither SuperCard's nor HC's IDE was written using their language. There's overhead in the IDE which doesn't exist in standalones. Use multiple break points and 'run' from one to the next (instead of step in/over) if you're having problems with the debugger.

Re: Preview of Resolution Independent Control library for RevMobile

2012-07-22 Thread Chipp Walters
I've seemed to lost the InterfaceDesigner link after the new overhaul of our sites. You can PayPal sa...@altuit.com $15 and I'll send it to you. On Sunday, July 22, 2012, RevList wrote: Saturday, July 21, 2012 at 11:45 PM -0700 wrote: Hi Chipp, Cool. Way to pre-order ? Will your Interface

Re: For crying out loud: messages on create card.

2012-07-22 Thread Dr. Hawkins
On Sunday, July 22, 2012, Chipp Walters wrote: Try it in a standalone. Don't forget neither SuperCard's nor HC's IDE was written using their language. There's overhead in the IDE which doesn't exist in standalones. this particular one had similar times in the standalone. but, as mentioned

Re: For crying out loud: messages on create card.

2012-07-22 Thread Mark Wieder
Doc- Sunday, July 22, 2012, 7:05:38 PM, you wrote: Thwo thirds of a seconding messages to create an empty card??? You're doing something wrong. On a not-particularly-fast machine I can create 100 cards in 300 milliseconds. If I lock messages *and especially if I lock screen* I can create 1000

Re: For crying out loud: messages on create card.

2012-07-22 Thread Andre Garzia
Dr Hawkins, I have stacks with about 3000 cards and I don't see any performance issue (except when I am looping all 3000 cards processing 20 fields in each of them). Are you using a background group that is too heavy? On Mon, Jul 23, 2012 at 1:58 AM, Dr. Hawkins doch...@gmail.com wrote: On