Re: [ANN] Data Grid Helper clones your DataGrids and supports the MC IDE

2011-01-26 Thread André Bisseret
Bonjour TheSlug,

Thanks a lot again for your beautiful and very useful DGH.
Data grids is a superb complement to livecode thanks to Trevor deVore.
But a bit more complex than any others objects ;-) )
The properties palette allows to set only a part of the properties and before 
DGH, I often had to script (via the message box).
Now it's rarely the case; and even for properties that are settable in the 
properties palette, I prefer the DGH' categorization: seems to me quite faster!

And of course, I love the Install scripts part of the DGH: fantastic ;-) it 
avoids long searches in the data grid doc!

Magnifique !

Best regards from Grenoble

André


Le 17 janv. 2011 à 15:45, zryip theSlug a écrit :

 Dear LiveCoder,
 
 We are pleased to announce the availability of a new version of DGH.
 
 What we have for you in the 1.2.0 version of DGH?
 
 
 1. A new feature: Mimetism.
 
 The mimetism feature allows to clone an existing datagrid by putting
 it in a cloning chamber.
 DGH clones:
 - the datagrid properties, template and behaviors.
 - the datagrid dgData.
 
 This is different than a simple copy/paste of an existing datagrid. In
 DGH, the resulting clones have their own templates and behaviors,
 instead of sharing the template and behaviors of the original
 DataGrid.
 
 
 2. lockloc an object in the DGH's TMPL area is now possible.
 
 
 3. Change:
 
 - DGH supports now the MC IDE.
 - DGH is now more reactive when switching between datagrids or
 applying column or template changes to a datagrid.
 - Icons of the TMPL area objects changes according to the system (Mac
 and Windows / Linux)
 
 
 4. Fix
 - Fix a bug with the visibility of a column in the column editor. An
 invisible column could be set to visible after an update in the TMPL
 area.
 - Fix a bug with the selection of an object in the TMPL area. An
 object was unselected after a drag.
 
 
 If you have not already tested DGH, a trial version free for 30 days
 is available here:
 http://www.aslugontheroad.co.cc/index.php?option=com_phocadownloadview=categorydownload=17:data-grid-helper-pluginid=12:trialItemid=63
 
 We have also a quick start guide downloadable here:
 http://www.aslugontheroad.co.cc/index.php?option=com_phocadownloadview=categorydownload=13:data-grid-helper-quick-start-guideid=12:trialItemid=63
 
 Thanks to William Moseid for the revision of the Quick Start Guide.
 
 
 Btw, remember that we have also free materials about datagrids
 downloadable here:
 http://www.aslugontheroad.co.cc/index.php?option=com_phocadownloadview=categoryid=7:data-gridItemid=63
 
 
 Best Regards,
 -- 
 -Zryip TheSlug- wish you the best! 8)
 http://www.aslugontheroad.co.cc
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [ANN] TimeMachine

2011-01-26 Thread Francis Nugent Dixon

Hi from Beautiful Britanny,

Richmond wrote :


I wonder what Universe means.


As Leon Lederman wrote on the cover of his great
book The God Particle . :

If the universe is the answer - What is the question ?

Kind Regards

-Francis

Nothing should ever be done for the first time !

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [ANN] TimeMachine

2011-01-26 Thread Mark Schonewille
42

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.5 for LiveCode here http://qery.us/ce

On 26 jan 2011, at 10:57, Francis Nugent Dixon wrote:

 Hi from Beautiful Britanny,
 
 As Leon Lederman wrote on the cover of his great
 book The God Particle . :
 
 If the universe is the answer - What is the question ?
 
 Kind Regards
 
 -Francis
 
 Nothing should ever be done for the first time !


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


RE: RevBrowserPrint Problems

