Jump to content
UBot Underground

[Sell] Gui Hero- The Ultimate & Easiest Tool For Creating Ubot Gui's


Recommended Posts

My opinion so far:

 

- nice software, good drag& drop and simple use

- bug or not ? :  create Tab one, created Tab 2 and Created Tab 3 and added fields and button etc --> Saved UI....content of Tab 2 has been deleted

I have created the content of Tab from scratch, saved UI ---> Content of Tab 3 has been deleted :(

 

- how to do this ( point 2 ) ? 

 

Will have a look as soon as I can

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

Top Posters In This Topic

Top Posters In This Topic

Popular Posts

http://77thcloud.com/guihero/salesthread/gh.jpg You will be hard pressed to find a more user friendly tool that enables you to create ubot GUI's as quick and as easy as what GUI Hero does!   Plus GUI

Update: Version 2.4   Added an option to import ui elements from ubot into GUI Hero   http://77thcloud.com/guihero/salesthread/Capture.png

Update: version 2.7   1- Added an option to show a visual grid to assist with lining up elements.   2- When adding a dropdown and setting it to run a define, changed the code to run the define onchang

Posted Images

My opinion so far:

 

- nice software, good drag& drop and simple use

- bug or not ? :  create Tab one, created Tab 2 and Created Tab 3 and added fields and button etc --> Saved UI....content of Tab 2 has been deleted

I have created the content of Tab from scratch, saved UI ---> Content of Tab 3 has been deleted :(

 

- how to do this ( point 2 ) ? 

 

 

Has it done this every time you use it Heiio ?

 

When i was testing this a while back this happened to me once, .. but only once, 

and as I couldnt reproduce it again I never brought it up

 

after a reset it never happened again and I must have built at least another 20 UI's since with no issues

 

 

Cheers

CJ

Link to post
Share on other sites

My opinion so far:

 

- nice software, good drag& drop and simple use

- bug or not ? :  create Tab one, created Tab 2 and Created Tab 3 and added fields and button etc --> Saved UI....content of Tab 2 has been deleted

I have created the content of Tab from scratch, saved UI ---> Content of Tab 3 has been deleted :(

 

- how to do this ( point 2 ) ? 

 

I could not reproduce this initially, but have found that switching between tabs too quickly seems to cause the problem.

 

Clicking a tab when in the builder also runs a define which temporarily saves whatever has been added to each tab, but if another tab is clicked before the define has finished running this is what causes the problem.

 

I added a screen lock when a tab is clicked and it will unlock once the define has finished running and with the testing I have done I have not been able to reproduce the problem with that in place. I will get the update uploaded after work tomorrow.

 

Cheers

Darryl.

  • Like 1
Link to post
Share on other sites

Has it done this every time you use it Heiio ?

 

When i was testing this a while back this happened to me once, .. but only once, 

and as I couldnt reproduce it again I never brought it up

 

after a reset it never happened again and I must have built at least another 20 UI's since with no issues

 

 

Cheers

CJ

It happened 3 times....not funny when you have worked on the GUI for 3 hours :)  I have seen the update post from Darryl, glad to see it will be updated.

Link to post
Share on other sites

Update: Version 2.5

 

Bug Fix: Fixed bug as reported by Heiio

 

My opinion so far:

 

- nice software, good drag& drop and simple use

- bug or not ? :  create Tab one, created Tab 2 and Created Tab 3 and added fields and button etc --> Saved UI....content of Tab 2 has been deleted

I have created the content of Tab from scratch, saved UI ---> Content of Tab 3 has been deleted :(

 

- how to do this ( point 2 ) ? 

  • Like 1
Link to post
Share on other sites

Please help, I want to show the list of Urls scraped by the bot. Import the code does not work, Thanks!

 

Working ubot code:

 

ui list box("List of Urls",$replace(%urls,$new line,","),#my file)

set(#position," 0 ","Global")
 
HTML Code generated using the Genie ( does not work shows on a blank list ) :
 
<select id="addimager82939" class="listbox2" variable="#my file" fillwith="List of Urls" size="5" style="width:80px;height:95px;border-radius:4px;"></select> 
Link to post
Share on other sites

Small bug when you create a "File Select" element using the Genie:

- you have the option between "Save" and "Load"

- the generate code uses "Load" in Ubot Studiom, which acts as a..."Save" function

 

I have changed the "Load" manually to "open" on the HTML code and it works.

Link to post
Share on other sites

 

Please help, I want to show the list of Urls scraped by the bot. Import the code does not work, Thanks!

 

Working ubot code:

 

ui list box("List of Urls",$replace(%urls,$new line,","),#my file)

set(#position," 0 ","Global")
 
HTML Code generated using the Genie ( does not work shows on a blank list ) :
 
<select id="addimager82939" class="listbox2" variable="#my file" fillwith="List of Urls" size="5" style="width:80px;height:95px;border-radius:4px;"></select> 

 

 

When you add a listbox in the builder enter your variable in the "variable" field but leave the "options" field blank.

You will have to manually make a small change to the code from the builder when you add it to a bot.

Replace variable=\"#myfile\" fillwith=\"value\" with variable=\"#myfile\" list=\"#myfile content\" list-fillwith=\"options\"

Here is some example code:

clear list(%urls)
add item to list(%urls,"one,two,three,four,five","Don\'t Delete","Global")
set(#myfile content,%urls,"Global")
ui html panel("<select id=\"addimager975430\" class=\"listbox0\" variable=\"#myfile\" list=\"#myfile content\" list-fillwith=\"options\" size=\"5\" style=\"width:80px;height:95px;border-radius:4px;\"></select> 
",444)

Small bug when you create a "File Select" element using the Genie:

- you have the option between "Save" and "Load"

- the generate code uses "Load" in Ubot Studiom, which acts as a..."Save" function

 

I have changed the "Load" manually to "open" on the HTML code and it works.

 

Update: Version 2.6

Fixed bug mentioned above

Link to post
Share on other sites

Hello, many thanks for the bug fixing on open/load when add file select is chosen on from the GUI builder.

I have tried this but it did not worked "Replace variable=\"#myfile\" fillwith=\"value\" with variable=\"#myfile\" list=\"#myfile content\" list-fillwith=\"options\"

 

FYI, the original Ubot code shows a list of scraped web pages. It is a list of results when the bot is launched, not a dropdown with existing values.

Thanks again.

Link to post
Share on other sites

Hello, many thanks for the bug fixing on open/load when add file select is chosen on from the GUI builder.

I have tried this but it did not worked "Replace variable=\"#myfile\" fillwith=\"value\" with variable=\"#myfile\" list=\"#myfile content\" list-fillwith=\"options\"

 

FYI, the original Ubot code shows a list of scraped web pages. It is a list of results when the bot is launched, not a dropdown with existing values.

Thanks again.

 

Did you add the example code to a bot? It does work. The list you want to display in the listbox must be set as a comma separated variable: set(#myfile content,%urls,"Global") 

Link to post
Share on other sites

I have ended by giving-up trying to show that list box. As you know Ubot crashes after few hours and the GUI generator has still some strange behaviours being a bot made with Ubot. I am a Mac user and develop softwares using an other RAD tool, I could have done the same job in 1 hour using OSX....instead of 3 days with Windows...arggghh

I will stick with Ubot as most of my clients are looking for Windows based products.

By the way, I have contacted few Ubot developers but it seems everybody is very busy and/or asks for $500 for simple jobs...

I am looking for a part-time developer, contact me if interested :)

Link to post
Share on other sites

I have ended by giving-up trying to show that list box. 

 

Add the code below to a bot and run it. It navigates to google, enters a search term and adds the results(urls) to a list, then adds the list to a listbox:

navigate("http://www.google.com/","Wait")
wait for element(<name="q">,"","Appear")
type text(<name="q">,"ubot","Standard")
click(<name="btnK">,"Left Click","No")
wait for element(<innertext="Next">,"","Appear")
clear list(%urls)
add list to list(%urls,$scrape attribute(<href=w"http://*">,"fullhref"),"Delete","Global")
set(#myfile content,$replace(%urls,$new line,","),"Global")
ui html panel("<select id=\"addimager975430\" class=\"listbox0\" variable=\"#myfile\" list=\"#myfile content\" list-fillwith=\"options\" size=\"5\" style=\"width:350px;height:150px;border-radius:4px;\"></select> 
",255)
Link to post
Share on other sites

Thanks a lot for the update Darryl,

 

do you have an idea why it is running the script only on the second click? 

Here's a short video what I mean:

http://screencast.com/t/GGkTcTdEM2U

 

Dan

 

 

Hey dan,

 

I know this post is a month or so old but ive literally just stumbled across it and figured i would shoot you a reply just in case, 

 

Ive had similar issues to this in a few previous projects and not necessarily using Darryls GUI Hero but performing the same action of populating some text fields upon dropdown selection, 

 

I resolved this 100% by using " onchange="ubot.runScript('*YourDefine*()')"  " instead of "href" or "onclick"

this way the define doesnt need a waiting time and will execute upon selecting a drop down option .. or on its change if you will lol

therefore eliminating the possibility of the define executing before its needed :)

 

 

your a brainy chap so I have no doubt you have already figured it out or found another way ...  but as i said, just in case while I was passing through

 

 

 

Cheers

CJ

  • Like 1
Link to post
Share on other sites

Update: version 2.7

 

1- Added an option to show a visual grid to assist with lining up elements.

 

2- When adding a dropdown and setting it to run a define, changed the code to run the define onchange instead of onclick as suggested by CJ above.

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

Update: Version 2.8

Small Bug Fix: Was pointed out to me that if a user clicked a ui created with GUI Hero and pressed the right arrow key the ui would scroll, this has been fixed.

Link to post
Share on other sites

Two quick questions.

 

Do you plan any sales for the future?

Do you have tutorial videos?

 

I bought the other solution, because it had a sale, but no tutorials and the owner hardly ever replies to questions or support.

Link to post
Share on other sites

Two quick questions.

 

Do you plan any sales for the future?

Do you have tutorial videos?

 

I bought the other solution, because it had a sale, but no tutorials and the owner hardly ever replies to questions or support.

Same for me, GUI Hero is much better and updated regularly.

Link to post
Share on other sites

Hi steelersfan,

 

1) I don't normally have sales, but guess I can have one.

 

So for anyone interested  

 

Offer will close in 2 weeks time.

 

2) The 3 videos at the bottom of the opening post should cover everything you need to know. I don't think you should run into any problems if you watch those.

Link to post
Share on other sites

hi

 

i got problem starting gui hero. It stuck/ hang, and consuming very big memory, and keep raising

hope you can help

thanks

 

Hi Kate,

 

Can you try it with your anti-virus turned off?

 

You might have to download and install again with the antivirus turned off completely.

 

I do recall that I white listed a program once(one of my own) and it would not load, so I turned the antivirus off completely while I downloaded and installed and then it worked correctly.

Link to post
Share on other sites

Hi Kate,

 

Can you try it with your anti-virus turned off?

 

You might have to download and install again with the antivirus turned off completely.

 

I do recall that I white listed a program once(one of my own) and it would not load, so I turned the antivirus off completely while I downloaded and installed and then it worked correctly.

 

It could be a .Net issue too... when people do not have the right version it can make odd things happen - Just tossing ideas in hopes of helping.

  • Like 1
Link to post
Share on other sites

Problem solved.

After i upgrade to net framework 4.6.2 gui hero now works

 

Fast response from  darryl561 

 

thank you darryl561, and Brutal

Edited by kate
  • Like 1
Link to post
Share on other sites

Update: version 2.9

 

Added a "class" input field to most element dialog boxes for use when adding custom css.

So instead of adding an element then editing it to change the "class", you can now set the "class" when you add the element.

 

Also $20 discount sale ends in 4 days.

 

Sale has ended

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...