Re: player object messages

2011-04-10 Thread J. Landman Gay
On 4/10/11 11:37 PM, Nicolas Cueto wrote: They're all in the dictionary under the Player category. That's in the left-side list. Thanks, Jacqueline. But there's so many listed there! Hard to tell where to start just from the command name :-). It sounds like you only want messages. So select t

Re: currentTimeChanged and player callbacks bug?

2011-04-10 Thread J. Landman Gay
On 4/10/11 11:34 PM, Nicolas Cueto wrote: Here's the problem. If the video controller thumb is slid>>back<< in time, when "play" is clicked the correct callback will get immediately triggered. However, if the thumb is slid>>forward<< in time, it appears that LC is running thru every callback b

Re: player object messages

2011-04-10 Thread Nicolas Cueto
> They're all in the dictionary under the Player category. That's in the > left-side list. Thanks, Jacqueline. But there's so many listed there! Hard to tell where to start just from the command name :-). -- Nicolas Cueto ___ use-livecode mailing list

currentTimeChanged and player callbacks bug?

2011-04-10 Thread Nicolas Cueto
Hi again. My (video) player object's callbacks consists of 297 lines. Every line has the same command but a different index number. When called to, the player object uses that index number to retrieve and display a line of text. Now, to allow use of the player's control bar to skip forward or bac

Re: player object messages

2011-04-10 Thread J. Landman Gay
On 4/10/11 9:32 PM, Nicolas Cueto wrote: Hi, Assuming there is one, what is the name for the message sent when the thumbslider (?) of a player object is clicked and/or released? currentTimeChanged While on the topic, I'd welcome a short list of names for any other player object messages rel

Re: LockLocation of a group

2011-04-10 Thread J. Landman Gay
On 4/10/11 10:32 PM, Pete wrote: Interesting. I closed the card and re-opened it and the group did resize as you suggested. I don't know why I forgot to mention it, maybe because it's so automatic for me, but the usual way I force an update is to click the Edit Group button in the toolbar tw

Re: LockLocation of a group

2011-04-10 Thread Pete
Interesting. I closed the card and re-opened it and the group did resize as you suggested. Thanks, Pete Molly's Revenge On Sun, Apr 10, 2011 at 6:44 PM, J. Landman Gay wrote: > On 4/10/11 6:41 PM, Pete wrote: > >> I vaguely remember a discussion about this once

player object messages

2011-04-10 Thread Nicolas Cueto
Hi, Assuming there is one, what is the name for the message sent when the thumbslider (?) of a player object is clicked and/or released? While on the topic, I'd welcome a short list of names for any other player object messages related to its stop/play/pause and thumbslide-left/right buttons. Th

Re: LockLocation of a group

2011-04-10 Thread J. Landman Gay
On 4/10/11 6:41 PM, Pete wrote: I vaguely remember a discussion about this once before but I need to ask about this again. The dictionary says "If the *lockLocation* of a group is false, the group is automatically resized when the objects in it are moved, resized, hidden, or shown." I'm not see

Re: LockLocation of a group

2011-04-10 Thread Pete
Thanks everyone. It's not a big deal to change the size of the group - I was mainly wondering if I was misunderstanding what was in the dictionary. Pete Molly's Revenge On Sun, Apr 10, 2011 at 4:50 PM, Mark Schonewille < m.schonewi...@economy-x-talk.com> wrote:

Re: LockLocation of a group

