fixedlineheight / textheight = PITA

2007-02-07 Thread Martin Blackman
Dear List If you want to use different font sizes in a field you can set the fixedlineheight to false to allow self-adjusting line spacing. But the line spacing you get is too close together for my liking with 11 or 12 point font. The spacing you get with fixedlineheight true is just about

stackFileVersion again!

2007-02-07 Thread Dave
Hi All, I know this has been answered but I'm at a customer site and don't have access to all the good stuff I usually do! How can I ensure that *ALL* stacks are saved in 2.4 format? I have the StackFormat plugIn but I have to remember to run it each time I launch RunRev. I just want to

Re: stackFileVersion again!

2007-02-07 Thread Richard Gaskin
Dave wrote: How can I ensure that *ALL* stacks are saved in 2.4 format? I have the StackFormat plugIn but I have to remember to run it each time I launch RunRev. I just want to globally make sure that all stacks are saved in 2.4 format all ways. See Development-Plugins-Plugin Settings

/Volumes/SomePlace-1 ----Why?

2007-02-07 Thread Roger . E . Eller
We have run into a scripting issue when a volume has been ejected or unmounted, then re-mounted in Mac OS X. The re-mounted volume name path will have a -1 or -2, etc. appended to the end of path. This is problematic for scripting to automatically access files within the volume (using the

Re: Show file and application icons in stacks

2007-02-07 Thread Mark Schonewille
Hello again, I already announced earlier that I have been working on a Mac OS X version of a library that displays file and application icons in Revolution. Four people have tested the library for me. Two tell me it works fine, two more tell me it doesn't work at all. So, I am looking

Re: /Volumes/SomePlace-1 ----Why?

2007-02-07 Thread Jim Ault
On 2/7/07 9:10 AM, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote: We have run into a scripting issue when a volume has been ejected or unmounted, then re-mounted in Mac OS X. The re-mounted volume name path will have a -1 or -2, etc. appended to the end of path. This is problematic for scripting

dragging question

2007-02-07 Thread marty
Hi all -- I'm sure I should know how to do this, but. What would the script be to drag an object (let's call it graphic triangle or something) when the user clicks and drags on it? Thanks, - marty -- Marty Billingsley The University of Chicago Laboratory Schools

Re: dragging question

2007-02-07 Thread Mark Schonewille
Marty, on mouseDown grab me end mouseDown Mark -- Economy-x-Talk Consultancy and Software Engineering http://economy-x-talk.com http://www.salery.biz Get your store on-line within minutes with Salery Web Store software. Download at http://www.salery.biz Op 7-feb-2007, om 18:58 heeft

Re: Windows volumes

2007-02-07 Thread Phil Davis
Hi Richard, Richard Miller wrote: How can I get a list of the full names of all currently running volumes under Windows? I know there is a volumes function, but that only returns the drive letters. I need to see the full names of these drives. Does this require a shell command, and if so,

Re: dragging question

