Strange button behavior

1999-08-20 Thread PEChumbley
I have noticed a certain button behavior that has caused me problems in the past. I'm not sure if it is a "bug" or a "feature." To explain how it works, I created a new stack with one card with a button named "A1". The script of button A1 is: on mouseUp beep end mouseUp When I click on

Re: Strange button behavior

1999-08-21 Thread PEChumbley
In a message dated 8/20/99 12:13:30 PM Central Daylight Time, [EMAIL PROTECTED] writes: I have noticed a certain button behavior that has caused me problems in the past. I'm not sure if it is a "bug" or a "feature." To explain how it works, I created a new stack with one card with a

Splitting up stacks

1999-08-21 Thread PEChumbley
I am currently putting the finishing touches on a MC project which we plan to put on CD-ROM. The program presents map information on Biblical sites and its size is around 10 Mb. Making it into a standalone will increase its size even more. Based on the advice shared in this list, I plan to

LockErrorDialogs

1999-08-24 Thread PEChumbley
I'd like to lock the error dialogs in a stack so the user will not see any error messages. I put some the following into a button to try it out. on mouseUp kjfghmlr end mouseUp When I click the button I get an execution error as expected. Then I typed into the Message Box: set the

Re: LockErrorDialogs

1999-08-25 Thread PEChumbley
You have another option in MetaCard, then. If you don't include the "execution error" dialog in a standalone, the error is just sent to the bit bucket ;-) Regards, Scott Aha! Thanks Scott. That's exactly what i need. Regards, Philip

Re: PC Graphics Problem

