> ## Documentation Index
> Fetch the complete documentation index at: https://docs.borntocraftstudio.net/llms.txt
> Use this file to discover all available pages before exploring further.

# UI Actions

> Interface interactions for the player.

Force specific UI elements to open or clear.

## Configuration

### `clear_title_action`

Instantly removes any Title/Subtitle currently on screen.
<Info>No configuration needed.</Info>

### `open_book_action`

Forces the player to open a written book.

<ResponseField name="pages" type="List<String>">
  Content of the book pages. Supports mini-message.
</ResponseField>

<ResponseField name="author" type="String" default="Server">Author name.</ResponseField>
<ResponseField name="title" type="String" default="Info">Book title.</ResponseField>

### `open_sign_action`

Opens a sign editor GUI for client-side input.

<ResponseField name="lines" type="List<String>">
  Initial text on the sign lines.
</ResponseField>

## Example Usage

<CodeGroup>
  ```yaml Rule Book theme={null}
  open_book_action:
    title: "Rules"
    author: "Admin"
    pages:
      - "Welcome to the server!"
      - "No griefing allowed."
  ```
</CodeGroup>
