Jump to content
UBot Underground

Leaderboard

Popular Content

Showing content with the highest reputation on 03/30/14 in all areas

  1. UPDATE - NOW WORKS WITH ALL VERSIONS OF UBOT STUDIO (see below for standard/pro version) I needed a small progress bar for a project I'm working on and wanted it to be "lightweight" and easy to work with without a lot of 'riff-raff'. It worked so well I thought I'd share it with all of you. I've attached code and .ubot file. Notes: This is accomplished using HTML5Displays in HTML UI Panel (Dev Only)Updated to display rounded numbers in % set(#progress, 0, "Global") ui html panel("<body> <progress variable=\"#progress\" fillwith=\"value\" max=\"100\" style=\"width:300px;\"></
    1 point
  2. Hi. I just tested the Plugin and it works fine. The first thing you have to do is to manually generate an access token on the facebook site: https://developers.facebook.com/tools/explorer/?method=GET&path=me%3Ffields%3Did%2Cname&version= You click get access token. Select all checkboxes on all three windows. Confirm all the dialogs. So that you see a token in the token field. All of that has to be done in your regular browser. NOT in ubot. after that is done, then you can start using the Plugin. The token you manually created is associated with your facebook login credenti
    1 point
  3. Hi. I played around with csv and tables recently and so far everything worked fine (ubot v4). Not tested in v5. Dan
    1 point
  4. Only having the obvious like commas in a cell but im not sure if ubot standard tables takes care of this for you
    1 point
  5. ui block text("spinsyntax", #Ui_Text) navigate("http://www.ubotstudio.com/playground/simple-form", "Wait") type text(<username field>, $spin(#Ui_Text), "Standard")
    1 point
  6. Here is a K.I.S.S Version of using this progress bar I've been using lately... (KISS Stands for "Keep It Simple Stupid"... I think its an American thing so figured I better clarify:) Hopefully it helps some people out, I think its pretty straight forward, if not, feel free to ask questions... ui html panel("<html><body><span variable=\"#kissprogress\" fillwith=\"innerhtml\"></span></body></html>", 100) set(#kisslooptotal, 57, "Global") set(#kissloopcount, 0, "Global") loop(#kisslooptotal) { increment(#kissloopcount) wait(0.10) set(#kissprogres
    1 point
×
×
  • Create New...