TweetFollow Us on Twitter

Hypercard Authoring
Volume Number:10
Issue Number:3
Column Tag:Hypercard

Multimedia Authoring
With Hypercard V2.2

HyperCard’s not so colorblind anymore

By Tom Hammer, Apple Computer, Inc.

Note: Source code files accompanying article are located on MacTech CD-ROM or source code disks.

About the author

Tom manages a group at Apple. This means that he goes to meetings and otherwise avoids being anywhere near his dreaded telephone. He deserves your pity.

If you’ve been working on multimedia development on the Macintosh, chances are you’ve done some work with HyperCard. It’s a broad and accessible development environment, and now even more versatile as it can call on the services of the Open Scripting Architecture (OSA).

As rich as it is, HyperCard has lacked some things that are necessary if you’re going to effectively develop multimedia products. Support for color and needs specific to multimedia development haven’t been a part of the product and they have been either difficult to get or use. But help has arrived. Finally, HyperCard 2.2 offers us enough functionality in the box to let us do some serious work.

Color Tools

The most noticeable addition for multimedia developers is the inclusion of Color Tools, a stack with XCMDs and scripts for adding color to a stack. It has a button to install a Color Editor initialization handler into your Home stack. That adds a Color menu to your HyperCard menu bar. By choosing “Open Color Tools” from the Color menu when you have your stack open, you add the necessary resources (some strings, a custom CopyBits, and the AddColor XCMD) to your stack. Color Tools gives you a set of menus and a palette to colorize your stack, and keeps track of the color information you generate. The Color Tools palette appears when you “Open Coloring Tools” from the Color menu (Figure 1).

You can use the palette to create color objects, place pictures, and colorize normal objects. The AddColor XCMD does most of the work. It’s only 32K in size, and manages a stack’s database of color objects, including PICT resources or references to PICT files. AddColor also provides a wide range

Figure 1 - The Color Tools Palette

of visual effects for use when going from card to card or when displaying a color object from a script.

AddColor also allows you to create scripts that colorize the stack when it is running. This allows you to display pictures in response to the user's selections, and highlight buttons in color, too.

The other XCMDs and scripts in the Color Tools stack allow you to add and edit the color in your stack while you are developing it. You will create the information that the AddColor XCMD needs to colorize the card. You will be able to colorize buttons and fields, as well as color in any rectangular area you want. You can even draw color pictures!

AddColor uses information stored in the stack to know what and how to colorize the current card. AddColor gets installed into every stack that you colorize, so when you are done creating your stack, everyone else can enjoy your work.

Here’s a brief list of the calls that AddColor supports. The Color Tools stack goes into much more detail on each of these calls.

AddColor’s commands include:

"install" [,<bit depth>]
"remove"
"colorCard" [,<effect>[, <duration>]]
"colorCardLayered" [,<effect>[, <duration>]]
"colorBackground" [,<effect>[,<duration>]]
"colorRect","cd" |" bg",<rectangle>,<color>,<bevel>
"colorPict","cd" |" bg",<pictName>,<point | rectangle>,
 "t" |" o",[<effect>,[<duration>]]
"colorButton","cd" | "bg",<ID>,<color>,<bevel>
"colorField","cd" | "bg",<ID>,<color>,<bevel>
"colorPictFile","cd" | "bg",<fileName>,<point | rectangle>,
 "t" | "o"[,<effect>[,<duration>]]
"addRect","cd" | "bg",<rectangle>,<color>,<bevel>,<index>
"addPict","cd" | "bg",<pictName>,<point | rectangle>,
 "t" | "o",<index>
"addButton","cd" | "bg",<ID>,<color>,<bevel>,<index>
"addField","cd" | "bg",<ID>,<color>,<bevel>,<index>
"addPictFile","cd" | "bg",<fileName>,<point | rectangle>,
 "t" | "o",<index>
"getObjectClicked","cd" |"bg",<point> [,<type>]
"changeObjectColor","cd" | "bg",<index>,<color>
"changeObjectBounds","cd" | "bg",<index>,<rectangle>
"changeObjectTransparency","cd" | "bg",<index>,"t" | "o"
"removeObject","cd" | "bg",<index>
"getObjectBounds","cd" | "bg",<index>
"getObjectColor","cd" | "bg",<index>
"getObjectType","cd" | "bg",<index>
"getObjectBevel","cd" | "bg",<index>
"getPictName","cd" | "bg",<index>
"removeButton","cd" | "bg",<ID>
"removeField","cd" | "bg",<ID>
"moveForward","cd" | "bg",<index>
"moveBackward","cd" | "bg",<index>
"moveToFront","cd" | "bg",<index>
"moveToBack","cd" | "bg",<index>
"changeObjectBevel","cd" | "bg",<index>,<bevel>
"enable"
"disable"
"enableObject","cd" | "bg",<index>
"disableObject","cd" | "bg",<index>
"getButtonIndex","cd" | "bg",<ID>
"getFieldIndex","cd" | "bg",<ID>
"getBitsCall"
"compact","cd" | "bg"
"sort","cd" | "bg"

