Re: Palette windows

2000-04-05 Thread Scott Rossi
Recently, Craig Spooner wrote: > Is there no way to create a *resizable* floating window? Sure -- here's a quick and dirty option... Create a graphic suitably sized for dragging the bottom right corner of the palette. Place the following script in the grc. on mouseDown global gAllowResize

Palette windows

2000-04-05 Thread Craig Spooner
Is there no way to create a *resizable* floating window? This is really what my application calls for, yet none of the stack modes seem to support this. I'm assuming it's because a palette-type window isn't modifiable. Does anyone know of a workaround? Many thanks, Craig Archives: http://

Re: Statistics on MC

2000-04-05 Thread diskot123
try http://www.metacard.com/ideh.html Archives: http://www.mail-archive.com/metacard%40lists.best.com/ Info: http://www.xworlds.com/metacard/mailinglist.htm Please send bug reports to <[EMAIL PROTECTED]>, not this list.

Re: GURLGURL

2000-04-05 Thread Craig Spooner
Sivakatirswami, Here's a handler in the stack script of my current project: on launchInternetApp tAddress switch the platform case "MacOS" send tAddress to program "Finder" with "GURLGURL" if the result is not empty then -- if there's an error -- report error to user (I've

Statistics on MC

2000-04-05 Thread Craig Spooner
Does anyone have some figures about MC's "vital statistics?" I'll be giving a presentation about MetaCard later this month and I'd like to be able to talk about the number of commands, functions, object properties, etc. in MetaTalk. To take the a step further, I'd like to compare the size of

Re: Script Editing in Browse Mode

2000-04-05 Thread Sivakatirswami
Dave said: > Hi > > You need to pass the mouseUp if the condition doesn't apply. > > on mouseup > if optionkey () = "down" then > edit script of the target > else > pass mouseUp > end if > end mouseUp > > Cheers > Dave Cragg yes, of course that works, but you have to put it into every object.

Re: GURLGURL

2000-04-05 Thread Sivakatirswami
Aloha, Craig: ( am posting this to the list due to other questions below) Well I did find the article for the thread you started with "Load URL' but I was unable to find the articles you referenced at the start when you said "Thanks to Hugh senior and others for the examples. . ." so, I was looki

min/max stack sizes

2000-04-05 Thread Craig Spooner
I've noticed something strange regarding minWidth and maxWidth stack settings. On the Mac, a stack with both minWidth and maxWidth set to, say, 260 pixels will change to 259 pixels if you resize the window manually, but will snap back to 260 if you click the zoom box. I see there's a note abo

Phlebotomy for MC

2000-04-05 Thread Mary Bull
I did find the utility I whacked together last spring. It was written for Windows only, but adding the lines for other platforms (for the file type) should be fairly straight forward. And I must admit it has a very hedonistic name to differentiate it from the other "tool"s I was working on at the

Re: Phlebotomy for MC?

2000-04-05 Thread Mary Bull
Hi, Craig. I wrote one about a year ago. I'll dig around and see if it survived the massive hard drive(s) failure (yes, plural) of last spring. It worked well on Windows 95, but I hadn't used it on the Mac yet. Mary Bull [EMAIL PROTECTED] - Craig Spooner wrote: > > Does anyone know of a sc

Re: File path

2000-04-05 Thread PEChumbley
Thanks everyone! Philip Chumbley Archives: http://www.mail-archive.com/metacard%40lists.best.com/ Info: http://www.xworlds.com/metacard/mailinglist.htm Please send bug reports to <[EMAIL PROTECTED]>, not this list.

RE: Opening MC files without creator type

2000-04-05 Thread David Cramer
> Aloha, > > I downloaded all kinds of stacks from contributors, to "tear apart" and > study. . . mcmail.mc and many others. . .they arrived on my MAC with no icon > and I cannot open them in MC. . .what do we need to do? Open in RESEDIT and > assign a type? but then this is not "an easi

Re: Phlebotomy for MC?

2000-04-05 Thread David Bovill
What does it do... I've quite a few script processing routines? > From: Craig Spooner <[EMAIL PROTECTED]> > Reply-To: [EMAIL PROTECTED] > Date: Wed, 5 Apr 2000 10:10:20 -0600 > To: [EMAIL PROTECTED] > Subject: Phlebotomy for MC? > > Does anyone know of a script extracting utility like John Perry

Re: File path

2000-04-05 Thread Phil Davis
Try this: open file "../B1/theText.txt" The first element of the relative path (the part that appears to the left of the first "/") must be one of these (if there are other possibilities I don't know what they are): - the name a file in the current directory (in which case there's no slash

Re: File path

2000-04-05 Thread Kevin Miller
On 5/4/00 4:32 pm, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > If I have a folder (A1) containing two folders (B1 & B2) and my MC program in > folder B1 wants to look for a file in folder B2, can a *relative* path be > written to go from folder B1 to B2? > > For example, if my MC program "myP

Re: File path

2000-04-05 Thread Richard Gaskin
On 4/5/00 8:32 AM, [EMAIL PROTECTED] at [EMAIL PROTECTED] wrote: > > If I have a folder (A1) containing two folders (B1 & B2) and my MC program in > folder B1 wants to look for a file in folder B2, can a *relative* path be > written to go from folder B1 to B2? > > For example, if my MC program

Phlebotomy for MC?

2000-04-05 Thread Craig Spooner
Does anyone know of a script extracting utility like John Perry's SC Phlebotomy project for MetaCard? I was starting down the road of writing my own, but I figured I should ask to see if I'm re-inventing the wheel. Thanks, Craig /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ \/\/\/\/\/\/\/\/\/\/\/\/\/\/\

Re: Using Put to Set Image File

2000-04-05 Thread Dave Cragg
At 4:20 AM -1000 5/4/2000, Sivakatirswami wrote: >In the Concepts stack it says we can "also use images as containers and put >data in them > >put myGifdata into image "someImage" > >this doesn't seem to be the same as setting the fileName property of the >image? > >I tried this, as a test to chan

File path

2000-04-05 Thread PEChumbley
If I have a folder (A1) containing two folders (B1 & B2) and my MC program in folder B1 wants to look for a file in folder B2, can a *relative* path be written to go from folder B1 to B2? For example, if my MC program "myProgram.exe" is in file B1 and I want to read a text file "theText.txt"

Re: Using Put to Set Image File

2000-04-05 Thread Kevin Miller
On 5/4/00 3:20 pm, Sivakatirswami <[EMAIL PROTECTED]> wrote: > In the Concepts stack it says we can "also use images as containers and put > data in them > > put myGifdata into image "someImage" > > this doesn't seem to be the same as setting the fileName property of the > image? > > I tried t

Re: Script Editing in Browse Mode

2000-04-05 Thread Kevin Miller
On 5/4/00 2:52 pm, Sivakatirswami <[EMAIL PROTECTED]> wrote: > I would like the run time facility to edit object scripts while in browse > mode ala supercards's option command mouseover any object and viola, script > editor opens. > > I tried putting this script into a button called "frontScript

Re: Script Editing in Browse Mode

2000-04-05 Thread Dave Cragg
At 3:52 AM -1000 5/4/2000, Sivakatirswami wrote: >I would like the run time facility to edit object scripts while in browse >mode ala supercards's option command mouseover any object and viola, script >editor opens. > >I tried putting this script into a button called "frontScript": > >on mouseup >

Using Put to Set Image File

2000-04-05 Thread Sivakatirswami
In the Concepts stack it says we can "also use images as containers and put data in them put myGifdata into image "someImage" this doesn't seem to be the same as setting the fileName property of the image? I tried this, as a test to change the image by script put "ht/Images/theGif.GIF" int

Re: Porting messages

2000-04-05 Thread Sjoerd Op 't Land
Phil Davis wrote on [EMAIL PROTECTED]: > Since no one else responded... > > You're right - it's a small thing. The "send" command in the stack > script is malformed for your purposes. par1, par2 and par3 are names of > containers, but MC thinks their names are the parameter values. To make > it

Script Editing in Browse Mode

2000-04-05 Thread Sivakatirswami
I would like the run time facility to edit object scripts while in browse mode ala supercards's option command mouseover any object and viola, script editor opens. I tried putting this script into a button called "frontScript": on mouseup if optionkey () = "down" then edit script of the ta

Re: MetaCard survey time!

2000-04-05 Thread Richard Gaskin
Thank you for posting the survey. How many years have you been doing this? Great to see this level of engagement with your customer base. As with your lightspeed support, with your efforts MetaCard Corp. continually raises the bar for software vendors. -- Richard Gaskin Fourth World Multi