Результаты поиска

  1. Tobbe

    Lets discuss ZennoBox options

    I've been out of the loop regarding zennoposter/box the last couple of years. Any update on this?
  2. Tobbe

    If/switch logic with regex

  3. Tobbe

    If/switch logic with regex

    Unless I've missed something, as I haven't updated my license in forever, If/Switch doesn't allow regex.
  4. Tobbe

    How to create wait for text to appears then continue script

    Give this a try.
  5. Tobbe

    How to create wait for text to appears then continue script

    Flash is gonna be tricky. You sure it isn't javascript/jquery? It's the most common today and with HTML5 released Flash is soon gonna be history. Beside image recognition (which is a bad solution imo) it's hard to tell when I don't know which site you're working with. If you uploaded your...
  6. Tobbe

    How to create wait for text to appears then continue script

    Working example.
  7. Tobbe

    Any simple way to search value in table?

    Spot the difference. idk if there's more to it, just what I noticed at a quick glance at it.
  8. Tobbe

    Using specific Proxy for each E-Mail Signup

    The format for private proxies in zenno is username:password@ip:port.
  9. Tobbe

    Question about Input Settings and Defaults

    Values are not saved between runs. Whenever you start an instance all variables will be set to their default value. You need to use global variables or communicate between the instances trough a textfile or similar. ie: Check if file exists. If not, download it. If it does, do something else...
  10. Tobbe

    http post refusing to work...

    Are you trying to use PHP in zennposter? Here's a working example with the POST feature.
  11. Tobbe

    WTF Is Up With All The Spam Posts?

    Idk what a forum update would change if you wasn't running an old beta version, which I assume wasn't the case. Xenforo has lots of antispam features and have had for quite some time now, you should consider putting them to use as the spam has obviously not stopped. With that said I'm done...
  12. Tobbe

    How to create threads

    You sure is requesting a lot for someone that already know how to set it up. Start reading. http://zennolab.com/wiki/en:start http://zennolab.com/discussion/threads/zennoposter-tutorial.12724/ or http://zennolab.com/discussion/forums/marketplace.87/
  13. Tobbe

    Set REMOTE_ADDR

    There's not. You cant just make up an IP or use one you don't have access to.
  14. Tobbe

    Set REMOTE_ADDR

    REMOTE_ADDR is a way to look up the IP of an incoming request. You have to use a proxy if you wish to change it.
  15. Tobbe

    Content creator [new]

    http://seocontentmachine.com/how-to-remotely-control-your-content-creation/
  16. Tobbe

    How to check if result is a mobile number?

    The match can not be followed by any character or number.
  17. Tobbe

    How to check if result is a mobile number?

    Yes you can use regex for that. Without knowing more specific of what format you're looking for maybe this will get you going. http://tobbe.co/regex
  18. Tobbe

    Text Processing - How to replace characters with spaces?

  19. Tobbe

    I need a help

    The easiest is to find something unique with the alert and spot the difference of if it's active or not. In this case there's a <p> element with the classes taken error active but while it's hidden it only got taken error. So by checking if there's a DOM element existing with the first set of...
  20. Tobbe

    I need a help

    I dont think {var1} contains what you think it contains. If you check the variables table you'll see that what you grab is different from what you're trying to compare it against. '{-Variable.var1-}' == 'This email is already registered. Want to login or recover your password?' which is the...
  21. Tobbe

    "You are using not purchased version" when client has purchased template

    So is it verified that it's the templates fault it's not working? Earlier it was stated that zennobox threw this error on startup, and not the template.
  22. Tobbe

    About remove brending

    Both.
  23. Tobbe

    Getting funds out of my zennolabs account?

    I'm sure an admin will answer this as soon as they see your question. No need to bump your thread after only 6h, be patience, and think about the time zones.
  24. Tobbe

    About remove brending

    Right. But rostonix and nuaru has already confirmed that it is features that will get implemented. Which ofc leave us wondering what happened to those original plans when you're saying you'll forward it so it can be considered.
  25. Tobbe

    New interface

    Sounds like you're pretty much explaining how the Labels work.
  26. Tobbe

    regex help

  27. Tobbe

    Unbranded + HTML version

    Soon. Stop stressing! :ap:
  28. Tobbe

    Can't check for presence of text specified as variable

    ")" has a special meaning when used in regex, which is why you have to escape it. http://www.regular-expressions.info/characters.html http://tobbe.co/regex
  29. Tobbe

    Add folder name/add prefix in front of file name

    Type it in on Path On Server. http://zennolab.com/wiki/en:actions:ftp
  30. Tobbe

    Zenno Action for waiting on specific port

    Maybe this will give you some ideas http://zennolab.com/discussion/threads/one-bot-to-start-another-bot-in-zennoposter.24861/
  31. Tobbe

    Zenno Action for waiting on specific port

    Instead of keeping a connection open you could check every once in a while if the data has changed. True = proceed. False = check again in 60 seconds.
  32. Tobbe

    Help with iterating through text file of email addresses, passwords

    To optimize it further you should bind the table to the file. http://zennolab.com/wiki/en:table http://zennolab.com/wiki/en:looping
  33. Tobbe

    How to work with such csv

    @qzen4i what version you using? It's not the same result I'm getting, neither by using the built in TAB option or my own. Hence my post above with a workaround.
  34. Tobbe

    Any simple way to search value in table?

    You refer to this? There's already a counter keeping track of the rows the script process in that loop. So instead of returning yes/no, you can tell it to return the current count of the variable instead. // take text for search from a variable var textContains =...
  35. Tobbe

    How to work with such csv

    Workaround for now.
  36. Tobbe

    Add variable in an Input/textarea

    I'd only recommend to use the record mode as a helper in order to speed stuff up and place actions in your template, something like a boilerplate. The more you work with zennoposter you're gonna notice that it's not some 1-click-magic-button, but some times require you do edit the actions...
  37. Tobbe

    Add variable in an Input/textarea

    Merge them together with Variable Processing (shown in my first post). http://zennolab.com/wiki/en:variables
  38. Tobbe

    Add variable in an Input/textarea

    @Franck
  39. Tobbe

    Add variable in an Input/textarea

    Example template
  40. Tobbe

    Add a new line on a file or list or table for each loop

    @leadssolution Easiest way is just to set all values you wanna save to variables, then add it all into a line in one go. http://zennolab.com/wiki/en:table
  41. Tobbe

    How to write multiple lines in a table, all at once (multithreaded project)?

    Give each thread a random unique ID (or a counter). Say thread 1 = 111 and thread 2 = 222. The table would look something like: Sex, Age, ID Male, 18, 222 Female, 22, 111 Female, 25, 222 Male, 20, 111 Then chose to sort the table by the column called ID (added in v5.9.7.1) and it would result...
  42. Tobbe

    How to work API & Get / Post Request

    http://zennolab.com/wiki/en:table
  43. Tobbe

    Continue even when there is an error

    Yes, that's currently how it works :-) Here's some examples.
  44. Tobbe

    Continue even when there is an error

    Use logics to decide what to do next if an action fails. All actions have a Good or Bad outcome which you can attach follow-up actions to in the editor. If something unpredictable happens you can use BadEnd to catch the error and/or backup data. If the template doesn't know what to do next...
  45. Tobbe

    How to get a line from Table with highest number in column A ?

    Snippet to determinate what variable got the lowest value
  46. Tobbe

    how to get system time

    It's a variable, not a macro. Just put it where you need to use it. http://zennolab.com/wiki/en:variables
  47. Tobbe

    Scrape Values in ZennoPoster 5.9.8.0 demo

    If you want to work with them one at the time: List processing -> Get Line (delete) -> loop it. http://zennolab.com/wiki/en:list http://zennolab.com/wiki/en:looping Or if you want it all into one variable, List processing -> Merge list items.
  48. Tobbe

    Can i edit form request before submitting?

    What I guess is randomly generated is the NAME attributes, which first can be grabbed and then used to build a POST request. If they use JS to build the fields, you can work with the DOM instead of source to grab info from it.
  49. Tobbe

    Can i edit form request before submitting?

    There's already a solution for that. And that's exactly what forms are for, "preparing a request". Add / Remove / Edit / Copy / Fill however many fields you want in a form/source. Not before you submit will the data be sent. Just modify it before you submit. Or do a POST request directly and...
  50. Tobbe

    How to replace source of page

    Then what is your question? The question in your original post is answered above.