Jump to content
UBot Underground

[Sell] Newgen Ui Builder - The Best Drag & Drop Ui Builder For Ubot...most Versatile With More Features!


Recommended Posts

Hi CJ, as far as I know it's not possible. If I understand correctly what you are saying you would need to make the ui html panel transparent. If it is possible maybe one of the plugin developers might know how.

 

Sorry this is no help but I am clueless on this one.

 

Cheers

Darryl.

 

 

Thats ok mate,

I was expecting that this was the case, no biggie ;)

 

Thanks for the reply anyway :)

 

CJ

Link to post
Share on other sites
  • Replies 210
  • Created
  • Last Reply

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

Update:   New feature: option to add range slider/s.   Thanks to Traffic Cop for the suggestion cheers.   http://77thcloud.com/newgenuib/thread/slider.jpg   http://77thcloud.com/newgenuib/thread/slid

No worries Jon. Glad to hear it's working for you and thanks for letting me know.     Dan, am looking at how I can add an option to edit elements.   Update: Had a request to be able to customize LED's

New update: Made a change to the builder to make it easy to create ui's that can be changed on the fly(without the need for a user to click a tab). This can be very useful for changing the ui in ord

Posted Images

To those interested in the product and service:

 

I bought Darryl's UI Builder a few weeks ago and have been very happy with it. It helps you create beautiful UIs and works well.

It addition, Darryl has been fantastic in supporting the product when I have questions or screw up when using it.

 

Thanks and keep up the good work Darryl.

Link to post
Share on other sites

I already purchased the Super Simple UI Builder a couple months ago, and now I'm thinking of investing in the Newgen Ui Builder since I'm not an expert at development yet.... does anyone have both of these and can offer a comparison, or is it safe to say that the Newgen Ui Builder is better, easier, or either way, worth the investment even if I already own the SSUB?

 

And what else (code, scripts, plugins) would be a good recommendation to speed things up for a non-seasoned developer user?

 

Thanks in advance for any input.

 

(PS: reading through the threads and having watched the videos it looks like the Newgen would be a better fit for a newer developer, and I am leaning on purchasing it.)

Link to post
Share on other sites

I already purchased the Super Simple UI Builder a couple months ago, and now I'm thinking of investing in the Newgen Ui Builder since I'm not an expert at development yet.... does anyone have both of these and can offer a comparison, or is it safe to say that the Newgen Ui Builder is better, easier, or either way, worth the investment even if I already own the SSUB?

 

And what else (code, scripts, plugins) would be a good recommendation to speed things up for a non-seasoned developer user?

 

Thanks in advance for any input.

 

(PS: reading through the threads and having watched the videos it looks like the Newgen would be a better fit for a newer developer, and I am leaning on purchasing it.)

 

 

I have both of these GCT77

They are both epic and i use both depending on the project im working on, but i believe that the Newgen UI has the edge for me,

it has alot of simply staggering features that arent available with other UI builders

 

Not to say that SSUB is not good because i love that too :)

 

But in my humble opinion Newgen is worth a hell of alot more than its on sale for ;)

so .. whats that Nike saying, .... Just Do It haha :P

 

lol, but seriously, you wont regret it ;)

 

 

as for plugins, ..

when i first acquired UBot i downloaded all the free plugins  and added each one as and when i needed them,

 

its also going to depend on what your goals are, ..

 

but as a starting block i would suggest Advanced Ubot 1 & 2

1 - http://www.ubotstudio.com/forum/index.php?/topic/16097-sell-plugin-advanced-ubot-add-talent-to-your-program-allows-you-to-debug-programs-easier/

2 - http://www.ubotstudio.com/forum/index.php?/topic/17500-sell-plugin-advanced-ubot-2-3-day-discount/

plenty of sweet features to keep you going

 

I would also recommend the Ultimate All-In-One collection as it will save you alot of money

http://www.ubotstudio.com/forum/index.php?/topic/15993-sell-ultimate-ubot-plugin-all-in-one/

 

 

 

Hope that helps, even if its just a little

 

CJ

  • Like 1
Link to post
Share on other sites

Yes, that helps CJ! 

 

I went ahead and got the NewGen UI and will be reviewing the other plugins, appreciate the recommendations.

 

Thanks again!

Link to post
Share on other sites
  • 2 months later...

This definitely needs an update , it's quite buggy sadly , but it does work extremely well most of the time.

It would be good if you could add an example of how to use the progress bar accurately.

The only way I know how to is add it to a loop and increment it every second which is flawed :/

Link to post
Share on other sites

You might find this thread helpful for using the progress bar: http://www.ubotstudio.com/forum/index.php?/topic/13817-free-html5-progress-bar-source-code-for-stdprodev/page-2

The builder does create some example code from that thread, but I guess it depends on exactly what your bot is doing as to the best way to set up the progress bar.

Link to post
Share on other sites

You might find this thread helpful for using the progress bar: http://www.ubotstudio.com/forum/index.php?/topic/13817-free-html5-progress-bar-source-code-for-stdprodev/page-2

The builder does create some example code from that thread, but I guess it depends on exactly what your bot is doing as to the best way to set up the progress bar.

Thanks , I just need the progress bar to increment , and reach 100% when the bot is finished , which I can't understand how to do unfortunately.

Have you got anything planned in future updates of this builder?

 

Perhaps you could make some tutorials on how to implement features into ubot?

Such as progress bar , LED lights etc , it feels like I have to use trial and error until I eventually work out what to do which is pretty time consuming

 

Thanks again!

Link to post
Share on other sites