The four buttons at the top of the palette allow you colorize buttons or fields, add PICT resources or files to the card or background, and add color rectangles to the card or background. Below the buttons is a 256 color palette for adding color to buttons and fields or for creating colored rectangles.

You can apply a bevel to colored objects. Figure 2 shows how buttons and rectangles bevel outward, fields bevel inwards. Bevels can vary from one to six pixels and can be applied individually to buttons, fields, and colored objects.

Figure 2 - Buttons & Fields colored bevels

Double-clicking the Picture button in the Color Tools Palette allows you to place a PICT resource or file on the card or background layer. The resulting dialog (Figure 3) lets you choose a PICT resource in your stack, previews it, and allows you to place it. You can also import PICT files or PICT resources from other files into your stack. It also lets you place PICT files without storing them in your stack. Instead it keeps a reference, and reads the file when it needs to load the picture.

Figure 3 - Previewing and placing PICTs

The AddColor XCMD maintains a database of color objects and colorizing information, and stores it in the stack. The other XCMDs in the Color Tools stack provide the editing and layering of the color objects and the palette. Assigning color to a button, for example, does not alter a property of that button. Rather, it adds a corresponding color object to AddColor’s database with that button’s id number.

Color Tools drives the AddColor XCMD with scripts. It also puts handlers into your scripts to call AddColor to update the screen based on its database of color objects. When you assign any color to a stack, whether it's coloring a button or field or adding a PICT, the Color Tools will add openStack, closeStack, openCard, and closeCard handlers to the stack script. These handlers script the AddColor XCMD to display color objects and control AddColor’s visual effects.

For example, adding color and a simple effect to a new stack generated this:

on openCard
  Send colorMe to this card
  pass openCard
end openCard

on colorMe
  AddColor colorCard,rakeHorizClose,30
end colorMe

on openStack
  AddColor install
  pass openStack
end openStack

on closeStack
  AddColor remove
  pass closeStack
end closeStack

There are 22 visual effects, and you can display or remove a color object without moving from card to card. Wipes, dissolves, combs, rakes, iris effects and rectangle zooms can all be called from scripts. AddColor’s effects include:

fromLeft
fromRight
fromTop
fromBottom
fromTopLeft
fromTopRight
fromBottomLeft
fromBottomRight
dissolve
irisOpen
irisClose
checkerBoardOpen
checkerBoardClose
circleCheckerOpen
circleCheckerClose
barnDoorOpen
barnDoorClose
combVertical
combHorizontal
rectOpen
rectClose
venetianBlindsHorizontal
venetianBlindsVertical
rakeHorizOpen
rakeHorizClose
rakeVertOpen
rakeVertClose

Though the Color Tools take care of the scripting for you, the full functionality of the AddColor XCMD is available to you. Appending an addRect, addPict, addButton, addField, or addPictFile parameter to AddColor adds the corresponding object to AddColor’s database for that card or background. Similarly, colorRect, colorPict, colorButton, colorField, and colorPictFile temporarily draws the corresponding object. It gets drawn in the topmost layer, and remains there until you ask AddColor to refresh the screen. It does so with only the objects assigned to that card or background. You control the opacity or transparency of PICTs, the bevel of objects, RGB values for colored objects, the layer (card of background) to draw in, and the visual effect to apply when drawing the object.

Here is a sample script that draws a picture on the card layer of the stack at a specific location. It will be opaque and will draw with a visual effect that wipes the screen from the top left corner to the bottom right corner at a speed of 30 ticks.

on mouseUp
 put the selectedText of me into whichPict
 set cursor to watch
 lock screen
 AddColor "colorPict","cd",whichPict,"20,30","o", ¬
 "fromTopLeft","30"
end mouseUp

Another example shows coloring a button in an idle loop with random colors, using a visual effect and a bevel of 3 pixels:

on idle
 global RGBvalue
 put random(65535) -- the maximum value for R, G, or B
 lock screen
 AddColor "colorButton","cd",the id of cd button ¬
 "Chameleon", RGBvalue,"3"
 pass idle
end idle

QuickTime Toolkit

Claris put the QuickTime Tools in HyperCard 2.1. HyperCard 2.2 provides the same tool, complete with bug fixes to both the stack and Movie XCMD. The QuickTime Tools stack uses an XCMD to control the playing of QuickTime movies in a stack. QuickTime Tools provides an interface to the Movie XCMD and will write button scripts for you to control it (Figure 4).

