Re: MC CGI - What can't I do?

2002-08-27 Thread David Bovill
On Tue, 2002-08-27 at 05:31, andu wrote: --On Monday, August 26, 2002 21:21:49 -0700 Richard Gaskin [EMAIL PROTECTED] wrote: - paint tools do not generate an error: choose brush tool set the brushcolor to blue drag from 60,60 to 80,80 select img 1 of stack

Progress During Downloads

2002-08-27 Thread Ray Horsley
If I use put url myUrl into url myDiskPath for a lengthy download, does anybody know of a way to receive information from MetaCard during the download so a progress graph can be shown to the user? ___ metacard mailing list [EMAIL PROTECTED]

Re: Demo stack not working in Linux

2002-08-27 Thread David Bovill
On Mon, 2002-08-26 at 17:42, Scott Raney wrote: No, it's apparently just a conflict in the way the KDE (didn't try Gnome) window manager stacks windows: it's putting the backdrop window on *top* of the other windows. Worse, KDE at some point completely lost the ability to show a window with

Re: Demo stack not working in Linux

2002-08-27 Thread andu
--On Tuesday, August 27, 2002 17:07:14 + David Bovill [EMAIL PROTECTED] wrote: Anyone use any others that work well for them... I'm looking for something lean and fast that I can customize to make standalone machines out of? I use Fluxbox as wm which is as lean and fast as it can get

Filter help

2002-08-27 Thread FlexibleLearning
Okay, so one day I'll track down a list of Bourne Shell options as mentioned in the Help entry on Filters, but just for now... [1] Using AND How do we filter to extract both *.gif AND *.jpg from a list of file names? [2] Using NOT And how do we do the reverse, such as 'All files except *.txt' ?

RE: XP - window metrics

2002-08-27 Thread Chipp Walters
Ken, Thanks!! I'll check it out. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Ken Ray Sent: Tuesday, August 27, 2002 12:06 AM To: [EMAIL PROTECTED] Subject: Re: XP - window metrics Chipp, I just discovered that Tuviah's External Collection

Re: MC CGI - What can't I do?

2002-08-27 Thread Richard Gaskin
David Bovill wrote: --On Monday, August 26, 2002 21:21:49 -0700 Richard Gaskin [EMAIL PROTECTED] wrote: - paint tools do not generate an error: choose brush tool set the brushcolor to blue drag from 60,60 to 80,80 select img 1 of stack tmp/formdata.mc export png to file myimg.png

Re: Filter help

2002-08-27 Thread Michael Kann
-- For simulating a logical AND -- on mouseUp put fld aFld into filesList replace .jpg with .jpg! in filesList replace .gif with .gif! in filesList filter filesList with *!* replace ! with empty in filesList put filesList into fld bFld end mouseUp --- [EMAIL PROTECTED] wrote:

Re: Filter help

2002-08-27 Thread Michael Kann
-- not using Filter, but does the same thing -- on mouseUp put fld aFld into filesList repeat for each line kLine in filesList if .txt is not in kLine then put returnkLine after kHolder end if end repeat put kHolder into fld bFld end mouseUp --- [EMAIL PROTECTED] wrote:

Re: Filter help

2002-08-27 Thread Michael Kann
-- The NOT filter on mouseUp put fld aFld into filesList replace .txt with !txt in filesList filter filesList with *.* replace ! with . in filesList put filesList into fld bFld end mouseUp --- [EMAIL PROTECTED] wrote: Okay, so one day I'll track down a list of Bourne Shell options

Get a List of Files

2002-08-27 Thread Scott Rossi
How might one get a list of all files from a folder which contains nested folders and files several levels deep? folder1 -- file1 -- file2 -- file3 -- folderA -- file1 -- file2 -- folderX -- file1 -- file2 -- file 3 -- file4 Thanks Regards, Scott Rossi Creative

Re: Get a List of Files

2002-08-27 Thread Ken Ray
I wrote a quick little directorywalker stack that does this, and reports back whether it is a file (optionally along with its type) or a folder, and (optionally) indents the hierarchy. It was for Windows files only (so there's no Mac type/creator checking), but here's the script: -- Card

Re: Get a List of Files

2002-08-27 Thread Ray Horsley
on 8/27/02 12:55 PM, Ken Ray at [EMAIL PROTECTED] wrote: I wrote a quick little directorywalker stack that does this, and reports back whether it is a file (optionally along with its type) or a folder, and (optionally) indents the hierarchy. It was for Windows files only (so there's no Mac

Re: Get a List of Files

2002-08-27 Thread Scott Rossi
Recently, Scott Rossi wrote: How might one get a list of all files from a folder which contains nested folders and files several levels deep? In my ignorance, I forgot to check my archived mail files which contained this modified code snippet from Geoff Canyon: global

Re: Demo stack not working in Linux

2002-08-27 Thread David Bovill
On Tue, 2002-08-27 at 16:30, andu wrote: I use Fluxbox as wm which is as lean and fast as it can get (makes you feel really sorry for kde users;-). The windows looks and behavior can also be customized easily. For desktop I use Rox which uses gtk (I stayed away from gtk 2.x since I got

Re: Linux and Video

2002-08-27 Thread David Bovill
What's the latest? What's the best format to use for xplatform video in MC? I thought that MPEG1 was the crossplatform format... looking at the man pages for xanim... MPEG playback is incomplete, and the player choked on a downloaded movie. Noatun plays it using Mpeglib... Reference talks about

Can I put Multiple handlers in a CGI script?

2002-08-27 Thread Rich Mooney
As I understand it, a CGI needs to be in the following format: #! mc on Startup #script end Startup I also have the impression that any script in this CGI had to be between on Startup and end Startup. So does this mean that one CGI file is one handler and that I can't pass arguments to it

Re: Can I put Multiple handlers in a CGI script?

2002-08-27 Thread Phil Davis
- Original Message - From: Rich Mooney [EMAIL PROTECTED] To: MetaCard Mail List [EMAIL PROTECTED] Sent: Tuesday, August 27, 2002 3:35 PM Subject: Can I put Multiple handlers in a CGI script? As I understand it, a CGI needs to be in the following format: #! mc on Startup

Re: Can I put Multiple handlers in a CGI script?

2002-08-27 Thread andu
--On Tuesday, August 27, 2002 18:35:01 -0400 Rich Mooney [EMAIL PROTECTED] wrote: As I understand it, a CGI needs to be in the following format: # ! mc on Startup #script end Startup I also have the impression that any script in this CGI had to be between on Startup and end

More CGI Stuff

2002-08-27 Thread Yennie
Hi guys, With all of this CGI talk lately, I cooked something up. I've been working with a server program based on the ol' mc httpd stack, since I make heavy use of Valentina. However, I've always wanted to break it down into separate cgi scripts. Among other things, that gives me multiple

Re: Can I put Multiple handlers in a CGI script?

2002-08-27 Thread Sivakatirswami
on 08-27-2002 12:35 PM, Rich Mooney at [EMAIL PROTECTED] wrote: As I understand it, a CGI needs to be in the following format: Maybe this will help you get started... This CGI drives the shop site dynamic order generation at www.himalayanacademy.com/hawaii/iraivan/donate/ I am not an