2011-01-26 Thread Ray Horsley
Ahh!  Makes perfect sense.  Now I wonder why I was expecting anything more
in the first place.  Thanks for this explanation, Jan.  I guess this would
be an area for LiveCode to improve but I'm not sure how this would be done
since printing via revBrowser seems out of LiveCodes' hands.  The only
solution I can imagine (which I haven't tried yet) would be to toy with
printing snapshots, but I'm sure this would produce pretty poor quality of
text on the print out.  I'll more than likely just have to design an
interface which work around this somehow.

Thanks,

Ray Horsley
LinkIt! Softwae

-Original Message-
From: use-livecode-boun...@lists.runrev.com
[mailto:use-livecode-boun...@lists.runrev.com] On Behalf Of Jan Schenkel
Sent: Wednesday, January 26, 2011 12:22 AM
To: How to use LiveCode
Subject: Re: RevBrowserPrint Problems

--- On Tue, 1/25/11, Ray Horsley r...@linkit.com wrote:
 Greetings,
 
 I'm printing a stack of 10 cards.  Cards 2, 4 and 6 display a URL via 
 the revBrowser commands while the others do not.  The following script 
 does not work since each time the revBrowserPrint command is called 
 the script continues to execute without waiting for the user to 
 dismiss the print dialog which revBrowser produces (and it's seems 
 there's no way to suppress the dialog).
 
 on printStack
    repeat with C=1 to number of cards
       go cd C
       put the BrowserId of this cd into myId
       if myId is a number then
          revBrowserPrint
 myId
       else print this cd
    end repeat
 end printStack
 
 Wrapping the same kind of a script in 'open printing' and 'close 
 printing'
 also fails since revBroswerPrint seems to be oblivious to 'open 
 printing'.
 I've tried inserting an answer command to confirm printing each card.  
 This seems to work but then even this gets ahead of the 
 revBrowserPrint as the answer dialog window starts coming up on top of 
 a previously displayed print dialog produced by revBrowserPrint which 
 the user hasn't dismissed yet (and need to dismiss first or printing 
 gets out of order).
 
 Anybody with any ideas on how to work around this?
 
 Thanks,
 
 Ray Horsley
 LinkIt! Software
 

Sorry to disappoint you, Ray, but revBrowserPrint is completely separate
from LiveCode's built-in printing mechanism: it merely asks the embedded
browser control (WebKit on MacOSX, InternetExplorer on Windows) to print as
if the user had gone to the regular browser application and clicked the
'Print' button there.
This means none of the LiveCode print properties and commands have any
influence (printPaperOrientation, printRanges, printCopies and printerName
to point out the obviously interesting ones) on how the browser decides to
print - and it won't work silently either.

Jan Schenkel.
=
Quartam Reports  PDF Library for LiveCode www.quartam.com

=
As we grow older, we grow both wiser and more foolish at the same time.
(La Rochefoucauld)



  

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Live LiveCode Code Event looking for presenters

2011-01-26 Thread Mark Schonewille
Hi everyobdy,

The Live LiveCode Code Event is an informal gathering of LiveCode users. The 
organisers of the Live LiveCode Code Event (mostly Björnke, sometimes me) are 
looking for people who would like to tell something about their life as a 
LiveCoder.

If you are working on something, or have finished a programme, or if you know a 
few nice tricks, or if you just want to vent your thoughts about a 
LiveCode-related subject, or if you would like to give a tutorial, we welcome 
you to give a presentation. Everybody is completely free with regard to the 
contents of their presentation, as long it is related to Revolution/LiveCode.

The Live LiveCode Code Events are held on Saturday between 20:00 and 22:00 CET 
(19:00-21:00 GMT). Usually, we have two presentations. A presentation may last 
45 minutes, but shorter or longer is also alright. We use Ustream to broadcast 
the presentations and we will help you to set it up.

If you go to http://www.ustream.tv/ and click on Sign Up, you can make an 
account. At http://www.ustream.tv/producer you can download FREE software 
that's needed to broadcast your presentation. We use ChatRev to give feedback 
during the presentation and to chat with each other afterwards. You can 
download ChatRev at http://bjoernke.com/chatrev .

You can read more about it at http://livecode.tv . If you have any questions 
about the presentations, about the event itself, or Ustream, or if you consider 
giving a presentation, please contact me off-list.

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.5 for LiveCode here http://qery.us/ce


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Live LiveCode Coding Event #7

2011-01-26 Thread Björnke von Gierke
Whoops forgot to post the wrapup mail...

---

Hello everyone

Event nr. 7 was a blast, tho it had various problems. First Rob fell down a 
stair and therefore was unavailable due to broken bones, and then David had an 
evil technical sound problem. He also forgot to record it, but I guess he's 
glad about that fact in hindsight, as that microphone scratching sound was 
really terrible...

Me, I had lots of disconnects, because I used the wifi instead of connecting 
via ethernet cable. So there's 5 recordings (sorry about that):

1: http://www.ustream.tv/recorded/12178144
2: http://www.ustream.tv/recorded/12178212
3: http://www.ustream.tv/recorded/12178323
4: http://www.ustream.tv/recorded/12178616
5: http://www.ustream.tv/recorded/12178856

At the end of my presentation, Rick won the Take Control eBook “Take Control of 
Mac OS X Backups”. We're able to offer it because of TidBITS and eHug.

http://www.tidbits.com/
http://www.ehug.info/

On 22 Jan 2011, at 19:14, Björnke von Gierke wrote:

 Alright, just a quick reminder that we will start in about an hour. 
 
 Unfortunately, Rob had a major run in with an evil staircase, and therefore 
 had to cancel his presentation. He's already recouping, and promised to do 
 his talk some other weekend. All the best to him.
 
 
 
 On 20 Jan 2011, at 22:44, Björnke von Gierke wrote:
 
 Hello Guys
 
 We're back, and we brought Topics:
 
 First we got a newcomer. Rob will present The basics of using MySQL in a 
 LiveCode Application, which is an introduction to SQL in LC.
 http://blog.livecode.tv/rob/
 
 Bjoernke (me) will show The multiple futures of BvG Docu, and why some of 
 them never came to be. I will also talk about the current future plans 
 regarding this free add-on to LC.
 http://blog.livecode.tv/bvg/
 
 After my show there'll be a surprise announcement, which has to do with 
 charts, and of course we'll give away something again. This time, one luck 
 winner gets the Take Control eBook (courtesy of TidBITS): Take Control of 
 Mac OS X Backups. So please visit their site: 
 http://www.takecontrolbooks.com/
 
 FInally, David will take up his topic from last week, where he got slightly 
 distracted by showing automatic menu creation via script parsing. He wants 
 to show more in a similar vein, especially: Drag and Drop Style sheets for 
 LiveCode controls
 http://blog.livecode.tv/david/
 
 The show is on Saturday at these times:
 Zurich: 20:00
 Buenos Aires: 16:00
 New York:  14:00 
 San Francisco: 11:00
 Sydney: 06:00
 
 Make sure to use ChatRev during the happening, otherwise you might miss when 
 you'll need to change to the other streams:
 http://bjoernke.com?target=chatrev
 or:
 go stack URL http://bjoernke.com/chatrev/chatrev1.3b3.rev;
 
 If you want to get private, regular notification of this event, please 
 subscribe to the rss feed of the blog (about 2 updates per week):
 feed://livecode.tv/feed/
 
 Cheers
 Bjoernke
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


LC Forums Down?

2011-01-26 Thread DunbarX
Is it just me? I get an error saying there are too many connections.

Maybe this is a good thing.

Craig Newman
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LC Forums Down?

2011-01-26 Thread Björnke von Gierke
Yes

I've informed Heather, and they're already looking into what the problem could 
be (not a good thing i persume).

On 26 Jan 2011, at 16:33, dunb...@aol.com wrote:

 Is it just me? I get an error saying there are too many connections.
 
 Maybe this is a good thing.
 
 Craig Newman
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LC Forums Down?

2011-01-26 Thread Mark Schonewille
Hi Craig,

I guess it is time for RunRev to update their software :-)

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.5 for LiveCode here http://qery.us/ce

