Live LiveCode Code Event #17 - wrap-up

2011-04-05 Thread Mark Schonewille
Dear LiveCoders, Last Saturday, 2 April, we had another nice on-line gathering of LiveCode fans. This time we had 2 interesting presentations, both of which you can watch again, if you missed the event. Claudi explored the interaction/integration with the Arduino micro controller. His project

Re: Customized Datagrid TAB order

2011-04-05 Thread Pete
OK, that's really interesting and useful and would have saved me a lot of work if I'd known about them. Where are these documented? I can't find them in the online datagrid documentation. I wonder how many other useful functions are there that aren't documented. Pete Molly's Revenge

Re: Customized Datagrid TAB order

2011-04-05 Thread zryip theSlug
On Tue, Apr 5, 2011 at 9:00 PM, Malte Brill wrote: > I have a datagrid that is highly customized ( no field editor, but editable > fields in it. Data entry messes with XML and stuff). Now this all is working > just fine, but I need to implement Tabbing from one column to the next on the > same

Re: Customized Datagrid TAB order

2011-04-05 Thread Pete
The best I can think of is that the datagrid has a property named columns which returns a list of column names, one per line, in the order they appear. The dgColumn property gives you the name of the current column so you can locate that in the columns property and move to the next/prev column in

Re: script debug problem

2011-04-05 Thread J. Landman Gay
On 4/5/11 3:51 PM, edward cawley wrote: Under the development menu, should be able to click 'script debug mode' to turn it on and off. That's my problem-I click on it and it doesn't turn off or on! Have you restarted LiveCode? -- Jacqueline Landman Gay | jac...@hyperactivesw.com

Re: script debug problem

2011-04-05 Thread edward cawley
> -- > > Message: 15 > Date: Mon, 4 Apr 2011 13:15:26 -0600 > From: Mike Bonner > To: How to use LiveCode > Subject: Re: script debug problem > Message-ID: > Content-Type: text/plain; charset=ISO-8859-1 > > Under the development menu, should be able to click 'script deb

Re: Tab key

2011-04-05 Thread Yves COPPE
Le 5 avr. 2011 à 20:36, J. Landman Gay a écrit : > On 4/5/11 5:32 AM, Yves COPPE wrote: >> Hello, >> >> I have a fld (simple table of 2 columns with 2 tabstops values) >> >> the tabkey to go to the next cell doesn't work anymore >> >> I've made no changes in the fld, but since the upgrade of L

Re: Is there any route to importing a PDF image into LiveCode?

