Jump to content

Radio Buton Need Help


 Share

Recommended Posts

the problem is on Radio Buton if i choose checkbox 3 and Left " left is first , work"

if i choose checkbox 3 and Middle dont work and continue to run like Left... why?

$LEFT = GUICtrlCreateRadio("LEFT", 144, 168, 57, 17)
$MIDDLE = GUICtrlCreateRadio("MIDLE", 144, 192, 57, 17)
$RIGHT = GUICtrlCreateRadio("Right", 144, 216, 65, 17)





While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
Exit
Case $Checkbox1, $Left
........


Case $Checkbox3, $Left
$sCheckedState = BitAND(GUICtrlRead($Checkbox3), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($Left), $GUI_CHECKED)
MouseMLeft() ;only this work


Case $Checkbox3, $MIDDLE
$sCheckedState = BitAND(GUICtrlRead($Checkbox3), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($MIDDLE), $GUI_CHECKED)
MouseMidle() ; dont work and run like Case $Checkbox3, $Left

Case $Checkbox3, $RIGHT
$sCheckedState = BitAND(GUICtrlRead($Checkbox3), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($RIGHT), $GUI_CHECKED)
MOuseRight() ; dont work


EndSwitch
WEnd
Edited by StuparuIG
Link to comment
Share on other sites

Hi,

I don't understand what you mean. Do you want the other radios buttons to uncheck according to a checked checkbox or to a group of radios/checkboxes ?

Maybe you should provide a complete script with the missing ctrls.

Br, FireFox.

Link to comment
Share on other sites

I also don't understand this. The following two lines don't make sense. Why assign a value to the variable and then immediately change it? The first line is redundant.

$sCheckedState = BitAND(GUICtrlRead($Checkbox3), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($Left), $GUI_CHECKED)
Edited by czardas
Link to comment
Share on other sites

oky Start3R() and Start3M() go in same place whit Start3L() why becouse mouse is in new pozition after start..

#include <ButtonConstants.au3>
#include <ComboConstants.au3>
#include <GUIConstantsEx.au3>
#include <StaticConstants.au3>
#include <TabConstants.au3>
#include <WindowsConstants.au3>




$Form1_1_1 = GUICreate(0, 444, 299, 315, 226)

$Tab1 = GUICtrlCreateTab(0, 444, 299, 315, 226)

$TabSheet3 = GUICtrlCreateTabItem("")
GUICtrlSetState(-1,$GUI_SHOW)
$Button5 = GUICtrlCreateButton("Start", 328, 264, 91, 25)


$Checkbox1 = GUICtrlCreateCheckbox("1", 33, 168, 97, 17)
$Checkbox2 = GUICtrlCreateCheckbox("2", 33, 188, 97, 17)
$Checkbox3 = GUICtrlCreateCheckbox("3", 33, 207, 97, 17)



$LEFT = GUICtrlCreateRadio("LEFT", 144, 168, 57, 17)
$MIDDLE = GUICtrlCreateRadio("MIDLE", 144, 192, 57, 17)
$RIGHT = GUICtrlCreateRadio("Right", 144, 216, 65, 17)




$Graphic1 = GUICtrlCreateGraphic(0, 296, 539, 24)
GUICtrlSetGraphic(-1, $GUI_GR_COLOR, 0x000000, 0x000000)
GUICtrlSetGraphic(-1, $GUI_GR_RECT, -7, 0, 541, 16)

GUISetState(@SW_SHOW)


Global $Paused
HotKeySet("{ESC}", "Terminate")
HotKeySet("{f2}", "TogglePause")


Func TogglePause()
$Paused = NOT $Paused
While $Paused
sleep(100)
ToolTip('Script is "Paused"',0,0)
WEnd
ToolTip("")
EndFunc

Func Terminate()
Exit 0
EndFunc

While 1
Switch GUIGetMsg()
Case $GUI_EVENT_CLOSE
Exit

