Scripting/Squirrel/Client Events/GUI::ElementDrag
This wiki is using an old backup from 2020
Some information may be old/missing
.
Syntax
player - The instance.
Arguments
- player
- GUIButton
Example
Test<-
{
Hello = null
}
function Script::ScriptLoad()
{
Test.Hello = GUIButton(VectorScreen(400,380), VectorScreen(200, 22), Colour(75,75,75), "Press Here", GUI_FLAG_BORDER | GUI_FLAG_VISIBLE);
}
function GUI::ElementDrag(element, mouseX, mouseY)
{
if (element == Test.Hello)
{
Console.Print("Hello. welcome to VCMP")
}
}