Dialog Menu
Here is an example of Aty Scripts - UI Kit's dialog menu system usage.
Dialog Menu Usage Guide
Creating a Dialog Menu
To create a dialog menu, use the following function:
Dialog Parameters
Name
"test_dialog"
A unique identifier for the dialog menu. Type:string
Title
"Dialog Menu"
The title of the dialog menu. Type:string
Subtitle
"This is a dialog menu"
Additional text displayed below the title. Type:string
Position
"top-right"
Determines where the context menu appears on the screen. Options:"top-right"
,"top-left"
,"bottom-right"
,"bottom-left", "bottom"
,"top"
,"left"
,"right"
,"center"
Type:string
Input Fields
Text Input
Title:
"Name Surname"
Type:
'text'
Placeholder:
"Enter your name and surname"
Number Input
Title:
"Age"
Type:
'number'
Placeholder:
"Enter your age"
Password Input
Title:
"Password"
Type:
'password'
Placeholder:
"Enter your password"
Date Input
Title:
"Birthday"
Type:
'date'
Time Input
Title:
"Birthday Time"
Type:
'time'
Color Picker
Title:
"Favorite Color"
Type:
'color'
Range Input
Title:
"Height"
Type:
'range'
Placeholder:
"Enter your height"
Min:
120
Max:
210
Value:
150
(Default value)
Checkbox
Name:
"test_checkbox"
Title:
"Are you a human?"
Type:
'checkbox'
Radio Buttons
Title:
"Favorite Food"
Type:
'radio'
Options:
value
:"string"
text
:"string"
Dropdown Selection
Title:
"Select Option"
Type:
'select'
Placeholder:
"Test Placeholder"
Options:
value
:"string"
text
:"string"
This structure provides a detailed and highly customizable dialog menu suitable for various scenarios. Each input type supports its unique attributes to tailor the dialog menu to your requirements.
Open Dialog
Last updated