2007-02-07 Thread Scott Rossi
Recently, marty wrote: What would the script be to drag an object (let's call it graphic triangle or something) when the user clicks and drags on it? Execute in your message box: go url http://www.tactilemedia.com/download/drag_sample.rev; Regards, Scott Rossi Creative Director Tactile

Re: Show file and application icons in stacks

2007-02-07 Thread Richard Gaskin
Mark Schonewille wrote: I already announced earlier that I have been working on a Mac OS X version of a library that displays file and application icons in Revolution. Four people have tested the library for me. Two tell me it works fine, two more tell me it doesn't work at all. So, I am

Email Encode / SMTP

2007-02-07 Thread R. Hillen
Hello, As i want to send same email programmatically, I´m looking now for Shao Seans Email Encode 2.5.2 and SMTP 2.5.3. I looked for both Programs on Shao Sean´s website; there they are offline and not downlodable. Can you give me some tips, how to get them? Thank you.

Re: Windows volumes

2007-02-07 Thread Richard Miller
Thanks, Phil. This would seem to be what I want. However, I can't get the function to produce a value. I'm trying put queryRegistry(HKEY_LOCAL_MACHINE\SYSTEM \CurrentControlSet\Services\Disk\Enum\) in the message box, but nothing comes back. What am I doing wrong? Thanks. Richard

Re: Email Encode / SMTP

2007-02-07 Thread Chipp Walters
I've got something called altEmailHarness which is a wrapper for Shao's library which sends only plain text emails. You can check it out at: http://www.altuit.com/webs/altuit2/RunRev/Downloads.htm ___ use-revolution mailing list

Re: Monitoring local file transfers

2007-02-07 Thread Chipp Walters
Richard, You can put a file from one destination to another with: put C:/test.jpg into tPath put H:/test.jpg into tPath2 put URL(binfile: tPath) into URL(binfile: tPath2) If you're copying lots of files, then embedding these statements in a repeat loop with an incrementing progressbar

Re: Windows volumes

2007-02-07 Thread Phil Davis
Hi Richard, Richard Miller wrote: Thanks, Phil. This would seem to be what I want. However, I can't get the function to produce a value. I'm trying put queryRegistry(HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Disk\Enum\) in the message box, but nothing comes back. What

Re: dragging question

2007-02-07 Thread john
Hi Marty, A simple approach is on mousedown repeat until the mouse is up set the loc of me to the mouseloc end repeat end mousedown Cheers John T -Original Message- From: marty [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 7, 2007 12:58 PM To: use-revolution@lists.runrev.com

Re: Monitoring local file transfers

2007-02-07 Thread Richard Miller
Chipp, Thanks for the suggestion. It's what I had been trying before. It certainly works in terms of transferring the files. But I can't get it to show the the progress of transferring any given file, like if I had transferred it from a remote server to my local computer. I'm using

Re: dragging question

2007-02-07 Thread J. Landman Gay
[EMAIL PROTECTED] wrote: Hi Marty, A simple approach is on mousedown repeat until the mouse is up set the loc of me to the mouseloc end repeat end mousedown This works, but is generally considered a Revolution sin. ;) http://www.hyperactivesw.com/polling.html -- Jacqueline Landman Gay

Re: Monitoring local file transfers

2007-02-07 Thread Andre Garzia
Richard, thats a tricky one... why not set the default folder to the one in the destination and check the detailed files for the sizes and content? Andre On Feb 7, 2007, at 10:20 PM, Richard Miller wrote: Chipp, Thanks for the suggestion. It's what I had been trying before. It

Re: dragging question

2007-02-07 Thread john
Hi jacque, : ) I knew that too, but couldn't find the information you provided me when I asked about this previously. I thought my answer would yield the information. : p Cheers John -Original Message- From: J. Landman Gay [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 7, 2007

Re: Monitoring local file transfers

2007-02-07 Thread Derek Bump
Richard, What you could do is control the file transfer yourself with a repeat handler. Using the repeat handler, transfer only 100K of the file at a time, updating the status bar as needed. Derek Bump Dreamscape Software Compress photos easily

Re: Monitoring local file transfers

2007-02-07 Thread Jim Ault
On 2/7/07 4:20 PM, Richard Miller [EMAIL PROTECTED] wrote: Chipp, Thanks for the suggestion. It's what I had been trying before. It certainly works in terms of transferring the files. But I can't get it to show the the progress of transferring any given file, like if I had transferred it

Creating Audio Clips

2007-02-07 Thread Joe Lewis Wilkins
Hi Everyone, I've a program in which, rather than have the computer voices reading some text, I'd like to have real voices called that would speak the text. Presumably, I need to provide audio clips that I can call to do this. Any idea how to create them? I have an old application called

Re: Creating Audio Clips

2007-02-07 Thread Stephen Barncard
Check out Felt Tip's Sound Studio. Wonderful. http://www.freeverse.com/soundstudio/ well worth the $79. sqb Hi Everyone, I've a program in which, rather than have the computer voices reading some text, I'd like to have real voices called that would speak the text. Presumably, I need to

Re: Creating Audio Clips

2007-02-07 Thread Joe Lewis Wilkins
Thanks, Stephen. That's a lot better than the $400? I originally paid for SoundEdit. Joe Wilkins On Feb 7, 2007, at 8:40 PM, Stephen Barncard wrote: Check out Felt Tip's Sound Studio. Wonderful. http://www.freeverse.com/soundstudio/ well worth the $79. sqb Hi Everyone, I've a program in