[comp.sys.mac.hypercard] My first HC 2.0 tip...for what it's worth

jgsmith@watson.bcm.tmc.edu (James G. Smith) (10/01/90)

This may not be shocking to those in the know, but I thought this was worth
pointing out.

I think it was said that all the cards in a HC 2.0 stack must be the same
size.  If you don't want this to be the case, you can fake it by dynamically
changing the card size with the RECT property.  You can do something like...

on openCard
  set the rect of this card to 0,0,300,300
end openCard

While this changes the size of all the cards at the same time, you can only
look at one card at a time anyway.  Just have each card set the card size.

*