2011-04-05 Thread Graham Samuel
Thanks Matthias Looks as if ImageMagick will do the job provided I can fully integrate it into my product without the user needing to do an additional installation etc. I am not good with command line interfaces (although I grew up with them, but that's another story). I am now investigating.

Customized Datagrid TAB order

2011-04-05 Thread Malte Brill
Hi all, I have a datagrid that is highly customized ( no field editor, but editable fields in it. Data entry messes with XML and stuff). Now this all is working just fine, but I need to implement Tabbing from one column to the next on the same row. however, If I do not script anything, the TAB

Re: Tab key

2011-04-05 Thread J. Landman Gay
On 4/5/11 5:32 AM, Yves COPPE wrote: Hello, I have a fld (simple table of 2 columns with 2 tabstops values) the tabkey to go to the next cell doesn't work anymore I've made no changes in the fld, but since the upgrade of LC, it doesn't work Hugh is right, there was a problem with the t

Re: Is there any route to importing a PDF image into LiveCode?

2011-04-05 Thread Richmond
GIMP will do this for you. On 04/05/2011 09:38 AM, Matthias Rebbe wrote: Graham, you could use ImageMagick. http://www.imagemagick.org It is a software suite to create, edit, compose, or convert bitmap images. But you need only the command-line tool convert. You could try the following comm

Re: usage of dropfolder

2011-04-05 Thread Robert Brenstein
On 05.04.11 at 08:49 -0400 Thomas McGrath III apparently wrote: Ton, How time sensitive is this? Immediately? Can you set a flag upon first notice of the folder activity and then wait an indeterminate period of time to perform your LC action? Ton, I wonder whether Finder sets file informa

RE: Tab key

2011-04-05 Thread FlexibleLearning
Hi Yves, I think this was a problem on Mac OS X with the first release of 4.6, quickly remedied by an update to 4.6.1. I think. Hugh Senior FLCo Hello, I have a fld (simple table of 2 columns with 2 tabstops values) the tabkey to go to the next cell doesn't work anymore I've made no change

Re: usage of dropfolder

2011-04-05 Thread Thomas McGrath III
Ton, How time sensitive is this? Immediately? Can you set a flag upon first notice of the folder activity and then wait an indeterminate period of time to perform your LC action? -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Apr 5, 2011, at 8:41 AM, tkuyp...@telenet.b

Re: usage of dropfolder

2011-04-05 Thread tkuyp...@telenet.be
There will be a folder published on the network. Any user from any system in the network is able to drop files into that folder. The Mac running the app must be able to drop files in that folder as well. When files are dropped, they will be copied to the source of that published folder, so there

Re: usage of dropfolder

2011-04-05 Thread Jim Sims
On Apr 5, 2011, at 2:21 PM, tkuyp...@telenet.be wrote: > Can't do that, everything needs to be setup and controlled by the LiveCode > app. > A folder actions would require a regular user to setup this, and you know how > clever users are ;-) If OS X you are talking about, can you write an Appl

Re: usage of dropfolder

2011-04-05 Thread tkuyp...@telenet.be
Hi Tom, Can't do that, everything needs to be setup and controlled by the LiveCode app. A folder actions would require a regular user to setup this, and you know how clever users are ;-) Ton On 5-apr-2011, at 14:14, Thomas McGrath III wrote: > Have you tried using a folder action to let you

Re: usage of dropfolder

2011-04-05 Thread Thomas McGrath III
Have you tried using a folder action to let you know when something is added to the folder? -- Tom McGrath III http://lazyriver.on-rev.com 3mcgr...@comcast.net On Apr 5, 2011, at 7:36 AM, tkuyp...@telenet.be wrote: > Hi gang, > > I'm stuck, after about 4 hours I have to admit I'm not clever en

usage of dropfolder

2011-04-05 Thread tkuyp...@telenet.be
Hi gang, I'm stuck, after about 4 hours I have to admit I'm not clever enough for this... I'm trying to implement a drop-folder based application. When a file is found in the folder, I need to open it and check for some data inside the file. The actual code to check inside the file takes about

Tab key

2011-04-05 Thread Yves COPPE
Hello, I have a fld (simple table of 2 columns with 2 tabstops values) the tabkey to go to the next cell doesn't work anymore I've made no changes in the fld, but since the upgrade of LC, it doesn't work Can you help me ? Greetings. Yves COPPE yvesco...@skynet.be

Re: datagrid: how to apply a numberFormat to a column?

2011-04-05 Thread JosepM
Yes. If I add a new row the numberFormat is applied but not if I load from the database. Salut, Josep -- View this message in context: http://runtime-revolution.278305.n4.nabble.com/datagrid-how-to-apply-a-numberFormat-to-a-column-tp3425298p3427533.html Sent from the Revolution - User mailing li

[ANN] ChartMaker Update Release

2011-04-05 Thread FlexibleLearning
If you downloaded a copy of the recent ChartMaker 2.1 update, please check for and download a correction issued today by clicking 'Check for updates...' in the software. It remedies problems when cell editing in the Utility Wizard. This is obviously a free update for licence holders and we apologiz

AW: OT: Elevated admin rights or admin on Mac

2011-04-05 Thread Tiemo Hollmann TB
Thank you Mark and Bob for coaching on unix Tiemo > -Ursprüngliche Nachricht- > Von: use-livecode-boun...@lists.runrev.com [mailto:use-livecode- > boun...@lists.runrev.com] Im Auftrag von Mark Schonewille > Gesendet: Montag, 4. April 2011 13:18 > An: How to use LiveCode > Betreff: Re: OT: