AltTitle Class (RWE.GameOn.Core.Extensions)

Class
Alttitle

Usage:

Represents an object’s alt-title, visible on hovering over the object.

Alttitle

Properties:

  • set
    String – A string of text to be represented within the alt-title.
alttitle.set = "Click Me!";
  • visibility
    Variable – Determines whether the UI Element is visible or not.
alttitle1.Visibility = visible;
alttitle1.Visibility = invisible;

Example:

including GameOnExt.LXCore;

OverlayExtensionsRegion.create(new(extensionaccesspoint))
        {
            icon.visibility="visible";         //visible for icon, hidden for text button
            icon.set="/icon.png";              //icon for the button
            alttitle.set="Click Me!";          //hover over tooltip text for button
        }
Menu