2011-04-10 Thread Jerry J
Aha! (and d'OH). Never noticed that way down at the bottom of the inspector! Thanks! On Apr 10, 2011, at 5:10 PM, Mark Schonewille wrote: > Jerry, > > Yes, this is supposed to be this way and you can change it by setting the > margins of the group to 0 (or any other positive number). > > -- >

Re: LockLocation of a group

2011-04-10 Thread Mark Schonewille
Jerry, Yes, this is supposed to be this way and you can change it by setting the margins of the group to 0 (or any other positive number). -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering Homepage: http://economy-x-talk.com Twitter: http://twitter.com/xtalkp

Re: LockLocation of a group

2011-04-10 Thread Terry Judd
Pete - Just 'nudge' the group using the arrow keys after you resized the control. That should update the boundaries of the group. Terry... On 11/04/2011 09:41 AM, "Pete" wrote: > I vaguely remember a discussion about this once before but I need to ask > about this again. > > The dictionary sa

Re: LockLocation of a group

2011-04-10 Thread Jerry J
I also have been recently surprised to see that a group is 4 pixels bigger on all 4 sides than its parts. Make a new stack, drag in a label field, hit group and watch the handles grow. Is this supposed to be this way? --Jerry Jensen On Apr 10, 2011, at 4:50 PM, Mark Schonewille wrote: > Hi Pet

Re: LockLocation of a group

2011-04-10 Thread Mark Schonewille
Hi Pete, I think this is a bug. AFAIK it only work when you move an object but not when you resize it. I'm not sure about hiding and showing, I guess this doesn't work either and I think I like it that way. -- Best regards, Mark Schonewille Economy-x-Talk Consulting and Software Engineering H

LockLocation of a group

2011-04-10 Thread Pete
I vaguely remember a discussion about this once before but I need to ask about this again. The dictionary says "If the *lockLocation* of a group is false, the group is automatically resized when the objects in it are moved, resized, hidden, or shown." I'm not seeing that behavior. I have a combo

Re: socket handling/libURL changed between 4.0 and 4.6?

2011-04-10 Thread Bernard Devlin
I copied the libURL from 4.0 and pasted it over the version in 4.6, and things work again. So it is the changes made to libURL between 4.0 and 4.6 that are the immediate cause of this problem. It would be helpful if libURL gave some error message rather than a socket timeout. Can someone tell me

Re: revCopyFile slow?

2011-04-10 Thread Mike Bonner
For shell windows showing look at the property hideConsoleWindows If you're worried about shell blocking, could do your file management stuff as a process instead. Syntax: open process appName [for [text|binary] {read | write | update | neither}] Haven't done much with open process myself, but c

Re: revCopyFile slow?

2011-04-10 Thread Mark Schonewille
Maarten, Whether using the shell blocks your interface depends on the size of your files. Copying one very big file is likely to be blocking, but copying many small files in a repeat loop should hardly interfere with user interaction. I really think you should give all options a try and choose

Re: revCopyFile slow?

2011-04-10 Thread Maarten Koopmans
I'll try the command shell, I hope the command window doesn't show. Blocking behavior is another fear ( why revCopyFile is unacceptable). Thanks for all the hints and advice everybody! --Maarten On Sunday, April 10, 2011, Jim Ault wrote: > On Apr 10, 2011, at 5:31 AM, Mark Schonewille wrote: >

Re: revCopyFile slow?

2011-04-10 Thread Jim Ault
On Apr 10, 2011, at 5:31 AM, Mark Schonewille wrote: Maarten, That depends on many factors. I have been in situations where writing a few tens of thousands of files too hours using read/write, while using the shell command took a few minutes. I have also been in situations where read/write

Re: revCopyFile slow?

2011-04-10 Thread Mark Schonewille
Maarten, That depends on many factors. I have been in situations where writing a few tens of thousands of files too hours using read/write, while using the shell command took a few minutes. I have also been in situations where read/write was actually the preferred method. If it is about speed,

Re: revCopyFile slow?

2011-04-10 Thread Maarten Koopmans
Really? Ever benchmarked open, read, write on files? How slow are they? On Sunday, April 10, 2011, Mark Schonewille wrote: > Cross-platform yes, fast no. > > -- > Best regards, > > Mark Schonewille > > Economy-x-Talk Consulting and Software Engineering > Homepage: http://economy-x-talk.com > Twi

Re: revCopyFile slow?

2011-04-10 Thread Mark Schonewille
Cross-platform yes, fast no. -- 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.6 for LiveCode here http://qery.us/ce On 10

Re: socket handling/libURL changed between 4.0 and 4.6?

2011-04-10 Thread Maarten Koopmans
Off note: if you have a client webdav library, I'd be very interested. Please contact me (off list if that works better fo you). Best, Maarten On Sunday, April 10, 2011, Web Admin Himalayan Academy wrote: >  Better push this one to a ticket in the QA center with a sample stack. > > On 4/9/11 9:2

Re: revCopyFile slow?

2011-04-10 Thread Maarten Koopmans
Yes, but a simple rev implementation should be as fast and cross-platform (windows Mobile.) On Sunday, April 10, 2011, Web Admin Himalayan Academy wrote: >  On 4/8/11 6:25 AM, Maarten Koopmans wrote: > > I'll just write a copyfile function in LC then. That should be near-C > speed, assumi