Re: Live LiveCode Code Event #6

2011-01-16 Thread Björnke von Gierke
It was yet again a lot of fun. Mark showed that cut/copy/paste is not very hard, if you stick to the basics: http://www.ustream.tv/recorded/12034326 see also his example materials: http://blog.livecode.tv/wp-content/uploads/2011/01/edit_menu.zip David showed off his automatic script-to-object

Re: Live LiveCode Code Event #6

2011-01-16 Thread Björnke von Gierke
There's no single site, but you can go to the forum, and there's links to all the recordings there. I've added a category to all posts that contain links to recordings: http://blog.livecode.tv/category/archived_streams/ Note that due to horrible gui choices on ustreams client, often people

Re: problem importing tab delimited text files

2011-01-16 Thread Ian McKnight
Thanks Richard I just included your handler in my test stack and it returned can't open file(32) - very useful indeed. I didn't think about sysError being used in that way - message to self - must spend more time reading the dictionary! :) On 15 January 2011 23:37, Richard Gaskin

Re: List of objects in a group ?

2011-01-16 Thread Mark Schonewille
Francis, http://runrev.info/Objects%20list.htm -- 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

Re: Groups - Lock Size and Position

2011-01-16 Thread Jan Schenkel
--- On Sat, 1/15/11, Warren Kuhl warrenk...@gmail.com wrote: I have some groups within a Tab Menu.  I am trying to make the tab menu and groups scalable based on the size of the stack.  When I test this, it keeps setting on the lock size and position on for the groups.  What would cause

Re: Printing and RevBrowser

2011-01-16 Thread Jan Schenkel
--- On Fri, 1/14/11, Ray Horsley r...@linkit.com wrote: Greetings, Anybody know how to work this with 'open printing' or even better, with with 'open printing to PDF'?  My main goal is to suppress the print dialog window for each call in a repeat loop to revBrowserPrint. Thanks, Ray

Datagrams: or how to avoid tRev(or)

2011-01-16 Thread David Bovill
I would like to implement as robust as possible localhost (possibly later lan based) socket communication protocol between LiveCode based apps. While I've done a number of experiments, any can get teh 2 way comms going no problem - I'd like to do things in a way in which possible clashes with

Re: Creative Common Copyright Notice in Standalones

2011-01-16 Thread David Bovill
On 16 January 2011 13:29, Jan Schenkel janschen...@yahoo.com wrote: It does look like we have have little choice if we want strong protection. Like you, I'm leaning towards the xGPL licenses, combined with a closed commercial license. What worries me about it, is its viral nature in

Re: Datagrams: or how to avoid tRev(or)

2011-01-16 Thread Jan Schenkel
--- On Sun, 1/16/11, David Bovill da...@vaudevillecourt.tv wrote: I would like to implement as robust as possible localhost (possibly later lan based) socket communication protocol between LiveCode based apps. While I've done a number of experiments, any can get teh 2 way comms going no

Re: Creative Common Copyright Notice in Standalones

2011-01-16 Thread Jan Schenkel
--- On Sun, 1/16/11, David Bovill da...@vaudevillecourt.tv wrote: On 16 January 2011 13:29, Jan Schenkel janschen...@yahoo.com wrote: It does look like we have have little choice if we want strong protection. Like you, I'm leaning towards the xGPL licenses, combined with a closed

Shell from a folder

2011-01-16 Thread David Bovill
I'm wandering if there is any relationship between the defaultfolder and where the shell function effectively operates from? I thought there was but it seems not... to get the same result as I would get from the command line I have to: shell_BashParamEscape pExecuteWhere *put* cd

Re: Datagrams: or how to avoid tRev(or)

2011-01-16 Thread David Bovill
On 16 January 2011 15:51, Jan Schenkel janschen...@yahoo.com wrote: For a Java project at work, I've been using JmDNS to enable service discovery over a LAN: http://jmdns.sourceforge.net/ Since it's pure Java it works on MacOSX, Windows and Linux. Through process communication, you could

Re: Import Snapshot Broken in 4.5.3?

2011-01-16 Thread Peter Brigham MD
Thanks. As usual, I discovered this for myself in the dictionary about 4 minutes after I hit the send button. Another way that this list is useful for learning -- all I need to do is post a question and then I find that I already have the answer! Apparently I inadvertently installed an

Re: Creative Common Copyright Notice in Standalones

2011-01-16 Thread David Bovill
On 16 January 2011 15:56, Jan Schenkel janschen...@yahoo.com wrote: Heh, I'm also curious about these things and want to make sure I take the right decision - and the only way to find out is by asking questions :-) So, assuming the Engine and Externals are OK, should we ask RunRev HQ for an

Re: Shell from a folder

2011-01-16 Thread Björnke von Gierke
answer folder set the defaultfolder to it put shell(ls) The result changes depending on what folder i specify. so it works fine for me. Therefore I assume a scripting error on your part :P On 16 Jan 2011, at 17:06, David Bovill wrote: I'm wandering if there is any relationship between the

Re: Shell from a folder

2011-01-16 Thread David Bovill
Yes - my mistake (there was a bug in my code) - the defaultfolder does indeed change the effective place the shell command is called from. 2011/1/16 Björnke von Gierke b...@mac.com answer folder set the defaultfolder to it put shell(ls) The result changes depending on what folder i

Re: List of objects in a group ?

2011-01-16 Thread Francis Nugent Dixon
Hi from Beautiful Britanny, Thanks Mark, Thanks Klaus. .. Always something new to learn with you guys ! -Francis Nothing should ever be done for the first time ! ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to

Re: Datagrams: or how to avoid tRev(or)

