OnSelectMouseRButtonDown Event

Definition

function OnSelectMouseRButtonDown()

end

Description

This event is specific to the button object. Suppose a script that has an OnSelectMouseRButtonDown() event is attached to a button object. In this case, the OnSelectMouseRButtonDown() event is called once when the mouse cursor is on the button and the user right clicks.

Example

function OnSelectMouseRButtonDown()
    PrintConsole("\nOnSelectMouseRButtonDown() Event was called")
end
adminOnSelectMouseRButtonDown Event