Tags - main object in HTML. You can call tags to get their verbs and use them to create something in your app. Below we describe all the tags in details
[html] is used to create application settings. In other terms [html] is a tag for immovable objects.
But [body] is used to create objects on the canvas (body). In short - [body] is a tag for movable objects.
[imp-use] is the most unique tag. It's not the only hyphenated tag, it's that it: 1. Works only with [html] import. 2. It has a unique built-in function - call-name()
The [screen] tag creates and interacts with screens.
Classes - definition of the object type for the compiler.
This class creates text environment.
This class creates image environment.
This class creates button environment.
This class creates input label environment.
This class creates the dropdown environment.
This class creates canvas environment.
Variable types determine the value, which they are possessing. That means that a number variable (integer or float) cannot possess a text and vice versa.
A variable type with no value, which can also be depicted as None. Any value can be given to this variable, and the variable would change its type according to the given value
A variable type with the integer value only.
A variable type with the float (decimal) value only.
A variable type with the text value only. Keep in mind that string is defined in one single line of text, so Enter doesn't do anything. Instead you should use \n to make a new line
A variable type with the true/false value only, which can also be depicted as 0 and 1.
A variable type, which can contain any other variable with any type.
A variable type which can contain a certain unrepeatable key, which in turn can possess a single value of any type, including another dictionary.
A variable type that references one of the created objects on the screen.
Properties are a way of customizing an object and setting it up by setting values to the properties themselves.
A property to set the title of the application. Note that it can only be used for [html]. (It is not suitable for creating text headings)
The icon of the program. Note that it can only be used for [html] (it's not suitable for creating images inside the program). Receives the file object.
The boolean, which determines if the program window is fullscreen or not (taking up the whole screen or not)
The boolean, which determines if the program automatically loads all the objects. Check out the built-in action to load objects manually
A property to customize the text. Keep in mind that it can only be used for buttons and text.
A property to set an element's width. Can have value in pixels, centimeters, or percentages.
A property to set an element's height. Can have value in pixels, centimeters, or percentages.
A property to set an element's fonts. Note that it can only be used for text and buttons.
A property to set an element's opacity. Can have value only in percentages.
Result:
A property to set the element's center point. Can be used for attaching objects to certain coordinates.
A property to set an element's border radius.
A property for creating gaps between the object's bar and the environment. Has a special required direction argument.
A property to set the element's second color. It is recommended to use it when transitioning between screens or for animation of pointing to a button.
A property of an object that allows it to be cloned. Values are boolean only (true, false)
A property that sets the location of the object relative to the person. The larger the value, the closer the object seems to the user
Sets the program's access to the web. Accepts a boolean and a string as the application's URL (must be without "://"!).
A property that arranges variables that act as a hook takes values that can then be used.
You can use these variables later:
A property that sets a constant horizontal position. It can take only 3 values - left, center and right.
Text with align: center
The string identifier of the object, which later can be used as an Object reference. Note that the same ID can be applied to any type and any amount of objects.
Allows you to add a script to the canvas, through which you can draw.
After that, you can name your script and write code in it:
Changes the number of pixels per inch on the canvas.
The boolean to show is the image available to clicks to register them with built-in event ".press".
The size of the object, varying from 1 to 256, where is the float number represents the multiplier of the original size.
The list, containing all options that the user could choose from
The default text, which shows up if no options were chosen
The boolean, which determines if the button is disabled (not clickable and shows a disabled state - usually more grayish and more transparent, but it depends on the platform).
The reference to the design, coded in the "[html] decode:" before this property announcement.
The property, which sets the base properties of an object, such as position, default theme color, e.g., as an Dictionary. Can be used to optimize objects by removing some unnecessary properties.
Built-in functions are functions, that already avaible to user. They have the same syntax as normal functions, but before them is an object, to which we apply changes.
Executes on any click.
Executes on click on a specific object. Accepts objects as a string.
Executes if pressing a specific keyboard key. Accepts keys as a list. Does not accept keys like Enter, Backspace, Delete, PrintScreen, all F keys (Changed in v6E)
Executes if text in object with Input class was changed. Accepts Input class objects as string only.
Executes if the screen was scrolled.
Executes if a specific object is hovered. Accepts any object as a string.
Executes if the option in the specified dropdown was changed (new option was selected).
Executes if the given image was clicked. Returns the X and Y positions of the click as different variables.
Executes if some interaction with the program window has happened. The parameter is a string, which specifies the type of interaction from the next possible ones:.
Executes when any text (from Text, Button, Input or even Dropdown) has been selected. The parameters are: 1. the Object reference; 2. the variable, which the selected text will be assigned to (optional).
Forces the program to suspend the algorithm for the specified time. Takes the time as an integer in seconds.
Clones the given object. Note that the object must have the clonable: set as true (Changed in v6E.
Accepts the original object's name and the new one.
Cancels the last action that the program executed. Can accept the specific object's name, and then cancel the last action with that specific object.
Loads the calling object onto the screen, which also allows the object to receive input. Note that if the autoload property is set to true (which is set to true by default), then all the objects created with [body] will be automatically loaded for you.
Repeats the given code for the given times. Accepts the starting value of the repeating index (default value - 0), the amount to add with each repeat (default value - 1), and the action to repeat itself.
Returns the last position (X and Y) of a click on a specific object as a list.
Returns the value of the selected option in the chosen dropdown.
Returns the index of the selected option in the chosen dropdown.
Changes almost any property that was already assigned to the object. To create a new property, use .createProperty(). Accepts 2 parameters: name of the property and its new value.
Creates and assigns almost any property. If the property is already assigned, it rewrites its value to the new one. Note: you can't add a property that cannot be assigned to your type of object. Accepts the name of the property, which is gonna be added, and its starting value.
Returns the value of any given property. Returns 0 if the property doesn't exist or isn't supported on the given object.
Receives the object in the list, which needs to be changed, and a new value for this object.
Adds the value to the end of the given list.
Removes the given object from the given list. This won't affect objects in the list after.
Returns the length of the given object.
Converts the list to a single line string, containing every item. The separator argument sets the symbol between every item listed in text.
Repeats the given code the times controlled by the length of the given list. In the first argument, the variable, which collects the values set (default value - none) , the second argument is the type of reading (instant or alternate) (default value - alternate). The third argument is the action. According to the given type, the action will behave differently. If the "instant" is set, the action will be active after the end of the reading. If the "alternate" is set, the action will be performed for every item in the list (default value - none).
Returns the Object variable, to which the main function refers to.
Disables the referred event, which means that the inputs of the given event are no longer taken into account.
Does the exact oposite of the .disableEvent action.
Changes the object to which the event refers. Keep in mind that if the new object cannot work with such an event, the event stops working.
Changes the arguments of the given event. If the event doesn't take any arguments, then the given argument will just be ignored.