Ink
Previous  Next

Description: Changes the color, priority, and positioning of the text for all subsequent Print commands.

     Syntax:

Ink <Palette> [, <Priority>, <Vertical>, <Horizontal>]

Part
Description
<Palette>
Required. This is the palette to use for the color of the text. The text color is the first non-transparent color in the palette (index 1). Valid values for <Palette> range between 0 and 3.
<Priority>
Optional. Sets the priority of the text. 0 is low priority, 1 is high priority.
<Vertical>
Optional. Valid values are 0 and 1. 0 is standard vertical orientation and 1 is flipped vertically.
<Horizontal>
Optional. Valid values are 0 and 1. 0 is standard horizontal orientation, and 1 is flipped horizontally.

Notes: The Ink command works exactly like the Color command. The default colors are:

Example:

        Ink 1, 0, 0, 1
        Print "Hello World"