use-revolution digest, Vol 1 #693 - 8 msgs

Fred_D_Yocum at mail.mcc.org Fred_D_Yocum at mail.mcc.org
Tue Sep 17 10:51:01 EDT 2002






use-revolution-request at lists.runrev.com on 09/16/2002 12:01:39 PM

Please respond to use-revolution at lists.runrev.com

To:   use-revolution at lists.runrev.com
cc:    (bcc: Fred D Yocum/MCC)
Subject:  use-revolution digest, Vol 1 #693 - 8 msgs


-------------- next part --------------


Send use-revolution mailing list submissions to
     use-revolution at lists.runrev.com

To subscribe or unsubscribe via the World Wide Web, visit
     http://lists.runrev.com/mailman/listinfo/use-revolution
or, via email, send a message with subject or body 'help' to
     use-revolution-request at lists.runrev.com

You can reach the person managing the list at
     use-revolution-admin at lists.runrev.com

When replying, please edit your Subject line so it is more specific
than "Re: Contents of use-revolution digest..."


Today's Topics:

   1. QT initialization on OS X 10.2 (Kurt Kaufman)
   2. Rev & XP (sims)
   3. send a message to n cards (=?iso-8859-1?Q?Sylvain_Le_Gourri=E9rec?=)
   4. Re: send a message to n cards (Jan Schenkel)
   5. Re: send a message to n cards (=?iso-8859-1?Q?Sylvain_Le_Gourri=E9rec?=)
   6. Re: gzip & Mac File Types (Rob Cozens)
   7. Installer (was "Drag & Drop...") (Bob Arnold)
   8. Re: Installer (was "Drag & Drop...") (Rick Harrison)

--__--__--

Message: 1
Date: Mon, 16 Sep 2002 09:06:04 -0400
Subject: QT initialization on OS X 10.2
From: Kurt Kaufman <kkaufman at snet.net>
To: use-revolution at lists.runrev.com
Reply-To: use-revolution at lists.runrev.com

Under 10.2, RR's QT initialization seems to work more effectively.
Whereas, under 10.1, a QT version check would not do a thing in terms
of speeding up the subsequent initial call to QT (resulting in a
spinning beachball), under 10.2.....no wait and no more beachball.
Also, unrelated but interesting, under OS 10.2/QT 6, the QT musical
instruments (Roland samples) have been modified such that there is
always a slight reverb (apparently more pronounced at the end of a MIDI
sequence, for example, or maybe just more audible at that point since
there are no more notes being played).
KK


--__--__--

Message: 2
Date: Mon, 16 Sep 2002 16:17:18 +0300
To: use-revolution at lists.runrev.com
From: sims <sims at ezpzapps.com>
Subject: Rev & XP
Reply-To: use-revolution at lists.runrev.com

The Rev web site states:

"Revolution supports these platforms for both development and deployment:

Mac OS 7.1 and later

Mac OS X

Windows 95, 98, ME, NT, 2000"

etc etc


--Questions

1. Does the current libUrl work ok all the way back to Mac OS 7.1?

2. Windows XP is not listed, any particular reason why? Does Rev work as well
on XP as the other Windows?

TIA

sims



___________________________________________

    http://EZPZapps.com         info at EZPZapps.com
       Software - Internet Development - Consulting

--__--__--

Message: 3
From: =?iso-8859-1?Q?Sylvain_Le_Gourri=E9rec?=
<sylvain.legourrierec at son-video.com>
To: <use-revolution at lists.runrev.com>
Subject: send a message to n cards
Date: Mon, 16 Sep 2002 16:23:32 +0200
Reply-To: use-revolution at lists.runrev.com

This is a multi-part message in MIME format.

------=_NextPart_000_0005_01C25D9D.65EDD810
Content-Type: text/plain;
     charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

hello,


I need a script that send a message from a stack to all the cards of =
this stack.
how can I write it?

thanks


-------------------------------------------------------------------------=
--------------------------------------------------------------------
Sylvain Le Gourri=E9rec  --  d=E9veloppement  -- son-video-distribution  =
 www.son-video.com

------------- I am working with Windows 2000, Revolution 1.1.1, MySQL =
3.23 & PHP 4