2011-01-16 Thread Mark Wieder
David- Sunday, January 16, 2011, 7:14:51 AM, you wrote: I would like to implement as robust as possible localhost (possibly later lan based) socket communication protocol between LiveCode based apps. While I've done a number of experiments, any can get teh 2 way comms going no problem - I'd

Re: Groups - Lock Size and Position

2011-01-16 Thread Warren Kuhl
Jan, Thanks for the explanation. I am using the revGeometry Manager. I had this working at some point to resize my objects when my stack was resized. Now it doesn't seem to be working. I thought it had something to do with the groups locking the size...but obviously there seems to be another

Re: Datagrams: or how to avoid tRev(or)

2011-01-16 Thread Jan Schenkel
--- On Sun, 1/16/11, David Bovill da...@vaudevillecourt.tv wrote: On 16 January 2011 15:51, Jan Schenkel janschen...@yahoo.com wrote: For a Java project at work, I've been using JmDNS to enable service discovery over a LAN: http://jmdns.sourceforge.net/ Since it's pure Java it works

Re: Groups - Lock Size and Position

2011-01-16 Thread Warren Kuhl
I just found a script online that takes care of everything I was trying to do with revGeometry Manager... http://www.troz.net/rev/stacks/GeomScript.rev Kudos to the person that wrote this script (and published www.troz.net). For someone with my limited RunRev ability, this script took me 5

Copying Objects from one card to another

2011-01-16 Thread Peter Haworth
I'm trying to copy a number of objects from one card to another by selecting them all on the source card, copy, then paste them onto the destination card. On the destination card, they all end up stacked up on top of each other instead of in the same positions as on the source card. The

Re: Datagrams: or how to avoid tRev(or)

2011-01-16 Thread Mark Wieder
Jan- Sunday, January 16, 2011, 11:28:49 AM, you wrote: Well, I figured I had better do it right away, so here it is: http://quartam.blogspot.com/2011/01/zeroconfbonjour-in-livecode-with-jmdns.html Awesome! Thanks. Bookmarked... -- -Mark Wieder mwie...@ahsoftware.net

Re: Copying Objects from one card to another

2011-01-16 Thread Mike Bonner
The objects are placed into the clipboard without location data is my guess. so when you paste them back in, they just get dumped onto the new card. Could try, grouping them, then using place to place them on the new card, then if needed, ungroup from the first card. On Sun, Jan 16, 2011 at

umask

2011-01-16 Thread David Bovill
Does anyone know if the umask works on OSX / anymore - I used it years ago on Linux, but no idea if it works on OSX (dictionary say it dos not). *set* the umask to 555 *put* the tempname .sh into shellFile *put* someShell into url (file: shellFile) *set* the umask to 0 I

Re: usb driver problem

2011-01-16 Thread Sarah Reichelt
On Sun, Jan 16, 2011 at 2:18 AM, Thomas McGrath III mcgra...@mac.com wrote: I am having trouble accessing an Arduino Uno attached to my computer via USB. The device driver shows up as /dev/tty.usbmodem1a21 I tried a simple open driver then read from driver then close driver. But Livecode

Re: Groups - Lock Size and Position

2011-01-16 Thread Warren Kuhl
Sarah, I didn't realize this was your site/script. But you have no idea how much time you saved me with this. Thanks again...much appreciated! Warren On Sun, Jan 16, 2011 at 5:00 PM, Sarah Reichelt sarah.reich...@gmail.comwrote: You're welcome :-) Sarah On Mon, Jan 17, 2011 at 5:37 AM,

Re: usb driver problem

2011-01-16 Thread Thomas McGrath III
The dev/tty.usbmodem1a21 does not show up in the list using the SerialTest.rev stack. It does show up in the Arduino software Serial list. Also in the Arduino you have to use the tty.usbmodem1a21. Also when you plug the Arduino in the Mac detects a new modem and asks to set it up in Internet

ssh on-rev.com

2011-01-16 Thread Thomas McGrath III
Anyone know if ssh with on-rev.com works from the terminal? I keep getting rejected and I don't know if that's because I am using the wrong sign in or that on-rev does not allow this. PS This is for using Processing PDE (processing.org) A graphical interface that works along side of Arduino

Re: usb driver problem

2011-01-16 Thread Kee Nethery
would love to talk to Arduino via Livecode. Too bad it does not work. Kee Nethery ___ use-livecode mailing list use-livecode@lists.runrev.com Please visit this url to subscribe, unsubscribe and manage your subscription preferences:

Re: usb driver problem

2011-01-16 Thread Sarah Reichelt
Are there drivers? For KeySpan and other USB serial adapters, you have to install the drivers before they will work properly. Cheers, Sarah On Mon, Jan 17, 2011 at 2:37 PM, Thomas McGrath III mcgra...@mac.com wrote: The dev/tty.usbmodem1a21 does not show up in the list using the

Using Shell to run a DOS program

2011-01-16 Thread Alejandro Tejada
Hi all, I have been trying, without sucess, to run the program CRC32.EXE using Shell from LiveCode. This is the code that I am using: put C:\crc32.exe CRC32INPUT CRC32OUTPUT.txt into tCommand set the hideconsolewindows to true get shell (tCommand) get URL file:C:\CRC32OUTPUT.txt put it Notice

Re: umask

2011-01-16 Thread Thierry
Le 16 janv. 2011 à 23:00, David Bovill a écrit : Does anyone know if the umask works on OSX / anymore - I used it years ago on Linux, but no idea if it works on OSX (dictionary say it dos not). Well, better try all these commands in a terminal and you'll know quickly : in a terminal do :