On 26 jan 2011, at 16:33, dunb...@aol.com wrote:

 Is it just me? I get an error saying there are too many connections.
 
 Maybe this is a good thing.
 
 Craig Newman



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LC Forums Down?

2011-01-26 Thread Klaus on-rev
Hi all,

Am 26.01.2011 um 16:38 schrieb Mark Schonewille:

 Hi Craig,
 
 I guess it is time for RunRev to update their software :-)

YO! 

Fingers crossed! :-)

 --
 Best regards,
 
 Mark Schonewille

Best

Klaus

--
Klaus Major
http://www.major-k.de
kl...@major.on-rev.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Answer file with type BMPf?

2011-01-26 Thread Bob Sneidar
Get info on the file and see what it's name is.

Bob


On Jan 25, 2011, at 10:41 PM, William de Smet wrote:

 Hi Jacqueline,
 
 I forget to mention that this works for all images except for .bmp files. I'm 
 on OSX 10.6 and the file is shown in Finder. Is this related to OSX?
 
 Greetings,
 
 William
 
 -
 Verstuurd vanaf mijn iPhone!
 
 Op 26 jan. 2011 om 06:14 heeft J. Landman Gay jac...@hyperactivesw.com 
 het volgende geschreven:
 
 On 1/25/11 12:19 PM, William de Smet wrote:
 Hi there,
 
 Why doesn't this work for BMP files?
 answer file Kies een foto: with type All
 Images|jpg,gif,png,bmp|JPEG,GIFf,PNGf,BMPf
 
 on mouseup
answer file Choose: with type All
 Images|jpg,gif,png,bmp|JPEG,GIFf,PNGf,BMPf
   if it = empty
   then
  put empty into img x1
exit mouseUp
   end if
   put url (binfile:  it) into img x1
 end mouseup
 
 It looks like it should work. What goes wrong?
 
 -- 
 Jacqueline Landman Gay | jac...@hyperactivesw.com
 HyperActive Software   | http://www.hyperactivesw.com
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


LC-list vs. LC-forum

2011-01-26 Thread Tiemo Hollmann TB
Hi members,

though I am using LC for some time now, I never have used the LC forums,
perhaps because the first I found was this list and it gave me all I needed
- THANKS to all!