Here's some basic example code which should help give you an idea. I'm no expert with this myself and I'm sure other's would have a better method.

define run {
    set(#progresslooptotal, 100, "Global")
    set(#progressloopcount, 0, "Global")
    thread {
        set(#percent, 33, "Global")
        increment progress bar()
    }
    navigate("http://www.google.com/", "Wait")
    wait for browser event("Everything Loaded", "")
    type text(<name="q">, 33, "Standard")
    thread {
        set(#percent, 33, "Global")
        increment progress bar()
    }
    navigate("http://www.yahoo.com/", "Wait")
    wait for browser event("Everything Loaded", "")
    type text(<name="p">, 66, "Standard")
    thread {
        set(#percent, 34, "Global")
        increment progress bar()
    }
    navigate("http://www.bing.com/", "Wait")
    wait for browser event("Everything Loaded", "")
    type text(<name="q">, 100, "Standard")
    wait(3)
    set(#progress, "<span variable=\"#progress\" fillwith=\"innerhtml\"></span>", "Global")
}
define increment progress bar {
    loop(#percent) {
        increment(#progressloopcount)
        wait(0.05)
        set(#progress, " <progress class=\"progress4\"
 style=\"width:270px; height:16px;\" id=\'p\' 
max=\"{#progresslooptotal}\" value=\"{#progressloopcount}\" ></progress>
<span variable=\"#progress\" fillwith=\"innerhtml\">{#progressloopcount}</span>%", "Global")
    }
}
ui html panel("
<html lang=\"en\">
<div id=\"colorbutton1\" style=\"margin-left: 1px; width: auto; height: auto; position: absolute; left: 41px; top: 23px; \" >    
<button class=\"button11\" id=\"RQcfs0\" style=\"height: px; width: px; font-family: ; 
font-size: ;\" onclick=\"ubot.runScript(\'run()\')\">Run</button><!--0-->
</div><div id=\"progressbar1\" style=\"margin-left: 1px; width: auto; height: auto; position: absolute; left: 46px; top: 84px; \" >
  
<span variable=\"#progress\" fillwith=\"innerhtml\"></span><!--1-->
</div>
</html>
", 200)
Link to post
Share on other sites

Wish I could implement that into my bot I've already made , struggling a fair bit haha :/

 

It's a bit hard to advise how to implement without knowing just what your bot does, will PM you.

Link to post
Share on other sites

Hello Darryl,

im working on a Bot that Uses Pash Wordpress Plugin. Ive got an Button that starts a define to get all Posts of my Blog( This will bring an Table after cleaning with 3 Columns). Is it possible to display this Table in a Datgrid Table?

Can you help me with this?

Thanks

Peter

PS: Wonderful UI Builder!!!

Link to post
Share on other sites

Hello Darryl,

im working on a Bot that Uses Pash Wordpress Plugin. Ive got an Button that starts a define to get all Posts of my Blog( This will bring an Table after cleaning with 3 Columns). Is it possible to display this Table in a Datgrid Table?

Can you help me with this?

Thanks

Peter

PS: Wonderful UI Builder!!!

 

Hi Peter,

 

I assume you mean displaying your table using the table feature of the builder.

 

I made a screencast to show how to do that: http://screencast.com/t/U4TDAjjJLK

 

Hope that helps.

 

Cheers.

Link to post
Share on other sites
  • 2 weeks later...

Hello Darryl,

is it possible to add an Date/Time Picker, or do you have an Idea to make it?

Thanks

 

I looked into adding a date picker some time back but could'nt get it to work in ubot's html panel, so did'nt proceed.

 

Darryl.

Link to post
Share on other sites
  • 2 weeks later...
  • 2 weeks later...

Update:

 

New feature. Option when using images for tabs to add them inside a panel.

You can create vertical or horizontal panels and easily set any color:

 

http://77thcloud.com/newgenuib/thread/tabpanel.jpg

 

Video showing how to use this new feature:

 

https://youtu.be/h3tnSMSXZ18

 

Cheers.

  • Like 2
Link to post
Share on other sites

This product has outstanding support, they answered me within few minutes, explained everything and even shown me the screen recordings. Thank you very much.

 

This item really worth a money. Highly recommend to everyone.

Link to post
Share on other sites

UPDATE ------

 

Ok, I must have tried a setting somewhere before adding the tabs! Started from scratch and understand the warning that the tabs must be done before anything else - working fine now  :)

 

Excuse the interruption and I'm back to coding!

 

-------------------------------------------------------

 

Hi Darryl,

Just picked this up and excited to convert many of my UI's!

 

Ran into an issue after setting up the tabs, added three (tried different numbers of tabs too, both standard and a custom one I setup) and after they are added to the UI, I try to move them and they won't drag, or move at all.

 

Tried some elements and they work fine, dragging them around works.

 

Using v 3.8, just updated to this version after downloading.

 

Any suggestions?

Thanks!

Link to post
Share on other sites

UPDATE ------

 

Ok, I must have tried a setting somewhere before adding the tabs! Started from scratch and understand the warning that the tabs must be done before anything else - working fine now  :)

 

Good to hear you have it working.

 

Cheers.

Link to post
Share on other sites

I guess YES, but sorry i am newbe and like to know if it will work with standard version of ubot? Interested to buy it

 

Sorry but as far as I know the standard version still does not have the "ui html panel", found under "ui commands": post-223-0-74683500-1437867290_thumb.jpg

 

so unfortunately I don't think it's possible to use it with the standard version.

 

Darryl.

Link to post
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...

×
×
  • Create New...