No declaring var before using in gui widgets any more!!
Posted: Sun Nov 15, 2015 11:37 am
Hello,
Version 1.39 changes.
Gui widgets required variable be created before use. This has now been changed.
Old code (Still works):
New Code:
Minor bug fixes for dropdown and listbox code.
Version 1.39 changes.
Gui widgets required variable be created before use. This has now been changed.
Old code (Still works):
Code: Select all
bla = ""
textbox bla
wait
New Code:
Code: Select all
textbox bla
wait
Minor bug fixes for dropdown and listbox code.