The Movie XCMD provides thorough control over movie playback. It supports Play, Pause, Reverse, StepFwd, StepRev, PreRoll, CopyFrame, ShowPoster and MovieIdle, as well as all QuickTime movie properties and window parameters. It also supports movie messages such as mouseDownInMovie and MovieVolumeChanged. QuickTime Tools also provides the MovieInfo XFCN to get characteristics of a movie file such as its rect, preferred volume, preferred rate, duration, and preview time.

Figure 4 - The QuickTime Tools

Interface Enhancements

HyperCard now supports a wider variety of standard Macintosh interface elements, like standard and default buttons. It also supports popup menus as a new button type. Buttons also have a new family property. Radio buttons of the same family no longer require scripting to be mutually exclusive as members of the same family now know about each other. You can enable or disable buttons, so you no longer have to mess around with special gray fonts to show a disabled button. The following handler shows two different ways to control a button’s enabled property:

on mouseUp
 global hasPaidFee
 if hasPaidFee is false then disable card button "Show Movie"
 else set the enabled of card button "Show Movie" to true
end mouseUp

Fields can also behave as lists if you set a field’s lockText, dontWrap, and autoWrap properties to true. Setting multipleLines to true will allow the list field to support contiguous selections in the field. You can set these options from a script or the Field Info dialog.

Stand-alone Builder

Claris responded to developers’ requests for a HyperCard standalone runtime with the HyperCard player, which now ships with all Macintosh CPUs in the United States and with the HyperCard Player Toolkit. HyperCard 2.2 significantly improves on this notion by providing a new Save As capability. HyperCard can use stack translators to let you save your stacks in a variety of ways.

HyperCard 2.2 ships with the StackToApp stack translator. It embeds the HyperCard 2.2 Player in your stack and lets you control attributes such as the resulting file’s signature and version strings. Now you can save one stack as an application and others as files to be opened only by that application.

Apple has worked with Kaleida Labs to develop another stack translator to save your stacks as ScriptX files. Kaleida will ship this translator with their ScriptX Software Developer Kit when it ships later this year. Your stacks will then run as ScriptX files on any platform that has a ScriptX runtime. Look for more information from both Apple and Kaleida when ScriptX ships.

A Word About Licensing

One set of complaints that multimedia developers have had with the HyperCard Player, and other add on products such as some color XCMDs, have to do with licensing. Apple has listened and tried to come provide the best possible answer. Apple includes a license to distribute the HyperCard runtime embedded in standalone applications, the AddColor XCMD, and the Movie XCMD in the price of the product. When you buy HyperCard, you also buy the right to distribute your applications using the runtime and these externals royalty-free. With the agreement already in the box, you don’t even have to exchange licensing agreements with Apple.

For a limited time

Apple is bundling ADDmotion™II from MotionWorks with HyperCard 2.2. This full-featured animation package allows you to do path-base animation using sprites. It includes a full-color paint editor and will install runtime XCMDs into a stack as well as its animation data and resources. You also get a license to distribute the ADDmotion™II runtime XCMDs with your stacks, royalty-free.

HyperCard offers considerable additional capability in this new release that make it much easier to do multimedia development. HyperCard 2.2 comes with the tools you need to deliver effective multimedia products.

 

Community Search:
MacTech Search:

Software Updates via MacUpdate

Latest Forum Discussions

See All

Whitethorn Games combines two completely...
If you have ever gone fishing then you know that it is a lesson in patience, sitting around waiting for a bite that may never come. Well, that's because you have been doing it wrong, since as Whitehorn Games now demonstrates in new release Skate... | Read more »
Call of Duty Warzone is a Waiting Simula...
It's always fun when a splashy multiplayer game comes to mobile because they are few and far between, so I was excited to see the notification about Call of Duty: Warzone Mobile (finally) launching last week and wanted to try it out. As someone who... | Read more »
Albion Online introduces some massive ne...
Sandbox Interactive has announced an upcoming update to its flagship MMORPG Albion Online, containing massive updates to its existing guild Vs guild systems. Someone clearly rewatched the Helms Deep battle in Lord of the Rings and spent the next... | Read more »
Chucklefish announces launch date of the...
Chucklefish, the indie London-based team we probably all know from developing Terraria or their stint publishing Stardew Valley, has revealed the mobile release date for roguelike deck-builder Wildfrost. Developed by Gaziter and Deadpan Games, the... | Read more »
Netmarble opens pre-registration for act...
It has been close to three years since Netmarble announced they would be adapting the smash series Solo Leveling into a video game, and at last, they have announced the opening of pre-orders for Solo Leveling: Arise. [Read more] | Read more »
PUBG Mobile celebrates sixth anniversary...
For the past six years, PUBG Mobile has been one of the most popular shooters you can play in the palm of your hand, and Krafton is celebrating this milestone and many years of ups by teaming up with hit music man JVKE to create a special song for... | Read more »
ASTRA: Knights of Veda refuse to pump th...
In perhaps the most recent example of being incredibly eager, ASTRA: Knights of Veda has dropped its second collaboration with South Korean boyband Seventeen, named so as it consists of exactly thirteen members and a video collaboration with Lee... | Read more »
Collect all your cats and caterpillars a...
If you are growing tired of trying to build a town with your phone by using it as a tiny, ineffectual shover then fear no longer, as Independent Arts Software has announced the upcoming release of Construction Simulator 4, from the critically... | Read more »
Backbone complete its lineup of 2nd Gene...
With all the ports of big AAA games that have been coming to mobile, it is becoming more convenient than ever to own a good controller, and to help with this Backbone has announced the completion of their 2nd generation product lineup with their... | Read more »
Zenless Zone Zero opens entries for its...
miHoYo, aka HoYoverse, has become such a big name in mobile gaming that it's hard to believe that arguably their flagship title, Genshin Impact, is only three and a half years old. Now, they continue the road to the next title in their world, with... | Read more »

