Re: umask

2011-01-24 Thread Peter Brigham MD
On Jan 24, 2011, at 2:23 PM, J. Landman Gay wrote: On 1/21/11 1:00 PM, J. Landman Gay wrote: On 1/21/11 12:47 PM, Peter Brigham MD wrote: I just double-checked: created a new mainstack, put a new field in it, put some text into it, and put this in the field script: on selectionchanged be

Re: umask

2011-01-24 Thread J. Landman Gay
On 1/21/11 1:00 PM, J. Landman Gay wrote: On 1/21/11 12:47 PM, Peter Brigham MD wrote: I just double-checked: created a new mainstack, put a new field in it, put some text into it, and put this in the field script: on selectionchanged beep end selectionchanged and when I click anywhere in th

Re: umask

2011-01-21 Thread J. Landman Gay
On 1/21/11 12:47 PM, Peter Brigham MD wrote: On Jan 20, 2011, at 2:12 PM, J. Landman Gay wrote: On 1/20/11 10:21 AM, Peter Brigham MD wrote: On Jan 17, 2011, at 9:29 AM, Björnke von Gierke wrote: For example the entry about the selectionChanged message claims that it's not triggered by arrow

Re: umask

2011-01-21 Thread Peter Brigham MD
On Jan 20, 2011, at 2:12 PM, J. Landman Gay wrote: On 1/20/11 10:21 AM, Peter Brigham MD wrote: On Jan 17, 2011, at 9:29 AM, Björnke von Gierke wrote: For example the entry about the selectionChanged message claims that it's not triggered by arrow keys, but it is. Not on my machine -- MacBo

Re: umask

2011-01-20 Thread J. Landman Gay
On 1/20/11 10:21 AM, Peter Brigham MD wrote: On Jan 17, 2011, at 9:29 AM, Björnke von Gierke wrote: For example the entry about the selectionChanged message claims that it's not triggered by arrow keys, but it is. Not on my machine -- MacBook, OSX 10.5.8, Rev Studio 4.0.0-gm-1, build 950. Arr

Re: umask

2011-01-20 Thread Peter Brigham MD
On Jan 17, 2011, at 9:29 AM, Björnke von Gierke wrote: For example the entry about the selectionChanged message claims that it's not triggered by arrow keys, but it is. Not on my machine -- MacBook, OSX 10.5.8, Rev Studio 4.0.0-gm-1, build 950. Arrowkeys don't trigger selectionChanged. Mayb

Re: umask

2011-01-17 Thread Anthony Howe
Yea, just discovered that one last night. A welcome, undocumented feature this time! On 18/01/2011, at 1:29 AM, Björnke von Gierke wrote: > > On 17 Jan 2011, at 15:19, Thierry wrote: > >> So, looking quickly in LC dict, I found this : >> >> On Mac OS and

Re: umask

2011-01-17 Thread Thierry
Le 17 janv. 2011 à 15:47, David Bovill a écrit : > Thanks for sorting this out guys - Thierry does uMask still work on Linux in > LiveCode? saying before that I didn't know this command, Can't help you :( But if you want a multi-platform solution, I guess you have to do

Re: umask

2011-01-17 Thread David Bovill
Thanks for sorting this out guys - Thierry does uMask still work on Linux in LiveCode? 2011/1/17 Björnke von Gierke > > On 17 Jan 2011, at 15:19, Thierry wrote: > > > So, looking quickly in LC dict, I found this : > > > > On Mac OS and Windows systems, the umask

Re: umask

2011-01-17 Thread Björnke von Gierke
On 17 Jan 2011, at 15:19, Thierry wrote: > So, looking quickly in LC dict, I found this : > > On Mac OS and Windows systems, the umask property has no effect and always > reports zero. > > Even quicker than trying it in the terminal ! I don't trust the dictionary i

Re: umask

2011-01-17 Thread Thierry
Le 17 janv. 2011 à 14:47, Björnke von Gierke a écrit : > Note that he meant the umask within LC, > not the terminal command. he he, didn't know that umask exists in LC :) > on mouseUp > set the umask to 777 > ask file "" > put "boo" into u

Re: umask

2011-01-17 Thread Björnke von Gierke
I agree that david should try it himself, especially as it's so easy to test? Note that he meant the umask within LC, not the terminal command. on mouseUp set the umask to 777 ask file "" put "boo" into url ("file:" & it) end mouseUp Result: um

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

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:" & shellFi