------=_NextPart_000_0005_01C25D9D.65EDD810
Content-Type: text/html;
     charset="iso-8859-1"
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; =
charset=3Diso-8859-1">
<META content=3D"MSHTML 6.00.2600.0" name=3DGENERATOR>
<STYLE></STYLE>
</HEAD>
<BODY bgColor=3D#ffffff>
<DIV><FONT face=3DArial size=3D2>hello,</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>I need a script that send a message =
from a stack to=20
all the cards of this stack.</FONT></DIV>
<DIV><FONT face=3DArial size=3D2>how can I write it?</FONT></DIV>
<DIV><FONT face=3DArial size=3D2></FONT> </DIV>
<DIV><FONT face=3DArial size=3D2>thanks</FONT></DIV>
<DIV> </DIV><FONT face=3DArial size=3D2>
<DIV><BR>----------------------------------------------------------------=
-------------------------------------------------------------------------=
----<BR>Sylvain=20
Le Gourri=E9rec  =97=97  d=E9veloppement  =97=97=20
son-video-distribution   <A=20
href=3D"http://www.son-video.com">www.son-video.com</A></DIV>
<DIV> </DIV>
<DIV>------------- I am working with Windows 2000, Revolution 1.1.1, =
MySQL 3.23=20
& PHP 4</FONT></DIV></BODY></HTML>

------=_NextPart_000_0005_01C25D9D.65EDD810--


--__--__--

Message: 4
Date: Mon, 16 Sep 2002 07:40:39 -0700 (PDT)
From: Jan Schenkel <janschenkel at yahoo.com>
Subject: Re: send a message to n cards
To: use-revolution at lists.runrev.com
Reply-To: use-revolution at lists.runrev.com

Hi Sylvain,

Try putting this in your stack script:

on sendAllCards pMessage
  repeat with i = 1 to the number of cards \
  of this stack
    send pMessage to card i of this stack
  end repeat
end sendAllCards

Now you can use sendAllCards to accomplish your goal.

Hope this helped,

Jan Schenkel.

"As we grow older, we grow both wiser and more foolish
at the same time."  (De Rochefoucald)

--- Sylvain_Le_Gourri?rec
<sylvain.legourrierec at son-video.com> wrote:
> hello,
>
>
> I need a script that send a message from a stack to
> all the cards of this stack.
> how can I write it?
>
> thanks
>
>
>
----------------------------------------------------------------------------------------------------------------------------------------------

> Sylvain Le Gourri?rec  --  d?veloppement  --
> son-video-distribution   www.son-video.com
>
> ------------- I am working with Windows 2000,
> Revolution 1.1.1, MySQL 3.23 & PHP 4
>


__________________________________________________
Do you Yahoo!?
Yahoo! News - Today's headlines
http://news.yahoo.com

--__--__--

Message: 5
From: =?iso-8859-1?Q?Sylvain_Le_Gourri=E9rec?=
<sylvain.legourrierec at son-video.com>
To: <use-revolution at lists.runrev.com>
Subject: Re: send a message to n cards
Date: Mon, 16 Sep 2002 16:50:49 +0200
Reply-To: use-revolution at lists.runrev.com

thanks


----- Original Message -----
From: "Jan Schenkel" <janschenkel at yahoo.com>
To: <use-revolution at lists.runrev.com>
Sent: Monday, September 16, 2002 4:40 PM
Subject: Re: send a message to n cards


> Hi Sylvain,
>
> Try putting this in your stack script:
>
> on sendAllCards pMessage
>   repeat with i = 1 to the number of cards \
>   of this stack
>     send pMessage to card i of this stack
>   end repeat
> end sendAllCards
>
> Now you can use sendAllCards to accomplish your goal.
>
> Hope this helped,
>
> Jan Schenkel.
>
> "As we grow older, we grow both wiser and more foolish
> at the same time."  (De Rochefoucald)
>
> --- Sylvain_Le_Gourri?rec
> <sylvain.legourrierec at son-video.com> wrote:
> > hello,
> >
> >
> > I need a script that send a message from a stack to
> > all the cards of this stack.
> > how can I write it?
> >
> > thanks
> >
> >
> >
> --------------------------------------------------------------------------
-------------------------------------------------------------------
> > Sylvain Le Gourri?rec  --  d?veloppement  --
> > son-video-distribution   www.son-video.com
> >
> > ------------- I am working with Windows 2000,
> > Revolution 1.1.1, MySQL 3.23 & PHP 4
> >
>
>
> __________________________________________________
> Do you Yahoo!?
> Yahoo! News - Today's headlines
> http://news.yahoo.com
> _______________________________________________
> use-revolution mailing list
> use-revolution at lists.runrev.com
> http://lists.runrev.com/mailman/listinfo/use-revolution
>


--__--__--

Message: 6
Date: Mon, 16 Sep 2002 08:13:44 -0700
To: use-revolution at lists.runrev.com
From: Rob Cozens <rcozens at pon.net>
Subject: Re: gzip & Mac File Types
Reply-To: use-revolution at lists.runrev.com

Richard, et al:

>It's simple enough to use a text file for this, but just a tad simpler to
>use a stack file.  Compare whatever parsing routines you were going to write
>with the simple, robust, and ultra-fast one-liner syntax of getting a custom
>property.

