Proposal: Opening Compressed Stacks

1999-11-02 Thread Ruediger zu Dohna
MetaCard stacks can be effectively be compressed. This is not so much an issue when they are stored on the local hard disk, but when they are transferred over http, having them gzipped could greatly improve overall performance. The compression algorithms are already in the engine, so why not t

Re: Arrays, stripping duplicate lines and the HP printer thingagain

1999-11-02 Thread Ruediger zu Dohna
At 15:38 Uhr -0500 02.11.1999, [EMAIL PROTECTED] wrote: >1. Are there really big advantages to switching from the old item x >of line y approach? Yes, it is faster and you dont have to care about commas or returns being in your values. >What happens if you put an array into a field? Do not do

More netiquette

1999-11-02 Thread Steven D'Aprano
While we're on the topic of netiquette, can I point out that it is only neccessary to quote the entire message you are replying to if you are actually going to respond to the *entire* thing point by point? If you only wish to make some general comment (rather than debate specifics) such as "Thank

Re: parsing a INI formatted file

1999-11-02 Thread Ruediger zu Dohna
Hi! I have not tried it, but propably something like the following is the fastest: function getIniValue theFile,theGroup,theKey put false into groupFound repeat for each line aLine in url ("file:"&theFile) if not groupFound then if aLine is "["&theGroup&"]" then put 1

More MCISendString troubles

1999-11-02 Thread Andrew Griffin
Okay, I have tried everything in order to check and see if my playing MIDI, using the MCISendString command, is done playing. First, I have used this, but it doesn't work: on startPlaying --put your commands to alias the file here and then to play it send "checkFinished" to me in 5 seconds e

Re: What No 'Copy File'?

1999-11-02 Thread Phil Davis
Peter Reid wrote: > > I'm trying to write a small installer stack for Windows deployment. > The aim is to build a self-expander using the WinZip utility. This > allows you to include a command that will be executed once files have > been copied to the default temp directory. Such self-expander

Re: parsing a INI formatted file

1999-11-02 Thread Phil Davis
There might be a simpler way: put url "file:inifile.txt" into tFile filter tFile with "*=*" Now tFile contains only those lines that contain "=", i.e. the value lines. If you only want the values without the names, add this: set the itemDelimiter to "=" put empty into tValueList

Re: MetaCard 2.3 beta 1 release

1999-11-02 Thread Scott Raney
On Tue, 2 Nov 1999, Andu wrote: > >Some comments on the Mac download: > >1) All the links are broken between the help index and the Metacard > >reference substack. > >2) There is no mention of "New features" anywhere > >3) I see nothing about POP3/SMTP > > > > > > David, for you and

Re: Arrays, stripping duplicate lines and the HP printer thing again

1999-11-02 Thread Phil Davis
[EMAIL PROTECTED] wrote: > > Three topics, several questions and a grovel. > > 1. About a thousand years ago I think I might have used arrays before. Then > i got used to the rather more clunky Hypercard way. Sloth, ignorance and > anxiety have prevented me from using arrays since playing w

Re: global replace for scripts

1999-11-02 Thread Phil Davis
Hi Leston, Leston Drake wrote: > > Hi all, > > Is there a way to globally replace a string in all the scripts in a stack? You could add a handler to your home stack that does something similar to Hypercard's "searchscript" handler; only it could be simpler than that one: on changeScripts pOld

Re: What No 'Copy File'?

1999-11-02 Thread Andu
>I'm trying to write a small installer stack for Windows deployment. >The aim is to build a self-expander using the WinZip utility. This >allows you to include a command that will be executed once files have >been copied to the default temp directory. Such self-expanders do >the following: > >1)

Re: MetaCard 2.3 beta 1 release

1999-11-02 Thread Andu
>Some comments on the Mac download: >1) All the links are broken between the help index and the Metacard >reference substack. >2) There is no mention of "New features" anywhere >3) I see nothing about POP3/SMTP > > David, for you and anyone else interested in the sockets support now a

Re: MetaCard 2.3 beta 1 release

