-
Content Count
555 -
Joined
-
Last visited
-
Days Won
33
darryl561 last won the day on October 26 2017
darryl561 had the most liked content!
Community Reputation
177 ExcellentAbout darryl561
-
Rank
Advanced Member
Profile Information
-
Gender
Not Telling
-
Location
Australia
System Specs
-
OS
Windows 7
-
Total Memory
2Gb
-
Framework
v4.0
-
License
Developer Edition
Recent Profile Visitors
13987 profile views
-
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.
- 179 replies
-
- gui
- drag and drop
- (and 5 more)
-
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
-
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(<
-
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
- 179 replies
-
- gui
- drag and drop
- (and 5 more)
-
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.
- 179 replies
-
- gui
- drag and drop
- (and 5 more)
-
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)
-
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\
-
Hi Andy, I think you will have to install the update manually. I will PM you with the link.
- 179 replies
-
- gui
- drag and drop
- (and 5 more)
-
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.
- 179 replies
-
- gui
- drag and drop
- (and 5 more)
-
Watch this: https://youtu.be/z0vfCMwTpx0?t=1m3s just make the width as wide as you need to.
- 179 replies
-
- gui
- drag and drop
- (and 5 more)
-
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
- 179 replies
-
- gui
- drag and drop
- (and 5 more)