Jump to content
UBot Underground

jimbourekas@yahoo.gr

Fellow UBotter
  • Content Count

    31
  • Joined

  • Last visited

Community Reputation

1 Neutral

About jimbourekas@yahoo.gr

  • Rank
    Advanced Member

Profile Information

  • Gender
    Not Telling

System Specs

  • OS
    Windows 8
  • Total Memory
    8Gb
  • Framework
    v4.0
  • License
    Professional Edition

Recent Profile Visitors

2663 profile views
  1. I know it's an old thread but I thought that this may help someone. I have converted my images to Base64 (there are many free online tools) and then used the Base64 encoding of the picture instead of the actual file. I did this also for some background images at my UI Panels.
  2. Ok, after I contacted support, Robert was very kind to give me the solution. Apparently, the value gets overwritten, that's a truth. The solution is to make my 'onchange' event trigger a ubot function that sets the "variable" param. I attach the fixed script. jim skata2 - fixed.ubot
  3. Hello, I have the following UI Panel code: ui html panel("<!DOCTYPE html> <html> <body> <div> <select variable=\"#myvar2\" fillwith=\"value\" id=\"icd10\" onchange=\"doIt();\"> <option value=\"United States\">United States</option> <option value=\"United Kingdom\">United Kingdom</option> <option value=\"Afghanistan\">Afghanistan</option> </select> <div id=\"hiddenIcd10\" variable=\"#myvar\" fillwith=\"innertext\"></div> </div> </body> &l
  4. Hello, I know it's over 2 years later that I'm waking this thread up. I am wondering, is it possible with version 4 to display a pdf in the browser area just like your screenshot? jim Ok, I got support to answer this. Version 3 was based on Internet Explorer core while version 4 is not. So, the answer is that it cannot display a pdf...
  5. Follow these instructions for a completely silent solution: Create a file del_file.vbs using your notepad Put these contents inside: set fso = CreateObject("Scripting.FileSystemObject") If fso.FileExists(WScript.Arguments(0)) Then fso.DeleteFile(WScript.Arguments(0)) End If Create a ubot command using the following code: define delete_vbs(#filepath) { shell("wscript.exe \"{$special folder("Application")}\\del_file.vbs\" \"{#filepath}\"") } Put the .vbs file in the same folder as your ubot script To delete a file, just call the command: delete_vbs("c:\\myfile.txt") The file ge
  6. Accordingly, in the UI panel you would then have something like this: ui html panel("<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"> <html xmlns=\"http://www.w3.org/1999/xhtml\"> <head> <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\" /> <title>your title</title> </head> <body> <div variable=\"#stat_thread1\" fillwith=\"innerhtml\"> </div> </body> </html>", 40) You have to understand that the UI Html panel is not u
  7. I know it's been more than a year since this thread was updated, but I just read it. What is this syntax for? change attribute(<name="userfield[field8]">, Is this an array type? jim
  8. Hello there, I noticed that the "Delete File" command sends the files to the Recycle Bin. I need to properly delete a file. Any ideas? jim
  9. I asked the same question at Support. Basically, you get one licence per username but you can use it on two computers (i.e. laptop and desktop). You cannot run both of them at the same time. We had to purchase a second licence about a week ago (no discounts available).
×
×
  • Create New...