Re: LiveNode Server

2015-04-07 Thread David Bovill
OK. A few questions... I'll post them as assertions to aid clarity. There may well be mistakes - so please let me an others know if there is anything wrong below: 1. Livecode messaging is fully asynchronous. Not semi-async. 2. There are a bunch of functions that are currently synchronous in

[BUG] revDeleteFolder

2015-04-07 Thread Kay C Lan
The Dictionary says: On Mac OS and OS X Systems, the revDeleteFolder command places the folder in the Trash. I'm not seeing that. PPC 10.5.8 LC 6.6.5 - it's gone, the Trash is empty. Intel 10.9.5 LC 7.0.4 rc3 - as above The Dictionary says that revDeleteFolder hasn't changed since version

Re: [BUG] revDeleteFolder

2015-04-07 Thread Kay C Lan
On Tue, Apr 7, 2015 at 5:48 PM, Kay C Lan lan.kc.macm...@gmail.com wrote: On a slight tangent, I thought there was a specialFolderPath(Trash), but not so. How do I move a folder to the Trash of an external HD on OS X? The late great Eric Chatonet was able to help here (from of List Post a

Re: [BUG] revDeleteFolder

2015-04-07 Thread Kay C Lan
On Tue, Apr 7, 2015 at 6:54 PM, Kay C Lan lan.kc.macm...@gmail.com wrote: Still need to figure out how to Trash files/folders on an external HD. OK, so External Trash folders are located here: /Volumes/HD Name/.Trashes/504 So if you have the full pathname to a folder that you want to move to

Re: [BUG] revDeleteFolder

2015-04-07 Thread Paul Dupuis
On 4/7/2015 6:54 AM, Kay C Lan wrote: On Tue, Apr 7, 2015 at 6:15 PM, Kay C Lan lan.kc.macm...@gmail.com wrote: rename folder full path name to specialFolderPath(empt) / short name Only works for Trashing folders/files on the start up disk. Still need to figure out how to Trash

Re: [BUG] revDeleteFolder

2015-04-07 Thread Kay C Lan
Thanks Paul, I like your thinking. Unfortunately that isn't going to work in this case. My Internal HD is overflowing and the last thing I need to do is copy a couple of dozen large (6 GB) folders across. I'm scripting (for self use) a little utility to search a couple of my backup HDs to see if

Re: [BUG] revDeleteFolder

2015-04-07 Thread Kay C Lan
On Tue, Apr 7, 2015 at 6:15 PM, Kay C Lan lan.kc.macm...@gmail.com wrote: rename folder full path name to specialFolderPath(empt) / short name Only works for Trashing folders/files on the start up disk. Still need to figure out how to Trash files/folders on an external HD. Any help

Re: Repeat syntax addition

2015-04-07 Thread Ben Rubinstein
(Going back to HyperCard?) the concepts used to be containers and sources of value - where the latter can be a literal, a function call, an expression... I always thought that containers were a subset of sources of value, defined as the items where you could set the value as well as get it;

Refining a Font Menu

2015-04-07 Thread tbodine
Hi All. I have a font menu built with a pull-down type button that works fine, but the number of system fonts makes finding one a chore for the user. I have three refinements in mind, but I'm not sure if they are possible. 1) Is it possible to get a fonts list from the system (or parse one)

Re: Only half a field prints with LC 7 on Windows Vista

2015-04-07 Thread J. Landman Gay
On 4/6/2015 4:32 PM, stgoldb...@aol.com wrote: I'm working with LC 7 on Windows Vista. I notice that when trying to print a field, whether through the menubar or by script, only the left half of the field prints. I'm not sure if this is a bug, or if I'm just doing something wrong. It was a

Re: Refining a Font Menu

2015-04-07 Thread Scott Rossi
AFAIK, you can only grab a list of available fonts. Regarding jumping to the first typed letter and automatic scrolling, I believe you want to set the menuHistory property. Regards, Scott Rossi Creative Director Tactile Media UX/UI Design On Apr 7, 2015, at 9:12 AM, tbodine

Re: Palette Decorations

2015-04-07 Thread Peter Haworth
Thanks Richard. I should have mentioned that I'm seeing this in LC 6.6.5 - wasn't the change to Cocoa in 6.7? The Finder example I gave was in OSX 10.10 Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and SQLiteAdmin

Re: Palette Decorations

2015-04-07 Thread Richard Gaskin
Peter Haworth wrote: I am under the impression that a palette stack on OSX should only have a close button as a decoration and should not be resizable. For example, if I bring up the Finder View Options window for a folder, that's the way it displays. However, if I set the style of an LC

Re: Refining a Font Menu

2015-04-07 Thread Peter Haworth
I think I've run into this problem before with pulldown menus - the menuHistory doesn't seem to have any effect. Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and SQLiteAdmin http://www.lcsql.com/sqliteadmin.html On Tue, Apr 7, 2015 at

Re: LiveNode Server

2015-04-07 Thread Richard Gaskin
David Bovill wrote: OK. A few questions... I'll post them as assertions to aid clarity. Personally I find it clearer to read questions as questions, but with that explanation I can work with this: 1. Livecode messaging is fully asynchronous. Not semi-async. What is semi-asynchronous in

Re: Repeat syntax addition

2015-04-07 Thread Peter Haworth
I'm really liking this feature. I just used it in a series of nested repeat statements that traverse their way through an array with 5 levels of keys by writing a function for each level of key. Makes the code so much more readable. Pete lcSQL Software http://www.lcsql.com Home of

Palette Decorations

2015-04-07 Thread Peter Haworth
I am under the impression that a palette stack on OSX should only have a close button as a decoration and should not be resizable. For example, if I bring up the Finder View Options window for a folder, that's the way it displays. However, if I set the style of an LC stack to palette, or open it

Re: Palette Decorations

2015-04-07 Thread Peter Haworth
OK, didn't know that. Not being familiar with Apple's API, I don't think I would be able to find the appropriate call. Pete lcSQL Software http://www.lcsql.com Home of lcStackBrowser http://www.lcsql.com/lcstackbrowser.html and SQLiteAdmin http://www.lcsql.com/sqliteadmin.html On Tue, Apr 7,

Re: LiveNode Server

2015-04-07 Thread Andrew Kluthe
1. Livecode messaging is fully asynchronous. Not semi-async. Right, when I said semi-async I was referring to the single threadedness of livecode (which node shares) along with all the baked into livecode stuff that blocks up messages currently: accessing a large file on disk, posting some

Re: Palette Decorations

2015-04-07 Thread Richard Gaskin
Peter Haworth wrote: I should have mentioned that I'm seeing this in LC 6.6.5 - wasn't the change to Cocoa in 6.7? The Finder example I gave was in OSX 10.10 IIRC the Cocoa migration began early in the 6.x series. If you can figure out the API Apple's using there that would be cool. --

Re: LiveNode Server

2015-04-07 Thread Richard Gaskin
Andrew Kluthe wrote: 1. Livecode messaging is fully asynchronous. Not semi-async. Right, when I said semi-async I was referring to the single threadedness of livecode (which node shares) along with all the baked into livecode stuff that blocks up messages currently: accessing a large file on

Re: Current Player Bugs in LC 7

2015-04-07 Thread tbodine
Hi Peter. I know quite a few of us are anxious to see a break in the log jam regarding the multimedia player. My takeaway from the webinar last month was that many issues would clear up when the LC8 multimedia player widget rolls out. It will replace obsolete code -- no doubt the source of many

Re: OT: On-Rev and Joomla!

2015-04-07 Thread Matthias Rebbe | M-R-D
Graham, what problem do you encounter? Matthias Am 08.04.2015 um 00:00 schrieb Graham Samuel livf...@mac.com: Sorry to be OT as far as this list is concerned, but for some reason my On-Rev forum membership not yet been activated, and On-Rev support, while being very kind and patient

Re: LiveNode Server

2015-04-07 Thread Andrew Kluthe
I'm not using LC server side much so I can't say for sure there in reference to this thread and the things we've been discussing. I think the direction livecode is going and the state that it is/was (I still use 5.5 for a lot of things) in to be great. If we can get as many of the blocking bits

OT: On-Rev and Joomla!

2015-04-07 Thread Graham Samuel
Sorry to be OT as far as this list is concerned, but for some reason my On-Rev forum membership not yet been activated, and On-Rev support, while being very kind and patient with me in the replies I’ve had, doesn’t seem to have much time to answer my queries. I suppose the wonderful

[BUG] revCopyFile

2015-04-07 Thread Kay C Lan
When using revCopyFile on OS X I keep getting the result: execution error The good news is that there is NO error, the file is copying just nicely and arrives intact. The bad news is obviously I can't programmatically check that the Copy was successful. The cause seems to be the length of the