Jump to content
UBot Underground

darryl561

Fellow UBotter
  • Content Count

    555
  • Joined

  • Last visited

  • Days Won

    33

Everything posted by darryl561

  1. I have not upgraded to X so I don't know. But if you do purchase and find that it doesn't you can get a refund.
  2. Use "File Select" instead of a button to add an Open File element. The Start button works fine, you just need to add a define to your bot called "Start" and add your commands to the define. ui html panel("--Open File Button-- <input variable=\"#localBizs\" fillwith=\"value\" type=\"file\" id=\"addimager89966\" dialogtype=\"open\" name=\"file\" class=\"button08\" style=\"text-decoration:none;padding:7px 15px;font-family:Georgia;font-size:18px;font-weight:800;color:#000000;border-radius:9px;\"><!--lab-->Load Local Business File</input> --Run Button-- <button id=\"a
  3. A free workaround would be to use a ui html window instead of the ui html panel and have it open onload, then have it close when the user clicks a button to run the bot. Example code: on load("Bot Loaded") { plugin command("WindowsCommands.dll", "keyboard event", "Alt", "Key Press") plugin command("WindowsCommands.dll", "keyboard event", "t", "Key Press") plugin command("WindowsCommands.dll", "keyboard event", "Enter", "Key Press") } define demo { plugin command("WindowsCommands.dll", "close window", "demo", "") navigate("http://www.google.com","Wait") type text(<
  4. 1) If radio buttons don't work in ubot 4 then It must be a ubot problem. 2) When you delete an element it's variable will be deleted as well. I just tested again and the variable of the deleted element did not show up in ubot. 3) Where is that "random things" code showing up? I have not seen or had reports of that kind of thing happening before. Can you send me the .txt file for the ui that this is happening in? You can find it in the C:\GUI Hero\projects folder. 4) You can't edit custom script in the builder. If you try to edit it you will actually "add" the "edited" version as we
  5. Hi Steve. Things like creating wizard style ui's and creating a ui with Conditional Tabs can only be done with Gui Hero, plus there are a number of other features exclusive to Gui Hero. Get it Here for $47 for a short time only. Cheers.
  6. I can't find the thread and can't remember who shared it but I had saved this stop/pause/resume code: ui html panel("<button onclick=\"ubot.runScript(\'run_bot()\')\">Start</button> <button onclick=\"ubot.runScript(\'stopbot()\')\">Stop</button> <button onclick=\"ubot.runScript(\'pausebot()\')\">Pause</button> <button onclick=\"ubot.runScript(\'un_pausebot()\')\">Un-Pause</button>",300) define run_bot { load html("Hey") wait(1) Stop Pause Check() load html("I") wait(1) Stop Pause Check() load html("Hope") wait(1)
  7. Hi Marton, in code view remove the 2 backslashes from this part of your code: \{#myvariable\} so that in node view it looks like the second image. first second
  8. Changed the dropdown to run a define "onchange" rather than "onclick" ui html panel("<select onchange=\"ubot.runScript(\'test()\')\" variable=\"#dropDownVar\" fillwith=\"value\" style=\"width:60px;height:30px;border-radius:4px;\"> <option>1</option> <option>2</option> <option>3</option> <option>4</option> <option>5</option> <option>6</option> <option>7</option> <option>8</option> <option>9</option> </select> <br> <br> <input type=\"checkbox\" variable=\"#male\
  9. Hi afkratien, Sorry but no. I did add something similar a while back but I have not been able to get the source bot to compile any-more. I think it must be due to it's size.
  10. I think the "Untitled Bot" would be there because you have not given your source bot a name and saved it. Regarding "those texts" it is a ubot issue. tripros asked me about that exact same thing once, he contacted support and this is what he told me about that problem: Thanks much Darryl, just a quick update on this. Contacted Ubot and it appears to be a Ubot issue when you select all optional compiling options (remove branding, menus, browser, etc). They added the issue to their tracker and will be hopefully addressing the issue in the next ubot update. You only have 1 tab so that
  11. Hi afkratien, all I can think to suggest is to check if you have net framework 4.6.2 or higher installed. If thats not the cause of the problem then I'm sorry but I don't know what the problem would be. I run windows 10 , 64 bit and GUI Hero works fine on that, so not sure if being 32 bit would cause an issue or not. If you cannot get it to work then let me know and I will refund you. Darryl.
  12. Hi Steve, should work with any version that has the UI HTML Panel, not sure if the standard version has that or not. Darryl.
  13. No you don't need them both. If you want to use ubots default editor and just add styling to it then I would recommend using UI Editor Genie. If you want more options and features than what is available in the default editor for creating your gui's then I would recommend GUI Hero Cheers.
  14. Hi Peter, unfortunately when I add new features to GUI Hero now I am not able to get it to compile. I don't know why but I put it down to it being such a big bot. Should be able to add it manually though, will PM you how to do it.
  15. You can do that with GUI Hero. See this post: http://network.ubotstudio.com/forum/index.php/topic/19292-sell-gui-hero-the-ultimate-easiest-tool-for-creating-ubot-guis/?p=126119 You will need the developer(maybe pro) edition though.
  16. Not sure how you can add a multiple select listbox to the ui. pash's Advanced Dialog Plugin has a "listbox dialog" that can be used to select multiple items. It can't be added to the ui but you could set it to open either automatically once the data is added or from clicking a button in the ui.
  17. I think you would need to use "load html" in the browser to display a jquery datagrid. The only way I can think of to display it in the ui html panel would be to create the table/datagrid with your bot and set the entire datagrid as a variable. But if it has a lot of data I think it could cause your bot to freeze more-so than if you display it in the browser. There are others here that are far more knowledgeable about this than me though, so might pay to check with others.
  18. If I'm right about what you are trying to do the code below should do it. Where you have ubot.runScript(\'SetStatus(Good)\') you need to replace Good with a numerical value. ui html panel("<button onclick=\"ubot.runScript(\'SetStatus(0)\')\">GOOD</button> <button onclick=\"ubot.runScript(\'SetStatus(1)\')\">BAD</button> ",100) define SetStatus(#Status) { if($comparison(#Status,"= Equals",0)) { then { set(#Status2,"Good","Global") } else { set(#Status2,"Bad","Global") } } alert(#Status2) }
  19. When you add a dropdown there is a field where you have the option to enter a "Define to run". Just enter the name of the define you wish to run in that field, and the dropdown will automatically be coded to run that define onchange. Cheers.
×
×
  • Create New...