1999-11-02 Thread Andu
>Some comments on the Mac download: >1) All the links are broken between the help index and the Metacard >reference substack. >2) There is no mention of "New features" anywhere >3) I see nothing about POP3/SMTP > > David, for you and anyone else interested in the sockets support now a

Re: parsing a INI formatted file

1999-11-02 Thread Dave Cragg
At 10:46 AM -0700 2/11/1999, Leston Drake wrote: >I have a data file (text) that is formatted in a standard Windows INI format. > >[Section 1 Header] >Item1= >Item2= >Item3= > >[Section 2 Header] >Item1= >Item2= >Item3= > >etc... > >I am reading the contents of this file into a container, and I w

What No 'Copy File'?

1999-11-02 Thread Peter Reid
I'm trying to write a small installer stack for Windows deployment. The aim is to build a self-expander using the WinZip utility. This allows you to include a command that will be executed once files have been copied to the default temp directory. Such self-expanders do the following: 1) un

Re: NETIQUETTE - URLs - Pays de Neuchatel

1999-11-02 Thread René Bach
I am sorry to have replied to the whole list, that mail escaped my control. Nelson, simple search (just search for "netiquette") with a web search engine will give you answers and you'll be able to read a lot about why Netiquette were defined and how the Internet evolved. Passionant, as we say in

Re: Scripting the Mouse

1999-11-02 Thread Peter Reid
> > I'm trying to build a CBT package for a target program. In the CBT > > package I move the mouse over a simulated screen of the target > > program as if the user were actually controlling the real program. > > I've got the mouse moving OK and I get the mouse to pause over screen > > objects (u

Arrays, stripping duplicate lines and the HP printer thing again

1999-11-02 Thread DVGlasgow
Three topics, several questions and a grovel. 1. About a thousand years ago I think I might have used arrays before. Then i got used to the rather more clunky Hypercard way. Sloth, ignorance and anxiety have prevented me from using arrays since playing with MC. Are there really big advanta

Re: Scripting the Mouse

1999-11-02 Thread Alan Beattie
> I'm trying to build a CBT package for a target program. In the CBT > package I move the mouse over a simulated screen of the target > program as if the user were actually controlling the real program. > I've got the mouse moving OK and I get the mouse to pause over screen > objects (using 'wai

parsing a INI formatted file

1999-11-02 Thread Leston Drake
Hi all, I have a data file (text) that is formatted in a standard Windows INI format. [Section 1 Header] Item1= Item2= Item3= [Section 2 Header] Item1= Item2= Item3= etc... I am reading the contents of this file into a container, and I want to parse it to pull out the Values. So I need to *s

Cross Platform issues

1999-11-02 Thread Mike Yates
Another issue working cross-platform which is obviously not as crucial as fonts is inks. Often these are incompatible, and it depends what you need, but in a current project I am using notSrcCopy, which works fine cross-platform - that is Mac and Windows. Just in case it is useful to anyone els

global replace for scripts

1999-11-02 Thread Leston Drake
Hi all, Is there a way to globally replace a string in all the scripts in a stack? TIA, Leston -- Leston Drake LetterPress Software, Inc. http://www.lpsoftware.com --

Re: MetaCard 2.3 beta 1 release

1999-11-02 Thread Alan Beattie
>> Subject: MetaCard 2.3 beta 1 release >> >> ftp://ftp.metacard.com/MetaCard/2.3/ > Some comments on the Mac download: > 1) All the links are broken between the help index and the Metacard > reference substack. Hi David, The traversalOn property has accidentally been left off on the field

Scripting the Mouse

1999-11-02 Thread Peter Reid
Hi I'm trying to build a CBT package for a target program. In the CBT package I move the mouse over a simulated screen of the target program as if the user were actually controlling the real program. I've got the mouse moving OK and I get the mouse to pause over screen objects (using 'wait x

Re: MetaCard 2.3 beta 1 release

1999-11-02 Thread David Bovill
Some comments on the Mac download: 1) All the links are broken between the help index and the Metacard reference substack. 2) There is no mention of "New features" anywhere 3) I see nothing about POP3/SMTP > From: Scott Raney <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > Date: