Fix more URLS

This commit is contained in:
Erlend
2022-05-30 07:58:13 +02:00
committed by GitHub
parent aade882eb8
commit d53f172b94
13 changed files with 14 additions and 14 deletions

View File

@@ -3,7 +3,7 @@
Buttons are objects, which execute function by clicking on them
The following list is only available to buttons: <br>
Remember button also inherits from [object](/Object):
Remember button also inherits from [object](/objects/Object):
## setText
Sets the displayed button text

View File

@@ -3,7 +3,7 @@
With checkbox, the user can set a bool to true or false
Here are all possible functions available for checkbox:<be>
Remember checkbox inherits from [object](/Object):
Remember checkbox inherits from [object](/objects/Object):
Create a onChange event:

View File

@@ -10,7 +10,7 @@ local aDropdown = mainFrame:addDropdown("myFirstDropdown"):show()
````
Here are all possible functions available for dropdowns: <br>
Remember dropdown inherits from [object](/Object):
Remember dropdown inherits from [object](/objects/Object):
## addItem
Adds a item to the dropdown

View File

@@ -4,7 +4,7 @@ The image object is for adding more advanced backgrounds.
It also provides a :shrink() function, where you can shrink the images to smaller ones. This functionallity is fully provided by the blittle library created by Bomb Bloke. I did not ask for permission to add it into the framework. If the creator wants me to remove the blittle part, just text me on discord!
Here are all possible functions available for image:<be>
Remember image inherits from [object](/Object):
Remember image inherits from [object](/objects/Object):
## loadImage

View File

@@ -3,7 +3,7 @@
With input's you are able to create a object where the user can type something in.<br>
Here are all possible functions available for inputs:<br>
Remember input inherits from [object](/Object):
Remember input inherits from [object](/objects/Object):
## setInputType
changes the input type

View File

@@ -5,7 +5,7 @@ With the Label object you are able to add some text.
By default label's width is auto sizing based on the length of the text. If you change the size with setSize it will automatically stop autosizing the width.
Here are all possible functions available for labels.<br>
Remember label inherits from [object](/Object):
Remember label inherits from [object](/objects/Object):
## setText
sets the text which gets displayed.

View File

@@ -11,7 +11,7 @@ local aList = mainFrame:addList("myFirstList"):show()
This will create a default list with the size 8 width and 5 height on position 1 1 (relative to its parent frame), the default background is colors.lightGray, the default text color is colors.black and the default zIndex is 5. The default horizontal text align is "center", default symbol is ">"
Here are all possible functions available for lists. Remember list inherit from [object](/Object):
Here are all possible functions available for lists. Remember list inherit from [object](/objects/Object):
## addItem
Adds a item to the list

View File

@@ -3,9 +3,9 @@
Panes are very simple sizeable background objects.
The following list is only available to panes: <br>
Remember pane also inherits from [object](/Object):
Remember pane also inherits from [object](/objects/Object):
Pane doesn't have any custom functionallity. If you want to change the color/position or size, just check out the [object](/Object) wikipage.
Pane doesn't have any custom functionallity. If you want to change the color/position or size, just check out the [object](/objects/Object) wikipage.
## Example:

View File

@@ -3,7 +3,7 @@
With a program object you are able to open programs like shell or worm or any custom program you've made. There is only 1 thing you have to remember: the program needs at least one os.sleep() or coroutine.yield() somewhere.
<br>
Here is a list of all available functions for programs: <br>
Remember program inherits from [object](/Object):
Remember program inherits from [object](/objects/Object):
## getStatus
returns the current status

View File

@@ -10,7 +10,7 @@ local aRadio = mainFrame:addRadio("myFirstRadio"):show()
````
Here are all possible functions available for radios: <br>
Remember radio inherits from [object](/Object):
Remember radio inherits from [object](/objects/Object):
## addItem
Adds a item to the radio

View File

@@ -10,7 +10,7 @@ local aScrollbar = mainFrame:addScrollbar("myFirstScrollbar"):show()
This will create a default label with a size 5 width and 1 height on position 1 1 (relative to its parent frame), the default background is colors.gray, the default text color is colors.black. the default bar type is vertical, the default symbol is " " and the default symbol color is colors.lightGray. The default zIndex is 5.
Here are all possible functions available for scrollbars. Remember scrollbar inherit from [object](/Object):
Here are all possible functions available for scrollbars. Remember scrollbar inherit from [object](/objects/Object):
## setSymbol
Changes the symbol

View File

@@ -3,7 +3,7 @@
With sliders you can add a object where the user can change a number value.<br><br>
Here are all possible functions available for sliders: <br>
Remember slider also inherits from [object](/Object)
Remember slider also inherits from [object](/objects/Object)
## setSymbol
this will change the foreground symbol

View File

@@ -10,7 +10,7 @@ local aTextfield = mainFrame:addTextfield("myFirstTextfield"):show()
This will create a default textfield with the size 10 width and 4 height on position 1 1 (relative to its parent frame), the default background is colors.gray, the default text color is colors.black and the default zIndex is 5.
A list of all possible functions available for textfields. Remember textfield inherits from [object](/Object):
A list of all possible functions available for textfields. Remember textfield inherits from [object](/objects/Object):
## getLines