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

The secrets of Penacony might soon come...
Version 2.2 of Honkai: Star Rail is on the horizon and brings the culmination of the Penacony adventure after quite the escalation in the latest story quests. To help you through this new expansion is the introduction of two powerful new... | Read more »
The Legend of Heroes: Trails of Cold Ste...
I adore game series that have connecting lore and stories, which of course means the Legend of Heroes is very dear to me, Trails lore has been building for two decades. Excitedly, the next stage is upon us as Userjoy has announced the upcoming... | Read more »
Go from lowly lizard to wicked Wyvern in...
Do you like questing, and do you like dragons? If not then boy is this not the announcement for you, as Loongcheer Game has unveiled Quest Dragon: Idle Mobile Game. Yes, it is amazing Square Enix hasn’t sued them for copyright infringement, but... | Read more »
Aether Gazer unveils Chapter 16 of its m...
After a bit of maintenance, Aether Gazer has released Chapter 16 of its main storyline, titled Night Parade of the Beasts. This big update brings a new character, a special outfit, some special limited-time events, and, of course, an engaging... | Read more »
Challenge those pesky wyverns to a dance...
After recently having you do battle against your foes by wildly flailing Hello Kitty and friends at them, GungHo Online has whipped out another surprising collaboration for Puzzle & Dragons. It is now time to beat your opponents by cha-cha... | Read more »
Pack a magnifying glass and practice you...
Somehow it has already been a year since Torchlight: Infinite launched, and XD Games is celebrating by blending in what sounds like a truly fantastic new update. Fans of Cthulhu rejoice, as Whispering Mist brings some horror elements, and tests... | Read more »
Summon your guild and prepare for war in...
Netmarble is making some pretty big moves with their latest update for Seven Knights Idle Adventure, with a bunch of interesting additions. Two new heroes enter the battle, there are events and bosses abound, and perhaps most interesting, a huge... | Read more »
Make the passage of time your plaything...
While some of us are still waiting for a chance to get our hands on Ash Prime - yes, don’t remind me I could currently buy him this month I’m barely hanging on - Digital Extremes has announced its next anticipated Prime Form for Warframe. Starting... | Read more »
If you can find it and fit through the d...
The holy trinity of amazing company names have come together, to release their equally amazing and adorable mobile game, Hamster Inn. Published by HyperBeard Games, and co-developed by Mum Not Proud and Little Sasquatch Studios, it's time to... | Read more »
Amikin Survival opens for pre-orders on...
Join me on the wonderful trip down the inspiration rabbit hole; much as Palworld seemingly “borrowed” many aspects from the hit Pokemon franchise, it is time for the heavily armed animal survival to also spawn some illegitimate children as Helio... | Read more »

Price Scanner via MacPrices.net

Apple Magic Keyboards for iPads are on sale f...
Amazon has Apple Magic Keyboards for iPads on sale today for up to $70 off MSRP, shipping included: – Magic Keyboard for 10th-generation Apple iPad: $199, save $50 – Magic Keyboard for 11″ iPad Pro/... Read more
Apple’s 13-inch M2 MacBook Airs return to rec...
Apple retailers have 13″ MacBook Airs with M2 CPUs in stock and on sale this weekend starting at only $849 in Space Gray, Silver, Starlight, and Midnight colors. These are the lowest prices currently... Read more
Best Buy is clearing out iPad Airs for up to...
In advance of next week’s probably release of new and updated iPad Airs, Best Buy has 10.9″ M1 WiFi iPad Airs on record-low sale prices for up to $200 off Apple’s MSRP, starting at $399. Sale prices... Read more
Every version of Apple Pencil is on sale toda...
Best Buy has all Apple Pencils on sale today for $79, ranging up to 39% off MSRP for some models. Sale prices for online orders only, in-store prices may vary. Order online and choose free shipping... Read more
Sunday Sale: Apple Studio Display with Standa...
Amazon has the standard-glass Apple Studio Display on sale for $300 off MSRP for a limited time. Shipping is free: – Studio Display (Standard glass): $1299.97 $300 off MSRP For the latest prices and... Read more
Apple is offering significant discounts on 16...
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
Apple HomePods on sale for $30-$50 off MSRP t...
Best Buy is offering a $30-$50 discount on Apple HomePods this weekend on their online store. The HomePod mini is on sale for $69.99, $30 off MSRP, while Best Buy has the full-size HomePod on sale... Read more
Limited-time sale: 13-inch M3 MacBook Airs fo...
Amazon has the base 13″ M3 MacBook Air (8GB/256GB) in stock and on sale for a limited time for $989 shipped. That’s $110 off MSRP, and it’s the lowest price we’ve seen so far for an M3-powered... Read more
13-inch M2 MacBook Airs in stock today at App...
Apple has 13″ M2 MacBook Airs available for only $849 today in their Certified Refurbished store. These are the cheapest M2-powered MacBooks for sale at Apple. Apple’s one-year warranty is included,... Read more
New today at Apple: Series 9 Watches availabl...
Apple is now offering Certified Refurbished Apple Watch Series 9 models on their online store for up to $80 off MSRP, starting at $339. Each Watch includes Apple’s standard one-year warranty, a new... Read more

Jobs Board

Licensed Practical Nurse - Womens Imaging *A...
Licensed Practical Nurse - Womens Imaging Apple Hill - PRN Location: York Hospital, York, PA Schedule: PRN/Per Diem Sign-On Bonus Eligible Remote/Hybrid Regular Read more
DMR Technician - *Apple* /iOS Systems - Haml...
…relevant point-of-need technology self-help aids are available as appropriate. ** Apple Systems Administration** **:** Develops solutions for supporting, deploying, Read more
Operating Room Assistant - *Apple* Hill Sur...
Operating Room Assistant - Apple Hill Surgical Center - Day Location: WellSpan Health, York, PA Schedule: Full Time Sign-On Bonus Eligible Remote/Hybrid Regular Read more
Solutions Engineer - *Apple* - SHI (United...
**Job Summary** An Apple Solution Engineer's primary role is tosupport SHI customers in their efforts to select, deploy, and manage Apple operating systems and Read more
DMR Technician - *Apple* /iOS Systems - Haml...
…relevant point-of-need technology self-help aids are available as appropriate. ** Apple Systems Administration** **:** Develops solutions for supporting, deploying, Read more
All contents are Copyright 1984-2011 by Xplain Corporation. All rights reserved. Theme designed by Icreon.