What I am asking is, what is the right to live for both parallel? Is there
a different use for both? Different people? Different topics? Isn't it too
much effort for you all to read, check and answer permanently both, the list
and the forums? For me it is too time consuming to read both every day.
Which one is most valuable?

Would like to hear your point of view.

Tiemo

 

 

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Answer file with type BMPf?

2011-01-26 Thread J. Landman Gay

On 1/26/11 12:41 AM, William de Smet wrote:

Hi Jacqueline,

I forget to mention that this works for all images except for .bmp
files. I'm on OSX 10.6 and the file is shown in Finder. Is this
related to OSX?


I just tried it and it works for me, so I'm not sure what the problem 
could be. But it seems specific to your machine. What is in the it 
variable after you choose a .bmp file?


--
Jacqueline Landman Gay | jac...@hyperactivesw.com
HyperActive Software   | http://www.hyperactivesw.com

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LC-list vs. LC-forum

2011-01-26 Thread Richard Gaskin

Tiemo Hollmann wrote:

What I am asking is, what is the right to live for both parallel? Is there
a different use for both? Different people? Different topics? Isn't it too
much effort for you all to read, check and answer permanently both, the list
and the forums? For me it is too time consuming to read both every day.
Which one is most valuable?


For the most part, there are so many subscribers here who also frequent 
the forums that it's mostly a matter of personal preference, push vs. pull.


This list predates the forums by several years, so I find a slightly 
higher ratio of professional devs here, but the difference is really 
very slight.


--
 Richard Gaskin
 Fourth World
 LiveCode training and consulting: http://www.fourthworld.com
 Webzine for LiveCode developers: http://www.LiveCodeJournal.com
 LiveCode Journal blog: http://LiveCodejournal.com/blog.irv

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LC-list vs. LC-forum

2011-01-26 Thread DunbarX
They are both the most valuable.

Perhaps more time and thoughtfulness is spent in the forums; stack examples 
can be uploaded, and it is easier to send (and read) code snippets. The 
thread structure in the forums is more transparent and readable.

But they do basically the same thing, that is, cause passionate and very 
well meaning people to scramble to help out in any way they can.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Access to Device Music Library

2011-01-26 Thread Scott Rossi
While feature requests are flying fast and furious for iOS, I wanted to
suggest support for accessing the device's music library, just as one can
access the device's photo library.

  http://quality.runrev.com/qacenter/show_bug.cgi?id=9339

Regards,

Scott Rossi
Creative Director
Tactile Media, UX Design



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: AW: How to narrow SQL search with multiple criterias?

2011-01-26 Thread Peter Haworth
I think the problem with using LC to narrow down the results of an SQL SELECT 
is that the database may have changed since doing the initial SELECT so what 
you end up with may not reflect the current state of the database.  I guess 
that may not matter to your application, or maybe you've locked the database so 
it can't change but definitely a consideration.

I've been doing this by saving the contents of the WHERE Clause for the SELECT 
in a variable then appending the additional selection criteria to it and 
issuing a new SELECT statement with the revised WHERE clause.

Don't have an opinion on the efficiency aspects of LC vs SQL, I suspect it 
depends on a lot of factors.

Pete Haworth

On Jan 26, 2011, at 8:57 AM, Tiemo Hollmann TB wrote:

 Hi William,
 That's what I thought, to cycle through the SQL result data with LC, but was
 unsure how performing it is. I have let's say 2 records and have to
 check multiple properties with multiple values. Will the result of my cycle
 still be so fast, that the user doesn't has to wait for it, because it
 should just be a nice usability feature to disable the remaining selections
 and is not necessary for life. I was unsure, if cycling through the result
 with LC would be state of the art to realize such feature.
 Probably I have to code it and make real performance test with and without
 this feature. Perhaps the SQL Select is so much more time consuming, that my
 LC cycle isn't relevant anyway.
 Thanks
 Tiemo
 
 -Ursprüngliche Nachricht-
 Von: use-livecode-boun...@lists.runrev.com [mailto:use-livecode-
 boun...@lists.runrev.com] Im Auftrag von william humphrey
 Gesendet: Dienstag, 25. Januar 2011 17:55
 An: How to use LiveCode
 Betreff: Re: How to narrow SQL search with multiple criterias?
 
 Sometimes, SQL failure that I am, I just dump it all in a variable and
 look
 through it using LiveCode. It depends how big although LiveCode is
 pretty
 quick.
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: AW: How to narrow SQL search with multiple criterias?

2011-01-26 Thread Bob Sneidar
Also remember that Trevor's sqlYoga has the ability to create query objects, 
and then update those objects and re-run the query. The API builds the SQL for 
you, so it's very easy to do recursive queries. 

