Re: calling handlers with keys THANKS!

2002-03-18 Thread Uwe Friese
Geoff, Robert, Klaus and Yennie, thank you all for your replies! After your broad hints I realized that I was missing the concept of recursion ;-( This works fine now: on presentSomeObjects -- do something here send presentSomeObjects to me in 1 second -- or whatever time put the

Temporary picts

2002-03-18 Thread Shari
If I wanted to show a temporary graphic in Hypercard, I'd use addColor colorPict. I could use this to create 50 duplicate images of a graphic, moving across the screen randomly, leaving a trail of graphics behind. Without needing 50 objects to link the graphics to. Is there a way to do this

Re: Jeanne's book

2002-03-18 Thread Ray Horsley
Count me in on the list of MetaCard Users who'll purchase a book of examples/tutorials . ___ metacard mailing list [EMAIL PROTECTED] http://lists.runrev.com/mailman/listinfo/metacard

Re: metacard digest, Vol 1 #133 - 9 msgs

2002-03-18 Thread Gregory Lypny
Thanks for the response. But, actually, my question was whether MC treats numerically-indexed arrays in the usual row-column sense that's used for matrix math. As for the question of buying MC or Revolution, there is nothing about Revolution (as appealing as the face lift is) that can

image protection

2002-03-18 Thread Rick Rice
I have developed a MC application for one of the instructors. It allows the user to view images from a huge data base. All the images are in various folders on a CD and are imported and displayed individually. The owner of the images has just realized that the images can be easily copied from

Re: image protection

2002-03-18 Thread Ken Ray
Rick, You can compress (zip) the images using MC's compress command, and then when you read them in, uncompress them using the decompress command. For more security, you can base64encode them as well (reverse with base64decode). Ken Ray Sons of Thunder Software Email: [EMAIL PROTECTED] Web

Trigger Stack Toolbox on console machine

2002-03-18 Thread Sivakatirswami
is it possible to a) create a stack that will do stuff, globally make changes to files in a directory etc. then save this to a Unix web host, then b) create a cgi that does this: #! /public_html/cgi-bin/trigger_tools.cgi on startup open stack toolbox # assumes stack is in cgi-bin send

Re: bad token: theID, iconNum, theVis, etc.

2002-03-18 Thread erik hansen
--- Klaus Major [EMAIL PROTECTED] wrote: bad token: theID, iconNum, theVis, etc. is what comes up alot esp. when ExplicitVariables() is true. these are close to taken words in MC, but not exactly the same. is this just something you have to deal with by naming your variables in

Re: bad token: theID, iconNum, theVis, etc.

2002-03-18 Thread Richard Gaskin
erik hansen wrote: --- Klaus Major [EMAIL PROTECTED] wrote: bad token: theID, iconNum, theVis, etc. is what comes up alot esp. when ExplicitVariables() is true. these are close to taken words in MC, but not exactly the same. is this just something you have to deal with by naming

Re: Temporary picts

2002-03-18 Thread erik hansen
if you are importing custom icons from HC, they will wind up in their own Stack BackGround. Go to Edit BackGrounds and click on HC Icons in the Stack Backgrounds window right below the Card Groups window. --- Scott Rossi [EMAIL PROTECTED] wrote: On Monday, March 18, 2002, at 04:43 AM,

Re: bad token: theID, iconNum, theVis, etc.

2002-03-18 Thread erik hansen
(thetarg is in the propertynames) = false local theTarg put the target into theTarg local: name shadows another variable or constant line:27 column:3 bad token: theTarg Handler: error in command Handler: error in handler this occured AFTER i had worked my way down half of the script

Re: bad token: theID, iconNum, theVis, etc.

2002-03-18 Thread Phil Davis
In an effort not to overlook anything... to share a local variable among several handlers, you must declare it outside of all handlers, and above all the ones meant to share it. Like this: stack script local theTarg on mouseUp put the target into theTarg send thud to me in 1

Re: bad token: theID, iconNum, theVis, etc.

2002-03-18 Thread J. Landman Gay
Richard Gaskin wrote: The jumping script editor scroll is a known bug, addressed in 2.4.2. I was hoping. But I just downloaded 2.4.2b3 the other day and it is still there. Drives me nuts. -- Jacqueline Landman Gay | [EMAIL PROTECTED] HyperActive Software |

Re: bad token: theID, iconNum, theVis, etc.

2002-03-18 Thread erik hansen
The jumping script editor scroll sounds like the Shorty George, the Texas Tommy, or the Big Apple... by jump back i mean that apply goes to line 27 where it was going to line 192, and it keeps going back there even after i set explicitVars to false and put all the local theTargand all other

Re: Arrays and Matrix Algebra

2002-03-18 Thread crob
Message: 1 Date: Mon, 18 Mar 2002 12:17:49 -0500 Subject: Re: metacard digest, Vol 1 #133 - 9 msgs From: Gregory Lypny [EMAIL PROTECTED] To: [EMAIL PROTECTED] Reply-To: [EMAIL PROTECTED] Thanks for the response. But, actually, my question was whether MC treats numerically-indexed arrays in the