Jump to content
UBot Underground

addamroy

Fellow UBotter
  • Content Count

    386
  • Joined

  • Last visited

  • Days Won

    5

Everything posted by addamroy

  1. I'm looking for a way to display the results of a bot script inside a nice pop-up window. I need to be able to use HTML inside the pop-up, obviously I cannot add any HTML to the 'alert' feature but that would work perfect, considering the concept is the same. I tried the "in new browser" option but that just opens a small pop-up in the corner then disappears. I want a big nice box to pop-up and display some data.
  2. I've thought about writing the HTML to a new browser window, because I could scrape each one by DIV ID that way, without the need to create variables, but unfortunately you cannot use a "in new window" command while your 'hide browser' option is selected in the dev compile settings.
  3. That's not possible, because you cannot create variable names from lists or tables.
  4. So here's what I have going on. I'm making a Bot that's going to utilize a .pre-existing CSV file that the user has on their computer. The table has 2 columns. One for Item name and one for Item value. I'm trying to So far the bot will create a list for each column, one list for items, one list for values. Now when the bot is loaded, I have an on-load command that will populate a DIV in the Ui html panel, displaying an empty text box field for each item the user may have in the CSV file. The text area is used for the user to input a "quantity". I plan to multiply the "quantity" ente
  5. I just manually added your hash included in the script to the database, that worked.
  6. I get this error in phpmyadmin when I run that query #1062 - Duplicate entry '1' for key 1
  7. Tried it and that worked, however I realized another issue arising from using wsywig Just noticed that with wsywig editor in use, I cannot pre-fill those textarea fields by setting variables when loading the data from the file anymore. Works fine without it, but not with. Is there a workaround that you're aware of?
  8. Wouldn't the textareas not load with the wsywig if I place the script tags below them?
  9. So part of the UI HTML panel has textareas where the user inputs information... I added the script to turn the textareas to include wsywig tinymce... The code is simple, just put it before the </head> tag in your ui html panel... <script src="http://tinymce.cachefly.net/4.0/tinymce.min.js"></script> <script> tinymce.init({ selector:'textarea.wsywig', menubar : false }); </script> So for each textarea that you want to have the wsywig on, just add class="wsywig" attribute to it... ie <textarea class="wsywig" variable="blah blah"></text
  10. Ahh. One error in a node somewhere, next thing you know all the following add to list nodes throw errors... You know that little box that pops up, you can select 'continue' or 'stop script'? Well when you click STOP SCRIPT, the script should stop! Instead, i have to click the stop script button like 100 times until it finishes going through all the nodes. By far one of the most annoying things in the world.
  11. I'm trying to do table search, but I don't want it to return the row or column index, I just want to know if it found something or not. I was hoping there would be a way to get a true or false result from a table search. Basically I'm saving to a file... The end user enters a title for the save, it always saves to the .csv file as the first column for the data. What I'm trying to do is check the first column to see if the name exists before saving, and prompt the user if so (probably a confirm box).
  12. Seems to be working ok. Out of curiosity what did ya do what did ya do to the compilation system??
  13. This just started happening a moment ago. Is something going on with the ubot servers? I get about half way through the compile process and get an "The remote server has returned an error: (500) Internal server" message and it stops.
  14. What payment processor is this happening with? All of them or just a certain one.
  15. I did that, just can't figure out how to load the images from there. I tried removing the URL portion and replacing it with a special folder parameter, but it didn't work. Like I changed it from 'http://www.mydomain.com/img/pic.png' to '{application folder}/img/pic.png' to no avail. Just gotta figure out the proper way to include it within the HTML I suppose.
  16. That did help I got it figured out I think. Will probably be picking up this ubotlocker soon when I have the extra $$. Now it has my brain wondering how you could use it to download images to their computer for new UI panels or features without the need to load them from your own server... The end user would host it all... been trying and can't get that idea working lol... but that's for another thread.
  17. Cool thank you for that tip. I'm looking at inno setup now, I actually downloaded it I've been messing with it a bit. I'm not quite sure how to use it though and what to put in the various fields. Is there any way you could go out of your way and create a short walk-through of some sort to show how it would work with this ubot locker system?
  18. Can you think of any solution then to bypass having these not so pretty files in the folder? I can already see it, customer unzips folder, drags .exe to desktop then starts sending support requests asking why the product doesn't work. Maybe consider integrating an 'installer' so that you can save these files to a misc folder on the computer and read them from there instead of the application folder. I've been shopping around for license solutions and I heard this was good but the extra lingering files isn't appealing to me at all.
  19. I was reading through the manual and noticed that when you protect a bot, it outputs 3 files. The .exe and 2 .dll files? Can we change the name of these files? Do they have to be in the same folder as the .exe? Is there any way to have these 2 .dll files AUTOMATICALLY downloaded when the software is first run, such as the way your updating feature works? Considering picking this up.
  20. Is this thing still alive and working in the most recent version of ubot?
  21. Brilliant! Woulda never thunk it to be in with the parameters. Thanks!
  22. I was hoping there was some kind of feature for a confirmation dialogue box. I'm looking for a way to use something similar to the 'alert box' command, with OK or CANCEL. Of coarse if the user clicks OK the script runs, if they click cancel the script would stop. You know, "are you sure you want to delete this" - ok or cancel... I'm surprised the alert box doesn't have a cancel button, then return true or false. argh any ideas?
×
×
  • Create New...