1999-08-27 Thread PEChumbley
The question is, how do I make it so graphics on the PC can have there outside transparent? Now, I have tried the inks and that works on the Mac but not on the PC. I have also tried using Photoshop to make the outside of the graphic transparent, but when I open it in MetaCard (I saved it

Message Box

1999-08-29 Thread PEChumbley
Is it possible to read the message box from a script? Philip Chumbley

Flash screen

1999-09-11 Thread PEChumbley
Following the advice I've seen in this list, I split the first few card off of my project to turn them into a standalone which will then open the rest of the stack. I have a flash screen with info on it which displays for a short time before coming to the main info page. When the user

Re: menuPick

1999-09-11 Thread PEChumbley
In a message dated 9/11/99 5:06:21 PM Central Daylight Time, [EMAIL PROTECTED] writes: I have a stack with some buttons set to cascading with several items in the button (menu) contents. I use the stack as a popup menu. Everything seems to work find. The menu pops up, I can move

Re: menuPick

1999-09-12 Thread PEChumbley
And I don't think this can be said enough: Scott Raney has the most regular stream of bug-fix releases of any tools vendor I've worked with. And the pricing is always reasonable, most of them free. The MetaCard engine is cool enough for the money, but the support has been a

Re: 2.2.5 upgrade

1999-09-12 Thread PEChumbley
Upgrading to 2.2.5 is free (isn't that nice). I remember having a similar problem in the past. With the MC's subscription program, 2.2.5 is free only if you purchased your program within the last year. Unfortunately, its been over 18 months since I bought MetaCard. Philip Chumbley

BackDrop color

1999-09-25 Thread PEChumbley
In my program I give the user the option of setting and saving the backDrop color in a Preferences file. Thus, they can set the backDrop color and the next time they start the program it will reset to that color automatically. I read the preferences file into a global from the openStack

Re: SV: BackDrop color

1999-09-27 Thread PEChumbley
How about saving the backdrop color in a custum prop in a stack that can be saved instead? Then on 'preOpenStack' you can have 'set backdrop to (the uColor of stack "soAndSo")'. The problem I'm having is not about remembering or setting the backdropcolor. The problem is that the backdrop

Re: Printing Error with newer HPs

1999-10-04 Thread PEChumbley
[EMAIL PROTECTED] writes: The question is, did the printer work correctly on your customers computers *before* running MetaCard, and is it broken now? In my case, the printer DID work correctly before trying to print from MetaCard. One of my Beta testors reloaded his driver software and

PDF thumbnails

1999-10-23 Thread PEChumbley
PDF and EPS files often have a thumbnail version of the file attached. This thumbnail is displayed by several graphics applications as a preview when the file is selected. Is it possible using MetaCard to access this thumbnail for display in the same manner? Philip Chumbley

Open printing

1999-01-04 Thread PEChumbley
I would like to open the printer properties screen to set things such as paper tray, number of copies, etc. before printing. In SuperCard I would use "open printing." It appears that in MetaCard I can do this on MacOS by using "open printing with dialog." How do I do this in Windows?

Re: trapping Minimize

1999-12-20 Thread PEChumbley
Look up the iconifyStack message. Thanks Tuviah. I had actually tried that earlier with: on iconifyStack beep end iconifyStack but it turns out another program had shut the sound off thus I thought it didn't work. I tried it again and it works fine. Thanks again. Philip This is the

Resize stack

2000-01-04 Thread PEChumbley
I have a stack with size set at 640x480. When I expand it to 800x600, the original items on the card are positioned in the topleft corner of the new expanded stack. Is there an easy way to tell the stack to expand so that the original items end up in the *topright* corner of the expanded

Re: Resize stack

2000-01-04 Thread PEChumbley
The *easy* way is to script it. Group all items on the card and try: on resizeStack set the right of group 1 to the width of this stack end resizeStack Thanks Andu. I was hoping to avoid doing that. My program has about 200 cards and with lots of items on each. I was hoping to not

Search Archives

2000-01-04 Thread PEChumbley
When I go to the MetaCard archives and click on the button to search the lists, I get a download notice. I downloaded the file but have no idea what I'm supposed to do with it. When I click on the downloaded file, it asks me to select a program to use to open it. Any help? The archives

Re: Resize stack again

2000-01-04 Thread PEChumbley
Something else I just though of is that I have a couple backgrounds which appear on many different cards. If I group the items on one card and move them to the right, the background will be moved relative to the other items on all other cards. Then if I go to one of those cards and try

Re: Standalone answer dialog

2000-01-05 Thread PEChumbley
In a message dated 1/5/00 2:42:53 AM, [EMAIL PROTECTED] writes: I have seen this somewhere before and I applogise if this has been asked before but I created a stand alone on the Win32 version of MetaCard 2.2 but it doesn't show any answer dialogs (ie. answer "Do you want to quit?" with yes or

Re: Shells and Windows registry

2000-01-13 Thread PEChumbley
Ok, I now see how to launch the installer using "open process myInstaller." My only question then is what's the best way to check if the program is already installed on the hard drive without knowing what specific folder it is stored in? Or, is there a standard place in Windows to put a

Custom cursor painting

2000-01-24 Thread PEChumbley
I imported a small gif to use as a custom cursor. However, when I tried it, I only got a white mask of the object. I looked through the list archives and found where someone had suggested drawing the cursor on a UNIX machine so it would be in the MetaCard custom format. Since I do not

Vector images

2000-01-26 Thread PEChumbley
Some time ago there were a couple posts (including one from me) about being able to import vector images into MetaCard. Has there been anything done to allow this in MC 2.3? If not, are there any plans to do so? Of perhaps vector PDF files? I am still interested because they print and

Re: open a stack

2000-02-16 Thread PEChumbley
In a message dated 02/16/2000 4:25:09 PM Central Standard Time, [EMAIL PROTECTED] writes: I am asking this question at the risk of being ridiculized by the entire list. I have created a card stack called index with a card containing 10 buttons. Each button is supposed to open a stack.

Re: large Images

2000-03-10 Thread PEChumbley
In a message dated 03/10/2000 12:06:36 PM Central Standard Time, [EMAIL PROTECTED] writes: I have a very large image, way larger than the card. I set the size to smaller than the card then group and add scroll bars. Now what I want to do is have the students scroll the image locating

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.

Focus in Mac

2000-08-04 Thread PEChumbley
I'm converting a program from the PC to run on Mac. Everything is going smoothly (great job Scott and gang!) except for one thing. To make all the buttons look the same between the two versions (PC and Mac), I set the Lookandfeel of the Mac version to "Windows." This works great except now,

Re: Duplicate Backgrounds/How to Delete

2000-08-09 Thread PEChumbley
If you are createing duplicate backgrounds and copying them to new cards, you will end up with all those backgrounds. I'm sure you are, but you might want to check to make sure you are using the Edit background palette to place background on new cards. Archives:

NT ?

2000-09-21 Thread PEChumbley
I have a MC program written in 2.2.5. A potential user contacted me to ask if it would run okay under Win NT 4.0 sp6. Has anyone had any experience with MC on NT machines? Archives: http://www.mail-archive.com/metacard%40lists.best.com/ Info: http://www.xworlds.com/metacard/mailinglist.htm