Holograms_InsertLine()

Insert a line into the middle of a hologram

Full Function

Holograms_InsertLine(id: string, line_after_new: integer, new_line: string)

Parameters

Name
Type
Description

id

text/string

ID of target hologram

line_after_new

integer/number

The line number of the new line

new_line

text/string

The text to be inserted

Return Values & Meanings

Usage

set {_insert} to Holograms_InsertLine("hologram_id", 2, "This will be the new SECOND line")
if {_insert} is 1:
    send "That hologram does not have that many lines!"

Last updated