bottom

Usage

-- Lingo syntax
spriteObjRef.bottom

// JavaScript syntax
spriteObjRef.bottom;

Description

Sprite property; specifies the bottom vertical coordinate of the bounding rectangle of a sprite. Read/write.

Example

This statement assigns the vertical coordinate of the bottom of the sprite numbered (i + 1) to the variable named lowest.

-- Lingo syntax
lowest = sprite(i + 1).bottom

// JavaScript syntax
var lowest = sprite(i + 1).bottom;

See also

Sprite