Price Scanner via MacPrices.net

Deal Alert! B&H Photo has Apple’s 14-inch...
B&H Photo has new Gray and Black 14″ M3, M3 Pro, and M3 Max MacBook Pros on sale for $200-$300 off MSRP, starting at only $1399. B&H offers free 1-2 day delivery to most US addresses: – 14″ 8... Read more
Department Of Justice Sets Sights On Apple In...
NEWS – The ball has finally dropped on the big Apple. The ball (metaphorically speaking) — an antitrust lawsuit filed in the U.S. on March 21 by the Department of Justice (DOJ) — came down following... Read more
New 13-inch M3 MacBook Air on sale for $999,...
Amazon has Apple’s new 13″ M3 MacBook Air on sale for $100 off MSRP for the first time, now just $999 shipped. Shipping is free: – 13″ MacBook Air (8GB RAM/256GB SSD/Space Gray): $999 $100 off MSRP... Read more
Amazon has Apple’s 9th-generation WiFi iPads...
Amazon has Apple’s 9th generation 10.2″ WiFi iPads on sale for $80-$100 off MSRP, starting only $249. Their prices are the lowest available for new iPads anywhere: – 10″ 64GB WiFi iPad (Space Gray or... Read more
Discounted 14-inch M3 MacBook Pros with 16GB...
Apple retailer Expercom has 14″ MacBook Pros with M3 CPUs and 16GB of standard memory discounted by up to $120 off Apple’s MSRP: – 14″ M3 MacBook Pro (16GB RAM/256GB SSD): $1691.06 $108 off MSRP – 14... Read more
Clearance 15-inch M2 MacBook Airs on sale for...
B&H Photo has Apple’s 15″ MacBook Airs with M2 CPUs (8GB RAM/256GB SSD) in stock today and on clearance sale for $999 in all four colors. Free 1-2 delivery is available to most US addresses.... Read more
Clearance 13-inch M1 MacBook Airs drop to onl...
B&H has Apple’s base 13″ M1 MacBook Air (Space Gray, Silver, & Gold) in stock and on clearance sale today for $300 off MSRP, only $699. Free 1-2 day shipping is available to most addresses in... Read more
New promo at Visible: Buy a new iPhone, get $...
Switch to Visible, and buy a new iPhone, and Visible will take $10 off their monthly Visible+ service for 24 months. Visible+ is normally $45 per month. With this promotion, the cost of Visible+ is... Read more
B&H has Apple’s 13-inch M2 MacBook Airs o...
B&H Photo has 13″ MacBook Airs with M2 CPUs and 256GB of storage in stock and on sale for $100 off Apple’s new MSRP, only $899. Free 1-2 day delivery is available to most US addresses. Their... Read more
Take advantage of Apple’s steep discounts on...
Apple has a full line of 16″ M3 Pro and M3 Max MacBook Pros available, Certified Refurbished, starting at $2119 and ranging up to $600 off MSRP. Each model features a new outer case, shipping is free... Read more

Jobs Board

Medical Assistant - Surgical Oncology- *Apple...
Medical Assistant - Surgical Oncology- Apple Hill Location: WellSpan Medical Group, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Apply Read more
Omnichannel Associate - *Apple* Blossom Mal...
Omnichannel Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Cashier - *Apple* Blossom Mall - JCPenney (...
Cashier - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Blossom Mall Read more
Operations Associate - *Apple* Blossom Mall...
Operations Associate - Apple Blossom Mall Location:Winchester, VA, United States (https://jobs.jcp.com/jobs/location/191170/winchester-va-united-states) - Apple Read more
Business Analyst | *Apple* Pay - Banco Popu...
Business Analyst | Apple PayApply now " Apply now + Apply Now + Start applying with LinkedIn Start + Please wait Date:Mar 19, 2024 Location: San Juan-Cupey, PR Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.