As an aside, there is a way in mySQL (and others I am sure) to output the query 
as a new temporary table, assuming you have CREATE TABLE rights to the 
database. This can be a better way to handle large datasets. 

For instance, let's say you want the detail for every invoice in the prior year 
sorted by item code, and subtotalled for each item and totaled at the end. If 
the business is a very busy and profitable one, that could be a helluvalotta 
data! (Assume you are CDW for a moment). You would never want to return that 
much data to a memory variable! 

By having the engine output to a temp table you can then run the report on 
that, and never have to worry about overwhelming Rev. 

Bob


On Jan 26, 2011, at 9:34 AM, Peter Haworth wrote:

 I think the problem with using LC to narrow down the results of an SQL SELECT 
 is that the database may have changed since doing the initial SELECT so what 
 you end up with may not reflect the current state of the database.  I guess 
 that may not matter to your application, or maybe you've locked the database 
 so it can't change but definitely a consideration.
 
 I've been doing this by saving the contents of the WHERE Clause for the 
 SELECT in a variable then appending the additional selection criteria to it 
 and issuing a new SELECT statement with the revised WHERE clause.
 
 Don't have an opinion on the efficiency aspects of LC vs SQL, I suspect it 
 depends on a lot of factors.
 
 Pete Haworth
 
 On Jan 26, 2011, at 8:57 AM, Tiemo Hollmann TB wrote:
 
 Hi William,
 That's what I thought, to cycle through the SQL result data with LC, but was
 unsure how performing it is. I have let's say 2 records and have to
 check multiple properties with multiple values. Will the result of my cycle
 still be so fast, that the user doesn't has to wait for it, because it
 should just be a nice usability feature to disable the remaining selections
 and is not necessary for life. I was unsure, if cycling through the result
 with LC would be state of the art to realize such feature.
 Probably I have to code it and make real performance test with and without
 this feature. Perhaps the SQL Select is so much more time consuming, that my
 LC cycle isn't relevant anyway.
 Thanks
 Tiemo
 
 -Ursprüngliche Nachricht-
 Von: use-livecode-boun...@lists.runrev.com [mailto:use-livecode-
 boun...@lists.runrev.com] Im Auftrag von william humphrey
 Gesendet: Dienstag, 25. Januar 2011 17:55
 An: How to use LiveCode
 Betreff: Re: How to narrow SQL search with multiple criterias?
 
 Sometimes, SQL failure that I am, I just dump it all in a variable and
 look
 through it using LiveCode. It depends how big although LiveCode is
 pretty
 quick.
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [ANN] TimeMachine

2011-01-26 Thread Calvin Waterbury
I have always understood...

UNIVERSE as...

UNI = ONE as in the sense of a single entity, but also in the sense of whole, 
 integral and complete.

VERSE = POEM or SONG.

So, literally... 

UNIVERSE = ONE SONG

Given the late, Carl Sagan... 
...spoke of everything from galaxies to dandelions as being made of star stuff
...everything and every being as part of a great cosmic conciousness 
...used musical metaphors numerous times to communicate his sense of wonder and 
awe of the universe in his COSMOS series. 

... It looks like I'm in good company.   :)

As far as the If the universe is the answer, then what is the question? issue 
is concerned... maybe we could get Alex Trebek to help us with this one?  ;)

Ciao!
Calvin

--Original Message--
From: Francis Nugent Dixon
Sender: use-livecode-boun...@lists.runrev.com
To: use-livecode@lists.runrev.com
ReplyTo: How to use LiveCode
Subject: Re: [ANN] TimeMachine
Sent: Jan 26, 2011 3:57 AM

Hi from Beautiful Britanny,

Richmond wrote :

 I wonder what Universe means.

As Leon Lederman wrote on the cover of his great
book The God Particle . :

If the universe is the answer - What is the question ?

Kind Regards

-Francis

Nothing should ever be done for the first time !

___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Sent from my Verizon Wireless BlackBerry
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: LC-list vs. LC-forum

2011-01-26 Thread Mark Wieder
Craig-

Wednesday, January 26, 2011, 9:29:36 AM, you wrote:

 They are both the most valuable.

 Perhaps more time and thoughtfulness is spent in the forums; stack examples
 can be uploaded, and it is easier to send (and read) code snippets. The
 thread structure in the forums is more transparent and readable.

 But they do basically the same thing, that is, cause passionate and very
 well meaning people to scramble to help out in any way they can.

Aw... I was gonna post one of my usual snippy frivolous responses and
then you came up with this. I yield my time to the poster from aol.

-- 
-Mark Wieder
 mwie...@ahsoftware.net


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


iOS: what's the best place to store media files

