Close_Keyboard_Area
Syntax: _Close_Keyboard_Area(event)
Purpose: Creates a gray area at the bottom of the screen to give users a visual cue to close the on-screen keyboard when there's no active text input. This function is automatically enabled at the start of each form and is managed by Lu-C.
Create_Keys_Landscape
Syntax: _Create_Keys_Landscape(visible_at_start, function_to_run_when_typing, function_run_at_keyboard_closed, Forced_a)
Purpose: Creates a virtual keyboard in landscape orientation.
Get_Device_Id
Syntax: _Get_Device_Id()
Purpose: Provides the identifier of the input device that triggered the key event. This is particularly useful in multiplayer games to distinguish between inputs from different players.
Get_Key_Id
Syntax: _Get_Key_Id()
Purpose: Returns the unique string identifier of the key that was pressed or released.
Get_Key_State
Syntax: _Get_Key_State()
Purpose: Returns the state of the key that was pressed, either "up" or "down".
Get_Mouse_X
Syntax: _Get_Mouse_X()
Purpose: Returns the mouse cursor's current X-coordinate (horizontal position) on the screen, measured in content coordinates.
Get_Mouse_XY
Syntax: _Get_Mouse_XY()
Purpose: Returns both the mouse cursor's current X-coordinate (horizontal position) and Y-coordinate (vertical position) on the screen, measured in content coordinates.
Get_Mouse_Y
Syntax: _Get_Mouse_Y()
Purpose: Returns the mouse cursor's current Y-coordinate (vertical position) on the screen, measured in content coordinates.
Get_Native_Key_Code
Syntax: _Get_Native_Key_Code()
Purpose: Provides the unique integer ID assigned to the key by the operating system.
Is_Alt_Key_Pressed
Syntax: _Is_Alt_Key_Pressed()
Purpose: Indicates whether the Alt key was pressed at the time of the key event.
Is_Command_Key_Pressed
Syntax: _Is_Command_Key_Pressed()
Purpose: Indicates whether the Command (⌘) key on macOS or the Windows key on Windows systems was pressed at the time of the key event.
Is_Ctrl_Key_Pressed
Syntax: _Is_Ctrl_Key_Pressed()
Purpose: Indicates whether the Control key was pressed at the time of the key event.
Is_Mouse_MiddleButton_Pressed
Syntax: _Is_Mouse_MiddleButton_Pressed()
Purpose: Indicates whether the mouse's middle button was pressed at the time of the mouse event.
Is_Mouse_PrimaryButton_Pressed
Syntax: _Is_Mouse_PrimaryButton_Pressed()
Purpose: Indicates whether the mouse's primary button was pressed at the time of the mouse event.
Is_Mouse_SecondaryButton_Pressed
Syntax: _Is_Mouse_SecondaryButton_Pressed()
Purpose: Indicates whether the mouse's secondary button was pressed at the time of the mouse event.
Is_Shift_Key_Pressed
Syntax: _Is_Shift_Key_Pressed()
Purpose: Indicates whether the Shift key was pressed or the Caps Lock key was active at the time of the key event.
Paparazzi
Syntax: _Paparazzi(event)
Purpose: Captures screenshots of your application for publishing and promotional purposes.
Select_Letter
Syntax: _Select_Letter(Titulo_to_Select, Titulo_Format_RGBA, Titulo_FontSize, Titulo_FontBold, String_Var_for_Result, Temporary_Hide_Object_Matches, Image_for_Cancel_Icon, Function_to_run_after_selection, Optional_Function_to_execute_if_cancel, Bottom_Image))
Purpose:
Displays the letters A-Z for selection. The selected letter is
stored in the String_Var_for_Result
variable.
Turn_Keyboard_Landscape
Syntax: _Turn_Keyboard_Landscape(state_true_or_false)
Purpose: Manually shows or hides the virtual keyboard in landscape orientation.