Case $Checkbox1, $LEFT

$sCheckedState = BitAND(GUICtrlRead($Checkbox1), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($MIDDLE), $GUI_CHECKED)
Start1L()



Case $Checkbox1, $MIDDLE
$sCheckedState = BitAND(GUICtrlRead($Checkbox1), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($MIDDLE), $GUI_CHECKED)
sleep(Random (1000, 1500))
Start1M()


Case $Checkbox1, $RIGHT
$sCheckedState = BitAND(GUICtrlRead($Checkbox1), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($MIDDLE), $GUI_CHECKED)
Start1R()

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;


Case $Checkbox2, $LEFT
$sCheckedState = BitAND(GUICtrlRead($Checkbox2), $GUI_CHECKED)
sleep(Random (1000, 1500))

Start2L()


Case $Checkbox2, $MIDDLE
$sCheckedState = BitAND(GUICtrlRead($Checkbox2), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($MIDDLE), $GUI_CHECKED)
Start2M()

Case $Checkbox2, $RIGHT
$sCheckedState = BitAND(GUICtrlRead($Checkbox2), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($LEFT), $GUI_CHECKED)
Start2R()
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
Case $Checkbox3, $LEFT
$sCheckedState = BitAND(GUICtrlRead($Checkbox3), $GUI_CHECKED)
sleep(Random (1000, 1500))

Start3L()


Case $Checkbox3, $MIDDLE
$sCheckedState = BitAND(GUICtrlRead($Checkbox3), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($MIDDLE), $GUI_CHECKED)
Start3M()

Case $Checkbox3, $RIGHT
$sCheckedState = BitAND(GUICtrlRead($Checkbox3), $GUI_CHECKED)
$sCheckedState = BitAND(GUICtrlRead($RIGHT), $GUI_CHECKED)
Start3R()

EndSwitch
WEnd

Func Start1L()


sleep(Random (1000, 1500))
$ColorStart = 0xA8E4FC Or 0x94D7F0
$ColorLeft = 0x8DB007

$ColorHight = 0x0B1A260 Or 0x09202B Or 0x5BE871
$ColorHight2 = 0x09202B
$ColorAccept1 = 0x86CFF2
$ColorAccept2 = 0x1087CE

$ColorA3 = 0xAEE7FE
$C4 = 0xAFE8FE
$C5 = 0xAEE7FE

While 1

If PixelGetColor(593, 44) = $ColorStart Then
ExitLoop
Else
ContinueLoop
EndIf

WEnd

sleep(Random (1000, 1500))
MouseMove(593, 44)
MouseClick("Left", 593 + Random(1,3),44 + Random(1,3), 1)
;-------------------------------------------------------
While 1
sleep(Random (1000, 1500))

If PixelGetColor(141, 339) = $ColorLeft Then
ExitLoop
Else
ContinueLoop
EndIf

WEnd

sleep(Random (1000, 1500))
MouseMove(141, 339)
MouseClick("Left", 141 + Random(1,3),339 + Random(1,3), 1)

;--------------------------------------------------------------

;=========================== ==============================
While 1
sleep(Random (1000, 1500))
If PixelGetColor(723, 297) = $ColorHight Then
ExitLoop
Else
ContinueLoop
EndIf


WEnd

sleep(Random (1000, 1500))
MouseMove(723, 297)
MouseClick("Right", 723 + Random(1,3),297 + Random(1,3), 1)

;--------------------------------------------------

Sleep(Random(2000,4500))
Send("{n}")

Sleep(Random(3500, 7500))
Send("{SPACE}")
;-------------------------------------------------


While 1
sleep(Random (1000, 1500))
If PixelGetColor(805, 466) = $C4 Then
sleep(Random (1000, 1500)) ; 1