2011-01-26 Thread Chris Sheffield
What is the best place to store files like audio and images alongside an iOS 
app? I am working on a simple proof of concept app that needs to play several 
audio files back to back. I don't necessarily want these audio files to be 
backed up through iTunes, as the finished app may eventually contain hundreds 
of audio files (most likely in the form of downloadable packs of some kind), 
but they do need to be persistent between app launches.

From my understanding, it looks like the app's cache folder is the best place, 
but I just thought I'd ask to make sure. And if that's the case, what is the 
best way to test this in the simulator? Do I need to copy all the audio files 
into the simulated app's folder at /Users/[user]/Library/Application 
Support/iPhone Simulator?

Thanks,
Chris

--
Chris Sheffield
Read Naturally, Inc.
www.readnaturally.com


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: usb driver problem

2011-01-26 Thread Kee Nethery
I'd be happy to donate an Arduino to the LC bug team if they need one to fix 
this.
Kee Nethery



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Live LiveCode Code Event looking for presenters

2011-01-26 Thread Calvin Waterbury

Howdy from Texas, Y'all!

I would like to do my part in good time, but I am still learning; 
however, if somebody out there does work on Macs and Microsoft, I would 
really like to see an unbiased, or at least a fair comparison between 
strengths/weaknesses of these two titans of the personal O/S.  Sort of 
down the lines of, Macs really are much better at stringing foobars, 
but Windows wins out when it comes to gizwort constructs and Did you 
know Windows can do this...,but on a Mac you have to use this work around.


I have been a Microsoft user since DOS (1984), but have been quite 
intrigued by what I have garnered from the Mac discussions on the mail list.


Any takers?

Calvin

PS - I realize Lnx is out there too!  :)




Mark Schonewille mailto:m.schonewi...@economy-x-talk.com
Wednesday, January 26, 2011 2:21 PM


Anyone wanting to share his or her thoughts with the LiveCode 
community this Saturday?


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.5 for LiveCode here 
http://qery.us/ce




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode


Mark Schonewille mailto:m.schonewi...@economy-x-talk.com
Wednesday, January 26, 2011 8:54 AM


Hi everyobdy,

The Live LiveCode Code Event is an informal gathering of LiveCode 
users. The organisers of the Live LiveCode Code Event (mostly Björnke, 
sometimes me) are looking for people who would like to tell something 
about their life as a LiveCoder.


If you are working on something, or have finished a programme, or if 
you know a few nice tricks, or if you just want to vent your thoughts 
about a LiveCode-related subject, or if you would like to give a 
tutorial, we welcome you to give a presentation. Everybody is 
completely free with regard to the contents of their presentation, as 
long it is related to Revolution/LiveCode.


The Live LiveCode Code Events are held on Saturday between 20:00 and 
22:00 CET (19:00-21:00 GMT). Usually, we have two presentations. A 
presentation may last 45 minutes, but shorter or longer is also 
alright. We use Ustream to broadcast the presentations and we will 
help you to set it up.


If you go to http://www.ustream.tv/ and click on Sign Up, you can make 
an account. At http://www.ustream.tv/producer you can download FREE 
software that's needed to broadcast your presentation. We use ChatRev 
to give feedback during the presentation and to chat with each other 
afterwards. You can download ChatRev at http://bjoernke.com/chatrev .


You can read more about it at http://livecode.tv . If you have any 
questions about the presentations, about the event itself, or Ustream, 
or if you consider giving a presentation, please contact me off-list.


--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.5 for LiveCode here 
http://qery.us/ce



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: Live LiveCode Code Event looking for presenters

2011-01-26 Thread Richmond

On 01/26/2011 10:33 PM, Calvin Waterbury wrote:

Howdy from Texas, Y'all!

I would like to do my part in good time, but I am still learning; 
however, if somebody out there does work on Macs and Microsoft, I 
would really like to see an unbiased, or at least a fair comparison 
between strengths/weaknesses of these two titans of the personal O/S.  
Sort of down the lines of, Macs really are much better at stringing 
foobars, but Windows wins out when it comes to gizwort constructs and 
Did you know Windows can do this...,but on a Mac you have to use this 
work around.


I have been a Microsoft user since DOS (1984), but have been quite 
intrigued by what I have garnered from the Mac discussions on the mail 
list.


Any takers?

Calvin

PS - I realize Lnx is out there too!  :)


First off: it seems well-nigh impossible to get a balanced comparison 
from anyone.


Second off: Linux is not out there like some wild coyote lurking on 
the fringes; it

  is already mainstream.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [ANN] TimeMachine

2011-01-26 Thread Thomas McGrath III
42 Definitely. That is the real question.

-- Tom McGrath III
http://lazyriver.on-rev.com
3mcgr...@comcast.net

