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

  1. bigcajones

    Работа с переменными в основном постере.

    Пауза как раз то, от отрицательных выйти в случае пустой строки в таблице. Линии, указанного в таблице связаны с файлов и удалить в файле, поэтому другие потоки будут тянуть новую линию из файла. Каждый поток работает с отдельной строкой в ​​файле. В примере, линии, которая была вытащил из...
  2. bigcajones

    Работа с переменными в основном постере.

    https://www.dropbox.com/s/1i27z1r2cq7rn3o/Multithread.rar
  3. bigcajones

    [SOLVED] Работа с YOUTUBE. Голосовалка за комменты.

    Do regex on page DOM... (?<=comment"\ data-author-id=")[\w\W]*?(?={-Variable.commentUser-})|(?<=comment"\ data-tag="top"\ data-author-id=")[\w\W]*?(?={-Variable.commentUser-}) commentUser является наименование, указанное на комментарий. Возьмите первый матч...
  4. bigcajones

    UserAgent

    Useragent string remains the same when regenerating profile. I have noticed that with the default set for browser settings the useragent remains the same every time. Firefox/19.0. How about adding some new user agents to our default profiles. I mean Firefox updates itself most of the time so...
  5. bigcajones

    Context Recognizer questions

    They are strings, you should delimit them. '{-Variable.Name-}'=='{-Variable.Name2-}'
  6. bigcajones

    Some help with action designer please

    That's because you have to click on the month, this is not something that you can use innerhtml on.
  7. bigcajones

    создание кросс-списка

    {-Project.Directory-}\ not /
  8. bigcajones

    How to Remove elements from ListA that can be found on ListB

    Any time.
  9. bigcajones

    Loading website with proxy and Busy time

    Under Tabs in the Actions you will see Settings. You can change the page load time there.
  10. bigcajones

    Snippet samples

    Sure.
  11. bigcajones

    ProjectMaker crashes evertime I click 'load emails'

    Is this just for one template? If so rebuild it. Something got screwed in the code.
  12. bigcajones

    Some files deleted when ZP downloaded it

    Just a question, why would you use keystroke emulation for putting large quantities of text in an input field. Just use normal Set action and set the emulation to speed. In the real world, most people would copy and paste large blocks of text into a website so it is not seen as something spammy...
  13. bigcajones

    Is it possible to get last action comment in variable ?

    var error = project.GetLastError(); var tmp = ""; if(error != null) tmp = string.Format("Project Name: {0}.\r\nActionComment: {1}.\r\n", "{-Project.Name-}", error.ActionComment); return tmp;
  14. bigcajones

    how to use functions in javascript?

    var x={-Variable.Variable2-}+ Math.round(0.8*{-Variable.Variable4-})
  15. bigcajones

    Ajax scraping..

    If you have the basics built in PM Amul, then just run it in the poster. You won't have the crashing problem in there.
  16. bigcajones

    Zennobox ?

    Skype:iamthedarkwiz Hit me up.
  17. bigcajones

    HOW to Selecting ALL match in actions designer?

    http://zennolab.com/discussion/showthread.php?8816-Snippet-samples&p=50402&viewfull=1#post50402
  18. bigcajones

    Why not work, Regex with variable in a value field ?

    Okay, strange coincidence but it happened to me also on a site that I was working on. Okay Anton, can you check into this. If needed I will send you or HB the template.
  19. bigcajones

    Why not work, Regex with variable in a value field ?

    And you are sure that the User Name is on the source of the page? Have you tried the Dom text instead?
  20. bigcajones

    How replace break line (\n) to <br/> ?

    \n is a regular expression. Change the match to Regex and it should work.
  21. bigcajones

    Why can't use variable as value in Event Window?

    zeus is right. Also try changing the document and form #'s to -1 because when using proxies sometimes these will change.
  22. bigcajones

    keystroke emulation Ctrl+C ,How ?

  23. bigcajones

    Collect multiple URL files into one file

    Here you go... Get file list from the directory and put to list. List processing take line from list and delete which is path to file. Take text from file and put to variable. Here I add the variable to a list that is bound to a file, but you could just as easily do a file processing and add...
  24. bigcajones

    Video Tutorials?

    Check out Dejan's vids to get you started at http://www.youtube.com/dexlabseo and there are some on the wiki... http://wiki.zennolab.com You can hit me up on Skype and I'll help you get started too.
  25. bigcajones

    [C# - if else] Почему выдает ошибку?

    Yes, it worked for me too. I noticed sometimes you have to press restart when editing C# actions.
  26. bigcajones

    How can I highlight all text in text field?

    HtmlElement he = instance.ActiveTab.FindElementByAttribute("input:text", "outerhtml", "Subject", "text", 0); // check the element lock(SyncObjects.InputSyncer) { System.Windows.Forms.SendKeys.SendWait("^a"); } you will have to replace the element attributes with the ones that match the...
  27. bigcajones

    About the proxy problem

    user:pass@ip:port
  28. bigcajones

    Can One Zenno Project call another zenno project?

    Sure you can do it with c# code. var searchName = "example1"; var searchResult = false; // get the task list from the ZennoPoster var tasks = ZennoPoster.TasksList; foreach (var tsk in tasks) { // loading Xml documnt with task content var doc = new System.Xml.XmlDocument()...
  29. bigcajones

    ZP Variables Tutorial

    You know where to go for the answer to your questions. ;)
  30. bigcajones

    Scraping via GET request & captcha issue.

    You would have to spin the user agents before that action and then use the resulting variable in the UA box. And yes, you would want to setup the proxy first and then use Project proxy in the GET box if you want to hide from the site where you are coming from. On your first question, it used to...
  31. bigcajones

    Can't scrap with parse regex cause the text is broken in two different lines (help!)

    There is an include line breaks in the v3 regex building. It will put [\w\W]+ in the regex instead of .* Look above the 'Shortest Match' if I remember correctly.
  32. bigcajones

    How to count no. of elements?

    His solutions are always the best. He's the man!
  33. bigcajones

    problem with "shortest match" in regex

    \w+(?=\|) will give you a word if that is what you are looking for. The shortest match is for something where you have 2 of the same character, line or number in the string you are looking for and need to stop the regex at the first one.
  34. bigcajones

    problem with "shortest match" in regex

    \d+(?=\|) will give you 4.
  35. bigcajones

    does zennoposter solve its own captchas?

    No, you have to enter manually or use one of the services like decaptcher or dbc
  36. bigcajones

    Parse Count

    You would have to regex the page to find ALL links and save them to a list. Then do list processing and use Count of lines to get the number of matches
  37. bigcajones

    is ZP 5 32 or 64 bit?

    Both Matt. I have it installed on a 12 year old Win XP and on a Win7 laptop along with a Windows server. You shouldn't have any problems.
  38. bigcajones

    zenno poster supports ulti threading

    Yes
  39. bigcajones

    Sublist Bug

    I am using sublists to get info for posting. When I merge the list items and use New Line, it always reverts back to that default. If you click on another action and go back and open it again it is back to default.
  40. bigcajones

    Start The Instance Maximized

    Is there a way through code to change the size of the instance on start?
  41. bigcajones

    Zennoposter and nested spinning?

    Yes, it should. Try something like... {The {quick|fast|speedy} brown fox {jumped|leaped|hopped} {over|right over|over the top of} the {lazy|sluggish|care-free|relaxing} dog.|{While|Although} just {taking|having} a{| little| quick} {siesta|nap} the dog was {startled|shocked|surprised} by a...
  42. bigcajones

    How can I get the size of a file/image?

    You can use the code provided in a c# action.
  43. bigcajones

    Good javascript examples using Zennoposter?

    Yes, and then that will get passed to whatever variable you have for the action itself
  44. bigcajones

    Good javascript examples using Zennoposter?

  45. bigcajones

    Facebook a link not found in debugger, no matter what...

    You could use regex OR which is a pipe(|).... js_2|js_3|js_4|... or you could use the regex expression js_\d+
  46. bigcajones

    Good javascript examples using Zennoposter?

    What are you trying to do Mishav? If you give us an example of what you are trying to do, I'm sure someone here will get you going the right direction. Did you try putting it into the javascript tester?