MouseMove(805, 466)
MouseClick("Left", 805 + Random(1,3),466 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
If PixelGetColor(804, 454) = $ColorAccept1 Then

MouseMove(804, 454) ; 2
MouseClick("Left", 804 + Random(1,3),454 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(798, 393) = $ColorAccept2 Then

MouseMove(798, 393); 3
MouseClick("Left", 798 + Random(1,3),393 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(806, 478) = $C5 Then

MouseMove(806, 478); 3
MouseClick("Left", 806 + Random(1,3),478 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(804, 398) = $ColorA3 Then

MouseMove(805, 398) ;4
MouseClick("Left", 804 + Random(1,3),398 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
ExitLoop
sleep(Random (1000, 1500))
WEnd
Start1L()
EndFunc


Func Start1M()



EndFunc

Func Start1R()



EndFunc

func Start2L()



EndFunc

func Start2M()





EndFunc


func Start2R()


$ColorStart = 0xA8E4FC Or 0x94D7F0; 593, 44

$CuloareSkill = 0xA9B99A ; 209, 404

$ColorHight = 0x0B1A260 Or 0x09202B Or 0x5BE871 ; 723, 297
$ColorAccept1 = 0x86CFF2 ;
$ColorAccept2 = 0x1087CE ; 798, 393
$ColorA3 = 0xAEE7FE ;804, 398
$C4 = 0xAFE8FE ; 805, 466
$C5 = 0xAEE7FE ; 806, 478

While 1
sleep(Random (1000, 1500))
If PixelGetColor(593, 44) = $ColorStart Then
ExitLoop
Else
ContinueLoop

EndIf
WEnd

sleep(Random (1000, 1500))
MouseMove(593, 44)
MouseClick("Left", 593 + Random(1,3),44 + Random(1,3), 1)

While 1

If PixelGetColor(209, 404) = $CuloareSkill Then
ExitLoop
Else
ContinueLoop
EndIf

WEnd

sleep(Random (1000, 1500))
MouseMove(209, 404)
MouseClick("Left", 209 + Random(1,3),404 + Random(1,3), 1)

While 1
sleep(Random (1000, 1500))
If PixelGetColor(723, 297) = $ColorHight Then
ExitLoop
Else
ContinueLoop
EndIf


WEnd

sleep(Random (1000, 1500))
MouseMove(723, 297)
MouseClick("Right", 723 + Random(1,3),297 + Random(1,3), 1)

;--------------------------------------------------

Sleep(Random(2000,4500))
Send("{n}")

Sleep(Random(3500, 7500))
Send("{SPACE}")
;-------------------------------------------------


While 1
sleep(Random (1000, 1500))
If PixelGetColor(805, 466) = $C4 Then
sleep(Random (1000, 1500)) ; 1

MouseMove(805, 466)
MouseClick("Left", 805 + Random(1,3),466 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
If PixelGetColor(804, 454) = $ColorAccept1 Then

MouseMove(804, 454) ; 2
MouseClick("Left", 804 + Random(1,3),454 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(798, 393) = $ColorAccept2 Then

MouseMove(798, 393); 3
MouseClick("Left", 798 + Random(1,3),393 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(806, 478) = $C5 Then

MouseMove(806, 478); 3
MouseClick("Left", 806 + Random(1,3),478 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(804, 398) = $ColorA3 Then

MouseMove(805, 398) ;4
MouseClick("Left", 804 + Random(1,3),398 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
ExitLoop
sleep(Random (1000, 1500))
WEnd
Return Start2R()


EndFunc




func Start3L()


$ColorStart = 0xA8E4FC Or 0x94D7F0

$CuloareSkill = 0xA3C622
$ColorHight = 0x0B1A260 Or 0x09202B Or 0x5BE871
$ColorAccept1 = 0x86CFF2 ;
$ColorAccept2 = 0x1087CE ;
$ColorA3 = 0xAEE7FE
$C4 = 0xAFE8FE ;
$C5 = 0xAEE7FE ;

While 1
sleep(Random (1000, 1500))
If PixelGetColor(593, 44) = $ColorStart Then
ExitLoop
Else
ContinueLoop

EndIf
WEnd

sleep(Random (1000, 1500))
MouseMove(593, 44)
MouseClick("Left", 593 + Random(1,3),44 + Random(1,3), 1)

While 1

If PixelGetColor(139, 466) = $CuloareSkill Then
ExitLoop
Else
ContinueLoop
EndIf

WEnd

sleep(Random (1000, 1500))
MouseMove(139, 466)
MouseClick("Left", 139 + Random(1,3),466 + Random(1,3), 1)

While 1
sleep(Random (1000, 1500))
If PixelGetColor(723, 297) = $ColorHight Then
ExitLoop
Else
ContinueLoop
EndIf


WEnd

sleep(Random (1000, 1500))
MouseMove(723, 297)
MouseClick("Right", 723 + Random(1,3),297 + Random(1,3), 1)

;--------------------------------------------------

Sleep(Random(2000,4500))
Send("{n}")

Sleep(Random(3500, 7500))
Send("{SPACE}")
;-------------------------------------------------


While 1
sleep(Random (1000, 1500))
If PixelGetColor(805, 466) = $C4 Then
sleep(Random (1000, 1500)) ; 1

MouseMove(805, 466)
MouseClick("Left", 805 + Random(1,3),466 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
If PixelGetColor(804, 454) = $ColorAccept1 Then

MouseMove(804, 454) ; 2
MouseClick("Left", 804 + Random(1,3),454 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(798, 393) = $ColorAccept2 Then

MouseMove(798, 393); 3
MouseClick("Left", 798 + Random(1,3),393 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(806, 478) = $C5 Then

MouseMove(806, 478); 3
MouseClick("Left", 806 + Random(1,3),478 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(804, 398) = $ColorA3 Then

MouseMove(805, 398) ;4
MouseClick("Left", 804 + Random(1,3),398 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
ExitLoop
sleep(Random (1000, 1500))
WEnd
Return Start3L()


EndFunc


func Start3M()


sleep(Random (1000, 1500))
$ColorStart = 0x84CCEA
$ColorLeft2 = 0x9C916E

$ColorHight = 0x0B1A260 Or 0x09202B Or 0x5BE871

$ColorAccept1 = 0x86CFF2
$ColorAccept2 = 0x1087CE

$ColorA3 = 0xAEE7FE
$C4 = 0xAFE8FE ;
$C5 = 0xAEE7FE ;

While 1
sleep(Random (1000, 1500))
If PixelGetColor(591, 38) = $ColorStart Then
ExitLoop
Else
ContinueLoop

EndIf
WEnd

sleep(Random (1000, 1500))
MouseMove(591, 38)
MouseClick("Left", 591 + Random(1,3),38 + Random(1,3), 1)

While 1

If PixelGetColor(167, 472) = $ColorLeft2 Then
ExitLoop
Else
ContinueLoop
EndIf

WEnd

sleep(Random (1000, 1500))
MouseMove(167, 472)
MouseClick("Left", 167 + Random(1,3),472 + Random(1,3), 1)

While 1
sleep(Random (1000, 1500))
If PixelGetColor(723, 297) = $ColorHight Then
ExitLoop
Else
ContinueLoop
EndIf


WEnd

sleep(Random (1000, 1500))
MouseMove(723, 297)
MouseClick("Right", 723 + Random(1,3),297 + Random(1,3), 1)

;--------------------------------------------------

Sleep(Random(2000,4500))
Send("{n}")

Sleep(Random(3500, 7500))
Send("{SPACE}")
;-------------------------------------------------


While 1
sleep(Random (1000, 1500))
If PixelGetColor(805, 466) = $C4 Then
sleep(Random (1000, 1500)) ; 1

MouseMove(805, 466)
MouseClick("Left", 805 + Random(1,3),466 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
If PixelGetColor(804, 454) = $ColorAccept1 Then

MouseMove(804, 454) ; 2
MouseClick("Left", 804 + Random(1,3),454 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(798, 393) = $ColorAccept2 Then

MouseMove(798, 393); 3
MouseClick("Left", 798 + Random(1,3),393 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(806, 478) = $C5 Then

MouseMove(806, 478); 3
MouseClick("Left", 806 + Random(1,3),478 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(804, 398) = $ColorA3 Then

MouseMove(805, 398) ;4
MouseClick("Left", 804 + Random(1,3),398 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
ExitLoop
sleep(Random (1000, 1500))

WEnd

Return Start3M()


EndFunc


func Start3R()
sleep(Random (1000, 1500))
$ColorStart = 0x84CCEA ; 591, 38
$ColorLeft2 = 0x949E9C ; 207, 469

$ColorHight = 0x0B1A260 Or 0x09202B Or 0x5BE871

$ColorAccept1 = 0x86CFF2
$ColorAccept2 = 0x1087CE ;

$ColorA3 = 0xAEE7FE
$C4 = 0xAFE8FE ;
$C5 = 0xAEE7FE ;

While 1
sleep(Random (1000, 1500))
If PixelGetColor(591, 38) = $ColorStart Then
ExitLoop
Else
ContinueLoop

EndIf
WEnd

sleep(Random (1000, 1500))
MouseMove(591, 38)
MouseClick("Left", 591 + Random(1,3),38 + Random(1,3), 1)

While 1

If PixelGetColor(207, 469) = $ColorLeft2 Then
ExitLoop
Else
ContinueLoop
EndIf

WEnd

sleep(Random (1000, 1500))
MouseMove(207, 469)
MouseClick("Left", 207 + Random(1,3),469 + Random(1,3), 1)

While 1
sleep(Random (1000, 1500))
If PixelGetColor(723, 297) = $ColorHight Then
ExitLoop
Else
ContinueLoop
EndIf


WEnd

sleep(Random (1000, 1500))
MouseMove(723, 297)
MouseClick("Right", 723 + Random(1,3),297 + Random(1,3), 1)

;--------------------------------------------------

Sleep(Random(2000,4500))
Send("{n}")

Sleep(Random(3500, 7500))
Send("{SPACE}")
;-------------------------------------------------


While 1
sleep(Random (1000, 1500))
If PixelGetColor(805, 466) = $C4 Then
sleep(Random (1000, 1500)) ; 1

MouseMove(805, 466)
MouseClick("Left", 805 + Random(1,3),466 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
If PixelGetColor(804, 454) = $ColorAccept1 Then

MouseMove(804, 454) ; 2
MouseClick("Left", 804 + Random(1,3),454 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(798, 393) = $ColorAccept2 Then

MouseMove(798, 393); 3
MouseClick("Left", 798 + Random(1,3),393 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(806, 478) = $C5 Then

MouseMove(806, 478); 3
MouseClick("Left", 806 + Random(1,3),478 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf

If PixelGetColor(804, 398) = $ColorA3 Then

MouseMove(805, 398) ;4
MouseClick("Left", 804 + Random(1,3),398 + Random(1,3), 1)
sleep(Random (1000, 1500))

EndIf
ExitLoop
sleep(Random (1000, 1500))
WEnd

Return Start3R()


EndFunc
Edited by StuparuIG
Link to comment
Share on other sites

I also don't understand this. The following two lines don't make sense. Why assign a value to the variable and then immediately change it? The first line is redundant.

I'm thinking it doesn't really matter what he assigns to that variable, because he's not using it anywhere in the script except when reading the controls, so its contents are completely immaterial.

If I posted any code, assume that code was written using the latest release version unless stated otherwise. Also, if it doesn't work on XP I can't help with that because I don't have access to XP, and I'm not going to.
Give a programmer the correct code and he can do his work for a day. Teach a programmer to debug and he can do his work for a lifetime - by Chirag Gude
How to ask questions the smart way!

I hereby grant any person the right to use any code I post, that I am the original author of, on the autoitscript.com forums, unless I've specifically stated otherwise in the code or the thread post. If you do use my code all I ask, as a courtesy, is to make note of where you got it from.

Back up and restore Windows user files _Array.au3 - Modified array functions that include support for 2D arrays.  -  ColorChooser - An add-on for SciTE that pops up a color dialog so you can select and paste a color code into a script.  -  Customizable Splashscreen GUI w/Progress Bar - Create a custom "splash screen" GUI with a progress bar and custom label.  -  _FileGetProperty - Retrieve the properties of a file  -  SciTE Toolbar - A toolbar demo for use with the SciTE editor  -  GUIRegisterMsg demo - Demo script to show how to use the Windows messages to interact with controls and your GUI.  -   Latin Square password generator

Link to comment
Share on other sites

I'm thinking it doesn't really matter what he assigns to that variable, because he's not using it anywhere in the script except when reading the controls, so its contents are completely immaterial.

I wasn't able to determine that from the first post. Now I think I know what the script is attempting to do. Edited by czardas
Link to comment
Share on other sites

I think you got an error in

$ColorHight = 0x0B1A260 Or 0x09202B Or 0x5BE871

Can you spot it?

0x0B1A260 is not a color...

Edited by careca
Spoiler

Renamer - Rename files and folders, remove portions of text from the filename etc.

GPO Tool - Export/Import Group policy settings.

MirrorDir - Synchronize/Backup/Mirror Folders

BeatsPlayer - Music player.

Params Tool - Right click an exe to see it's parameters or execute them.

String Trigger - Triggers pasting text or applications or internet links on specific strings.

Inconspicuous - Hide files in plain sight, not fully encrypted.

Regedit Control - Registry browsing history, quickly jump into any saved key.

Time4Shutdown - Write the time for shutdown in minutes.

Power Profiles Tool - Set a profile as active, delete, duplicate, export and import.

Finished Task Shutdown - Shuts down pc when specified window/Wndl/process closes.

NetworkSpeedShutdown - Shuts down pc if download speed goes under "X" Kb/s.

IUIAutomation - Topic with framework and examples

Au3Record.exe

Link to comment
Share on other sites

  • Moderators

lorenkinzel,

So you think offering help to what you consider to be a game-related script is acceptable? Well, it is not - please read the Forum Rules carefully and do not do it again. :naughty:

StuparuIG,

I have let the thread run because there is no real proof that your script is a game-bot - let us try to keep it that way. ;)

M23

Public_Domain.png.2d871819fcb9957cf44f4514551a2935.png Any of my own code posted anywhere on the forum is available for use by others without any restriction of any kind

Open spoiler to see my UDFs:

Spoiler

ArrayMultiColSort ---- Sort arrays on multiple columns
ChooseFileFolder ---- Single and multiple selections from specified path treeview listing
Date_Time_Convert -- Easily convert date/time formats, including the language used
ExtMsgBox --------- A highly customisable replacement for MsgBox
GUIExtender -------- Extend and retract multiple sections within a GUI
GUIFrame ---------- Subdivide GUIs into many adjustable frames
GUIListViewEx ------- Insert, delete, move, drag, sort, edit and colour ListView items
GUITreeViewEx ------ Check/clear parent and child checkboxes in a TreeView
Marquee ----------- Scrolling tickertape GUIs
NoFocusLines ------- Remove the dotted focus lines from buttons, sliders, radios and checkboxes
Notify ------------- Small notifications on the edge of the display
Scrollbars ----------Automatically sized scrollbars with a single command
StringSize ---------- Automatically size controls to fit text
Toast -------------- Small GUIs which pop out of the notification area

 

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...