On Jan 26, 2011, at 5:48 AM, Mark Schonewille wrote:

 42
 
 --
 Best regards,
 
 Mark Schonewille
 
 Economy-x-Talk Consulting and Software Engineering
 Homepage: http://economy-x-talk.com
 Twitter: http://twitter.com/xtalkprogrammer
 KvK: 50277553
 
 New: Download the Installer Maker Plugin 1.5 for LiveCode here 
 http://qery.us/ce
 
 On 26 jan 2011, at 10:57, Francis Nugent Dixon wrote:
 
 Hi from Beautiful Britanny,
 
 As Leon Lederman wrote on the cover of his great
 book The God Particle . :
 
 If the universe is the answer - What is the question ?
 
 Kind Regards
 
 -Francis
 
 Nothing should ever be done for the first time !
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: usb driver problem

2011-01-26 Thread Thomas McGrath III
Ok, so Heather said that this would not be possible as a quick fix type support 
ticket but that the team was looking into it and that I should open a bug 
report so here it is:

Report 9341 has been added to the database  
http://quality.runrev.com/qacenter/show_bug.cgi?id=9341

@Claudi - please add your crash report to this.

Let's see what comes out of this.


-- Tom McGrath III
http://lazyriver.on-rev.com
3mcgr...@comcast.net

On Jan 26, 2011, at 3:02 PM, Kee Nethery wrote:

 I'd be happy to donate an Arduino to the LC bug team if they need one to fix 
 this.
 Kee Nethery
 
 
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [ANN] TimeMachine

2011-01-26 Thread Calvin Waterbury

Ahem...  42 was the *answer* not the question.




Thomas McGrath III mailto:mcgra...@mac.com
Wednesday, January 26, 2011 3:31 PM


42 Definitely. That is the real question.

-- Tom McGrath III
http://lazyriver.on-rev.com
3mcgr...@comcast.net



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode


Mark Schonewille mailto:m.schonewi...@economy-x-talk.com
Wednesday, January 26, 2011 4:48 AM


42

--
Best regards,

Mark Schonewille

Economy-x-Talk Consulting and Software Engineering
Homepage: http://economy-x-talk.com
Twitter: http://twitter.com/xtalkprogrammer
KvK: 50277553

New: Download the Installer Maker Plugin 1.5 for LiveCode here 
http://qery.us/ce




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: [ANN] TimeMachine

2011-01-26 Thread Calvin Waterbury
Hmmm... given dreams are not confined neither by time nor space, perhaps 
Mr. Adams saw your dream and put it down on paper?  :)





Bob Sneidar mailto:b...@twft.com
Wednesday, January 26, 2011 4:22 PM


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




___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your 
subscription preferences:

http://lists.runrev.com/mailman/listinfo/use-livecode


Calvin Waterbury mailto:c...@eml.cc
Wednesday, January 26, 2011 3:47 PM


Ahem...  42 was the *answer* not the question.



___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: $PATH

2011-01-26 Thread François Chaplais
from what I understand, the shell command creates a new shell session which not 
that of the terminal. As a result, you may have to rebuild $path correctly. 
Here is what I do to put the TeX executables in the shell's path:


on checkTeXPATH -- for MacTeX
   put $PATH into theShellPATH
   if /usr/local/bin: is not in theShellPATH then -- for Ghostcript
  put /usr/local/bin:  $PATH into $PATH
   end if
   if /usr/texbin: is not in theShellPATH then -- for pdftex etc..
  put /usr/texbin:  $PATH into $PATH
   end if
end checkTeXPATH



--
HTH
François

