Notification - Debug

Revision as of 16:47, 14 May 2012 by imported>Fg109 (→‎Notes: clarified notes)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Member of: Debug Script

Displays a notification in the top-left corner of the screen.

SyntaxEdit

Function Notification(string asNotificationText) native global

ParametersEdit

  • asNotificationText: The text that should be displayed in the top-left corner.

Return ValueEdit

None

ExamplesEdit

; Display the class 'hello world' notification
Debug.Notification("Hello, world!")

NotesEdit

  • If asNotificationText contains "<" and ">", then the symbols and everything between them will not be displayed.
    • If there is only "<" and no ">", then "<" and everything behind it will be truncated.
    • If there is no "<" and only ">", then the notification displays as normal.

See AlsoEdit