Note: This is a work in progress and many formatting issues have been fixed. Read more about the project on the home page.
The number
property returns the number of a button, field, card, background, or window. (You cannot set
a number.) The number of a button or field determines whether it’s on top of other buttons and fields within the same layer (background or card) that contains it. Card objects are always on top of background objects.
To change the number of a button or field, select it and choose Send Farther and Bring Closer from the Objects menu, or change its partNumber
property.
The number of a window reflects its front to back order (similar to the number of a button or field). You can change a window's number by bringing it to the front (for example, by clicking it or by using the show
command), or by covering it with other windows.
The number of a card is its position within a stack. The number of a background is the order in which the background was created. To change the number of a card or background, you must use the sort command or cut cards and paste them into different positions within the stack.
HyperTalk Definition
An expression that identifies a button by name, number, or id, using one of the following forms:
For example:
When used inside a button script: me
When a button receives a message: [the] target
A button can also be referred to as a part when you’re talking about its position among all buttons and fields within the same card or background.
AppleScript Definition
An expression that identifies a button by name, number, or id, using the same forms as HyperTalk except that “background” must be used in place of “bkgnd”.
An expression that identifies a field by name, number, or id using one of the following forms (in AppleScript, use “background” in place of “bkgnd”):
-- name
card field id 3894
card field "My Notes"
card field 1
first card field
background field 3 of card 1
An expression that identifies a card by name, number, or id using one of the following forms (in AppleScript, use “background” in place of “bkgnd”): For example: When used inside a card script in HyperTalk: When a card receives a message: See also: A HyperTalk expression that identifies a background by name, number, or id, using one of the following forms: For example: From within a background script, the term When a background receives a the message See also: One of HyperCard’s built-in windows, the window containing the current stack (called the card window), or any other window containing a stack, as follows: Note: If a window containing a stack is inactive, you can set only its Important: External windows can’t be substituted for the card
me
[the] target
button
and field
bkgnd
me
refers to that background.[the] target
, that message is referring to the background.card
window
location
and visible
properties.window
placeholder (see the externalWindow
placeHolder).