The text file approach is completed and just about finished testing;
so I'll stick with it for now.  However, I always consider a message
from you as a word to the wise; so I'll try to find time to check out
the issues you raise.

>And expanding the notion to work with multiple files becomes even more
>convenient with Rev's array notation.

The issue here is the complexity of gathering and storing individual
files from an unknown number of folders nested to an unknown number
of levels.  I am happy working with individual files, and will leave
that issue to someone who wants to build a commercial archiver

>
>In fact, if you later find you need to add any other info at all (such as
>directives on what to do with the uncompressed files -- run them in an app,
>leave 'em be, etc.) you can just add another property or property array to
>the stack file, and you never need to worry about breaking your format.

You are certainly correct if that need arises.  (I'm already
capturing creation & modification dates even though decompress does
nothing with that info presently.)

>
>With a text file you also have the potential risk that whatever delimiters
>you use may appear in data.  With Rev's ability to store binary data in
>custom properties you never need to think about how it's delimited.

Its not a problem: I don't search for a delimiter to find the end of
the data fork and the beginning of the resource fork: I save the byte
length of the data fork in the footer.  The footer format is creation
date in seconds [10 char], modification date in seconds [10]char,
creator/file type [8 char],end of fixed header ["#"], and the length
of the data fork.


The only parsing done is to read backwards from char -1 until "#".
Once that position (& with it the length of the data fork) is known,
the position of each element in the file is known as well.


--

Rob Cozens
CCW, Serendipity Software Company
http://www.oenolog.com/who.htm

"And I, which was two fooles, do so grow three;
Who are a little wise, the best fooles bee."

from "The Triple Foole" by John Donne (1572-1631)

--__--__--

Message: 7
Date: Mon, 16 Sep 2002 12:50:55 -0400
Subject: Installer (was "Drag & Drop...")
From: Bob Arnold <rfarnold at bu.edu>
To: <use-revolution at lists.runrev.com>
Reply-To: use-revolution at lists.runrev.com

With many thanks to Jan Schenkel and Klaus Major for their helpful
suggestions, I have solved my Windows installation blues (except for those
200 CD's I already burned!!!)

I modified the "startup" handler in the stand-alone app using Shell to run a
.BAT file (if it exists) to reset the read-only attributes of the data
stacks, and then delete the .BAT file.

I also created a simple Windows installer app -- using revcopyfolder,
revdeletefolder (to reinstall), specialfolderpath, and the same shell
routine to run and then delete the .BAT file to reset the read-only
attributes.

Both solutions -- the installer and the startup routine in case someone
bypasses the installer -- work, so many thanks!

If anyone would be interested in looking at the simple installer stack (Bill
Lynn?) I'd be happy to email it or upload it someplace. Although it is set
up for Windows, it could easily be modified (simplified) for the Mac.

Bob
--
Robert Arnold
Associate Professor of Film
Boston University
Tel (617) 353-7735  Fax (617) 353-1084
News: http://people.bu.edu/rfarnold/Announce.htm


--__--__--

Message: 8
Date: Mon, 16 Sep 2002 12:58:05 -0400
Subject: Re: Installer (was "Drag & Drop...")
From: Rick Harrison <harrison at all-auctions.com>
To: <use-revolution at lists.runrev.com>
Reply-To: use-revolution at lists.runrev.com

on 9/16/2002 12:50 PM, Bob Arnold at rfarnold at bu.edu wrote:

> With many thanks to Jan Schenkel and Klaus Major for their helpful
> suggestions, I have solved my Windows installation blues (except for those
> 200 CD's I already burned!!!)
>
> I modified the "startup" handler in the stand-alone app using Shell to run a
> .BAT file (if it exists) to reset the read-only attributes of the data
> stacks, and then delete the .BAT file.
>
> I also created a simple Windows installer app -- using revcopyfolder,
> revdeletefolder (to reinstall), specialfolderpath, and the same shell
> routine to run and then delete the .BAT file to reset the read-only
> attributes.
>
> Both solutions -- the installer and the startup routine in case someone
> bypasses the installer -- work, so many thanks!
>
> If anyone would be interested in looking at the simple installer stack (Bill
> Lynn?) I'd be happy to email it or upload it someplace. Although it is set
> up for Windows, it could easily be modified (simplified) for the Mac.
>
> Bob

Bob,

I would be very interested in looking at your simple installer stack.

Thanks,

Rick Harrison



--__--__--

_______________________________________________
use-revolution mailing list
use-revolution at lists.runrev.com
http://lists.runrev.com/mailman/listinfo/use-revolution


End of use-revolution Digest







More information about the use-livecode mailing list