Le 26 janv. 2011 à 10:09, David Bovill a écrit :

 Yes - but does it return the same $PATH even after you have customised your
 personal user $PATH with entries in .profile or one of the many other files
 that you can customise yourself, or that installers of command line tools
 often cutomise for you (for instance MacPorts).
 
 Even in MC days on Linux, I found that my own personal shell value of $PATH
 was not the same as the MC result that gets returned with $PATH. I doubt
 this is any different on Fedora Core?
 
 For instance on my OSX system: I can use shell commands because my $PATH in
 the default bash shell is:
 
 /opt/local/bin:/opt/local/sbin:/opt/local/bin:/opt/local/sbin:/usr/bin:/bin:/usr/sbin:/sbin:/usr/local/bin:/usr/X11/bin
 
 
 In LiveCode $PATH (and therefore which command line tools are found) is
 simply:
 
 /usr/bin:/bin:/usr/sbin:/sbin:/opt/local/bin
 
 This is because my .profile settings are:
 
 # MacPorts Installer addition on 2009-05-28_at_01:12:13: adding an
 appropriate PATH variable for use with MacPorts.
 export PATH=/opt/local/bin:/opt/local/sbin:$PATH
 # Finished adapting your PATH environment variable for use with MacPorts.
 
 
 # MacPorts Installer addition on 2009-05-28_at_01:12:13: adding an
 appropriate MANPATH variable for use with MacPorts.
 export MANPATH=/opt/local/share/man:$MANPATH
 # Finished adapting your MANPATH environment variable for use with
 MacPorts.
 
 
 ##
 # Your previous /Users/david/.profile file was backed up as
 /Users/david/.profile.macports-saved_2009-08-28_at_23:30:02
 ##
 
 # MacPorts Installer addition on 2009-08-28_at_23:30:02: adding an
 appropriate PATH variable for use with MacPorts.
 export PATH=/opt/local/bin:/opt/local/sbin:$PATH
 # Finished adapting your PATH environment variable for use with MacPorts.
 
 
 Somewhere around I have code that would read and write to these files in
 order to keep the shell environments in LiveCode and the terminal in sync -
 and I need to get this right for the tools I'm working on for LiveCode TV
 shared code libraries, as they interface with various command line tools.
 Need to get to the bottom of these issues cross platform.
 
 On 26 January 2011 01:14, Mark Wieder mwie...@ahsoftware.net wrote:
 
 
 AFAIK - the way $PATH works (at least on OSX / Linux) is not the same as
 you
 get when you open your terminal... essentially because it is not using
 your
 .profile or equivalent settings when the shell is initiated. I am not
 sure
 where it gets it's initial setting?
 
 $PATH returns my path on Fedora Core. So does
 
 put shell($PATH)
 
 ___
 use-livecode mailing list
 use-livecode@lists.runrev.com
 Please visit this url to subscribe, unsubscribe and manage your subscription 
 preferences:
 http://lists.runrev.com/mailman/listinfo/use-livecode


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: usb driver problem

2011-01-26 Thread Mark Wieder
Claudi-

Wednesday, January 26, 2011, 2:48:22 AM, you wrote:

 Thread 0 Crashed:
 0   libSystem.B.dylib   0x91ddde42 __kill + 10
 1   libSystem.B.dylib   0x91e5023a raise + 26
 2   libSystem.B.dylib   0x91e5c622 __abort + 97
 3   libSystem.B.dylib   0x91e5c68a _cproc_fork_child + 0
 4   libstdc++.6.dylib   0x92049005 0x92001000 + 294917
 5   libstdc++.6.dylib   0x9204710c __gxx_personality_v0 + 1108
 6   libstdc++.6.dylib   0x9204714b std::terminate() + 29
 7   libstdc++.6.dylib   0x92047261 __cxa_throw + 101
 8   libstdc++.6.dylib   0x920475d8 operator new(unsigned 
 long) + 100
 9   libstdc++.6.dylib   0x92047689 operator new[](unsigned 
 long) + 17
 10  com.runrev.livecode 0x000a3048
 MCExecPoint::getbuffer(unsigned int) + 56
 11  com.runrev.livecode 0x00141134
 IO_read_to_eof(IO_header*, MCExecPoint) + 52
 12  com.runrev.livecode 0x0006d3bb
 MCRead::exec(MCExecPoint) + 2555
 13  com.runrev.livecode 0x00103a64
 MCHandler::doscript(MCExecPoint, unsigned short, unsigned short) +

Well, from a quick look at things, I'd say you started a script that
did a repeat until EOF and LC crashed trying to allocate memory
space for the read. That is Not a Good Thing.

-- 
-Mark Wieder
 mwie...@ahsoftware.net


___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode


Re: iOS: what's the best place to store media files

2011-01-26 Thread Ludovic Thébault

Le 26 janv. 2011 à 20:35, Chris Sheffield a écrit :

 
 What is the best place to store files like audio and images alongside an iOS 
 app? I am working on a simple proof of concept app that needs to play several 
 audio files back to back. I don't necessarily want these audio files to be 
 backed up through iTunes, as the finished app may eventually contain hundreds 
 of audio files (most likely in the form of downloadable packs of some kind), 
 but they do need to be persistent between app launches.
 
 From my understanding, it looks like the app's cache folder is the best 
 place, but I just thought I'd ask to make sure. And if that's the case, what 
 is the best way to test this in the simulator? Do I need to copy all the 
 audio files into the simulated app's folder at 
 /Users/[user]/Library/Application Support/iPhone Simulator?


Hello,

You can use the Copy files function of the standalone builder to put your 
files into the app.
___
use-livecode mailing list
use-livecode@lists.runrev.com
Please visit this url to subscribe, unsubscribe and manage your subscription 
preferences:
http://lists.runrev.com/mailman/listinfo/use-livecode