flipH

Usage

-- Lingo syntax
spriteObjRef.flipH

// JavaScript syntax
spriteObjRef.flipH;

Description

Sprite property; indicates whether a sprite's image has been flipped horizontally on the Stage (TRUE) or not (FALSE). Read-only.

The image itself is flipped around its registration point.

This means any rotation or skew remains constant; only the image data itself is flipped.

Example

This statement displays the flipH of sprite 5:

-- Lingo syntax
put(sprite(5).flipH)

// JavaScript syntax
put(sprite(5).flipH);

See also

flipV, rotation, skew, Sprite