border
Usage
-- Lingo syntax
memberObjRef.border
// JavaScript syntax
memberObjRef.border;
Description
Field cast member property; indicates the width, in pixels, of the border around the specified field
cast member.
Example
This statement makes the border around the field cast member Title 10 pixels wide.
--Lingo syntax
member("Title").border = 10
// JavaScript syntax
member("Title").border = 10;
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
.
bottom
667
Need help?
Do you have a question about the DIRECTOR MX 2004-DIRECTOR SCRIPTING and is the answer not in the manual?
Questions and answers