Jump to content
UBot Underground

zenos

Members
  • Content Count

    283
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by zenos

  1. The same problem here, some field not recognized, I' m gonna tell wich one in 5 minutes ;)

     

    5minutes later.... In tumblr, when I want to write a new article here : 

     

    http://i.imgur.com/1RMbvzg.png

     

    The only thing that works is the publish button, not the "title" and the "article".... I think it's javascript that's why it doens't work... 

  2. Try debugging the error using a notepad. Copy all of your code into a notepad and begin adding it back in segments. That way you can easily locate and remove the code that is causing the issue.

     

    Edit: Sorry, I just reread your post. If this is working when in node view like normal, then when you close and reopen this same bot it loads in code view with an error it might be a bug. I have had something like this happen in one of my projects I was working on. You might want to contact support and see what they say.

     

    Thanks for yoiur answer ;)

     

    My error is here, When I delete this, the code color is good : click(<outerhtml=w"<img src=\"http://blabla.com/*\">">, "Left Click", "No")

     

    EDIT:  I'm gonna ask the support, thank you all ;)

  3. Hi,

    I seem to be having a problem with the keyboard event command not always working. I'm giving focus to the application in question but issuing the keyboard event command seems to do nothing. Pressing the required key manually is working fine. Anyone else ever experience this problem?

     

    Best regards Steve

    Hello everybody,

    I got the same problem,

    I need to press "space" or "pg down" to scroll down and to load the new messages on a page, but nothing seems to work... Is somebody ever had this problem ? 

     

    Thanks for the answers guys ;)

  4. Hi magoo and thanks for your answer,

    I'm sorry but i don't understand, I'm a real noob in ubot and I'm french...

     

    I did this but it doesn't work...

     

    ui button("pause") {
    define true(#pause) {
        }
    }
    ui button("unpause") {
    define false(#pause) {
        }
    }
    define pause {
        loop while("pause true") {
        }
        loop($list total(%Clean Url List)) {
            navigate($next list item(%Clean Url List), "Wait")
            wait for browser event("Everything Loaded", "")
           
    }
    

     

     

    am i in the right way ? It doesn't seem to work... That makes me crasy...

  5. If you use STOP script then when you PLAY the script again, it runs from the beginning of the script flow but if you use PAUSE then it continues from the flow where it left off. So, if it PAUSED at command line 50, then it will continue from there when you click PLAY.

     

    Thank you but i know that. My question is : how can i make a play, pause and stop button to integrate in my ui html panel here ?

     

     

    ui html panel 
    ("<!DOCTYPE html><html>
    
    <input type=\"image\" onclick=\"ubot.runScript(\'Load project()\')\" src=\"http://tdiv.free.fr/commente.png\">
    
    <input type=\"image\" onclick=\"ubot.runScript(\'Stop project()\')\" src=\"http://tdiv.free.fr/stop.png\">
    
    </body>
    </html>", 500)
    
    Define Load project {
    
        if(#plateforme = "wp1") {
            
            then {
                loop($list total(%Clean List)) {
                    navigate($next list item(%Clean List), "Wait")
                    wait for browser event("Everything Loaded", "")
                         }
                    }
    
    
    define Stop project {
        stop script
    }
  6. I'm sorry but i don't understand how to pause or stop script....

     

    My button play works like this  in ui html panel :

     

     

    ui html panel 
    ("<!DOCTYPE html><html>
    
    <input type=\"image\" onclick=\"ubot.runScript(\'Load project()\')\" src=\"http://tdiv.free.fr/commente.png\">
    
    <input type=\"image\" onclick=\"ubot.runScript(\'Stop project()\')\" src=\"http://tdiv.free.fr/stop.png\">
    
    </body>
    </html>", 500)
    
    Define Load project {
    
        if(#plateforme = "wp1") {
            
            then {
                loop($list total(%Clean List)) {
                    navigate($next list item(%Clean List), "Wait")
                    wait for browser event("Everything Loaded", "")
                         }
                    }
    
    
    define Stop project {
        stop script
    }

     

     

     

     

    The two buttons work correctly but it restart the loop after 3 seconds when i clic the stop buttonstop. So i know that you know that, but how can i do with your method in my script ? I cannot understand...

     

    And how can i integrate the pause button two in my script. It's been three days i try to fix it...

     

     Sorry and thanks for your answer ;)

×
×
  • Create New...