Re: icon id 3001 where are you?

2002-03-22 Thread erik hansen
thanks/danke Sjoerd, those "icons" turned up as images in a bkgnd called "HCIcons" which i finally located in the "Edit" window with cmd-"L". the image ids are 3001,3002 etc. and everything works well so far. what a thrill to see my little guys moving around in living color. --- Sjoerd Op 't La

Re: Dumb Question About Variables

2002-03-22 Thread Ken Ray
Dave, You can do it that way, but MC has a better way: repeat with i = 1 to 10 put stuff into ("H" & i) end repeat Neat, huh? Ken Ray Sons of Thunder Software Email: [EMAIL PROTECTED] Web site: http://www.sonsothunder.com/ - Original Message - From: "David Tremmel" <[EMAIL PROTECTE

Re: Dumb Question About Variables

2002-03-22 Thread David Tremmel
I think you'd have to use the do statement: repeat with i = 1 to 10 get "put " & stuff & " into H" & i do it end repeat Regards, Dave Tremmel On 3/22/02 2:28 PM, "Gregory Lypny" <[EMAIL PROTECTED]> wrote: > Hi again everyone, > > I can't seem to create a series of variables whose names

Re: Dumb Question About Variables

2002-03-22 Thread J. Landman Gay
Gregory Lypny wrote: > > Hi again everyone, > > I can't seem to create a series of variables whose names are > identical except for a numerical prefix, such as H1, H2, H3, ... (and > this is not an associate array). > > I tried > > repeat with i=1 to 10 >

Re: More mt stuff

2002-03-22 Thread J. Landman Gay
andu wrote: > There are only 2 things you can do: ask the provider to create 2 dummy > files in /usr/lib -> libXext.so.6and libX11.so.6 since MC only checks > for their presence, or try an other provider. Thanks Andu, you've saved me a lot of headache. I'll check with my provider. They are usua

Dumb Question About Variables

2002-03-22 Thread Gregory Lypny
Hi again everyone, I can't seem to create a series of variables whose names are identical except for a numerical prefix, such as H1, H2, H3, ... (and this is not an associate array). I tried repeat with i=1 to 10 Put stuff into (H & i) end repea

Re: More mt stuff

2002-03-22 Thread andu
"J. Landman Gay" wrote: > > I put a copy of MetaCard/Linnux in my web site cgi-bin directory along > with the echo.mt script (server is running Red Hat.) I am getting this error: > > Premature end of script headers: /usr/local/apache/cgi-bin/echo.mt > mc: error in loading shared libraries: libXe

More mt stuff

2002-03-22 Thread J. Landman Gay
I put a copy of MetaCard/Linnux in my web site cgi-bin directory along with the echo.mt script (server is running Red Hat.) I am getting this error: Premature end of script headers: /usr/local/apache/cgi-bin/echo.mt mc: error in loading shared libraries: libXext.so.6: cannot open shared object fi

Split Command

2002-03-22 Thread Gregory Lypny
Hi Everyone, I'm wondering whether the Split command can be used to create a numerical matrix from a tab-delimited field of numbers. Example: I have a field named "X" with N=1000 rows and K=10 columns for 10,000 observations in total. The data is tab-delimited, and each line ends w