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

  1. bigcajones

    ProjectMaker crashes evertime I click 'load emails'

    Is this just for one template? If so rebuild it. Something got screwed in the code.
  2. 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...
  3. 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;
  4. bigcajones

    how to use functions in javascript?

    var x={-Variable.Variable2-}+ Math.round(0.8*{-Variable.Variable4-})
  5. 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.
  6. bigcajones

    Zennobox ?

    Skype:iamthedarkwiz Hit me up.
  7. bigcajones

    HOW to Selecting ALL match in actions designer?

    http://zennolab.com/discussion/showthread.php?8816-Snippet-samples&p=50402&viewfull=1#post50402
  8. 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.
  9. 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?
  10. bigcajones

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

    \n is a regular expression. Change the match to Regex and it should work.
  11. 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.
  12. bigcajones

    keystroke emulation Ctrl+C ,How ?

  13. 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...
  14. 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.
  15. bigcajones

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

    Yes, it worked for me too. I noticed sometimes you have to press restart when editing C# actions.
  16. 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...
  17. bigcajones

    About the proxy problem

    user:pass@ip:port
  18. 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()...
  19. bigcajones

    ZP Variables Tutorial

    You know where to go for the answer to your questions. ;)
  20. 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...
  21. 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.
  22. bigcajones

    How to count no. of elements?

    His solutions are always the best. He's the man!
  23. 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.
  24. bigcajones

    problem with "shortest match" in regex

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

    does zennoposter solve its own captchas?

    No, you have to enter manually or use one of the services like decaptcher or dbc
  26. 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
  27. 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.
  28. bigcajones

    zenno poster supports ulti threading

    Yes
  29. 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.
  30. bigcajones

    Start The Instance Maximized

    Is there a way through code to change the size of the instance on start?
  31. 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...
  32. bigcajones

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

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

    Good javascript examples using Zennoposter?

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

    Good javascript examples using Zennoposter?

  35. 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+
  36. 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?
  37. bigcajones

    Checking presense of an image or an element on the page.

    The problem with doing text presence check on javascript is that it is usually there on the page whether the submission was complete or not and is triggered by success or not. Sometimes it is possible to get a check by url after submission or I have used search by picture before but it is not 100%.
  38. bigcajones

    image finder only searches first 6000 pixels

    Best to find the element attributes for what you are looking for and not use search by picture on large websites. If you need some help hit me up on skype or PM me here or on IMS.
  39. bigcajones

    File Save Error File Save

    I did. The folder where I was trying to save on my server was read only for some reason. Changed it in the properties and it worked.
  40. bigcajones

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

    http://msdn.microsoft.com/en-us/library/system.io.fileinfo.length.aspx
  41. bigcajones

    HTTP POST, am I doing something wrong?

    Encode the email. Should be irmscher9%40gmail.com. You are sending the info urlencoded so you have to encode it.
  42. bigcajones

    Error on https

    same here
  43. bigcajones

    Помогите!

    http://wiki.zennolab.com/doku.php?id=ru:ranges
  44. bigcajones

    How to create a custom user interface in ZP?

    You can set up a php page that takes info from you or your clients and once it is submitted with HTTP request, will redirect to a page that zenno can scrape the info from. If you take a look at this page, http://clinthitchcock.com/Vilius/vilius.php you will see where I set up a page for a guy to...
  45. bigcajones

    Loading Zenno 4 files in Zenno 5 Breaks the Projects?

    I added a pause also before the captcha to make sure the captcha showed up. When I tested at work it was working fine on my old XP. Then when I tried at home the pause was needed.
  46. bigcajones

    Loading Zenno 4 files in Zenno 5 Breaks the Projects?

    Didn't break for me when I set the search attribute to outerhtml and captcha as the value. Also deleted the group that had src as search attribute. Was it throwing an error on that step? Like it couldn't find the element? Or did it just sit there not doing anything waiting for you to open the...
  47. bigcajones

    Facebook account creator template weird

    Lots of emulations. Slow typing like a normal person, pauses, mistakes anything that a human would do. But in the end you may get 1 out of 10 that won't be phone verified.
  48. bigcajones

    Question about how to do this with project maker features

    Any time.