|
Post by Mercobots on May 31, 2017 9:41:02 GMT
Thanks the demo is ready, redownload the zip file
|
|
cloudwp
New Member
Stay High
Posts: 23
|
Post by cloudwp on May 31, 2017 11:49:06 GMT
wow nice thank u very much
|
|
cloudwp
New Member
Stay High
Posts: 23
|
Post by cloudwp on Jun 11, 2017 7:19:13 GMT
Can i somehow show an overlay while script is running that shows some variables Like Times Finished: "var" If so Gould u maybe post little code in howto do that ? Tyvm for ur hard work i really Luke ur Projekts 
|
|
|
Post by Mercobots on Jun 12, 2017 11:25:47 GMT
Can i somehow show an overlay while script is running that shows some variables Like Times Finished: "var" If so Gould u maybe post little code in howto do that ? Tyvm for ur hard work i really Luke ur Projekts  thank you i appreciate it simple console dofile(scriptPath() .. "UI.luac")
-- Simple welcome message -- ======================================== local style = { width = "30%", height = "100%", position = "top|left", background = "0xe6434343", color = "white", font_size = 10, }
-- creating console frame local console = UI:new(style)
--adding line text console:add("line_1") console.line_1.width = "100%" console.line_1.height = "14%" console.line_1.text = "" -- console:add("line_2", "line_1") console.line_2.position = "top=15%|left" console.line_2.text = "" -- -- show console console:show() wait(3)
-- example for i = 1, 10 do
if i % 2 == 0 then console.line_2:hide() console.line_2.text = "i = " .. i console.line_2:show() else console.line_1:hide() console.line_1.text = "i = " .. i console.line_1:show() end
wait(1) end
-- example 2 function foo(n) console.line_1:hide() console.line_1.text = "foo get = " .. n console.line_1:show() return tostring(n .. " World") end
console.line_2:hide() console.line_2.text = "foo('hello') returns ->" .. foo("hello") console.line_2:show()
wait(3) console:hideAll() wait(3)
|
|
|
Post by iamjag on Sept 24, 2017 13:53:41 GMT
Hi,
This is great tool! Any news on your new features?
Regards, jAGHere
|
|
|
Post by Mercobots on Sept 24, 2017 14:53:03 GMT
This feature was one of my first script, is outdated and sincerely the code is a little strange a this point! Maybe in a long term i will remake the whole code but is not in my plans for now 
|
|
|
Post by crossa on Mar 18, 2022 20:57:06 GMT
Is this still available? Seems like the link is broken.
I am looking for a neat example GUI for my script.
|
|