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

  1. bigcajones

    Trying to make Yahoo Acct Creator

    Yes, I have had the same problem, but just because it doesn't work in template editing mode doesn't mean that your account wasn't created. I found out that you need to save your username and password before you click the submit button so that you'll have it. The account creator that I made...
  2. bigcajones

    html element, number of element

    Have you tried doing it with a regular expression? You might be able to pull the last one out with it. What page are you trying to post to? Maybe if we had a little more info we could help you out.
  3. bigcajones

    Accessing unnamed button inside named div?

    If you can get it to recognize in the branch creator, select Rize==>Click in the branch creator and then save to template and it will click it. http://www.flickr.com/photos/62529942@N08/5786858275/in/photostream
  4. bigcajones

    How to Close Instance?

    Stop Debug if you're in debug mode will close the instance.
  5. bigcajones

    [Get] List of US and Puerto Rico Postal Codes

    Here's some more postal codes for you to use in your templates. One is for the US and the other is for Puerto Rico. These are in this format: 90210;Bevery Hills;CA You can use your string split macro or fix them up however you want. And the other is too big for attachment so here ya...
  6. bigcajones

    Tits for whoever knows this regex!

    Me likey the boobies ;). Thanks jp1!
  7. bigcajones

    This counter is nuts!

    It went false on 6 on mine. Don't understand it at all. Maybe ask Nauru if he knows why. Seems like it should keep on going.
  8. bigcajones

    Tits for whoever knows this regex!

    I like to call them boobies cuz they're fun to play with. You can do it with JS. Here it is: var oldDate = "RESULT OF YOUR DATE BRANCH EXIT";var newDate = oldDate.split("20");(newDate[0]+newDate[1]); Here it is as a template:
  9. bigcajones

    how to make email verfication template?

    You would have to save the emails into a text file and then pull them as blocks.
  10. bigcajones

    Input Box For Inputing Certain Info

    I would like to see if you guys can program ZP where it will popup an input box in certain situations. Then you could run your template according to what you put in the input box. I know that Ubot has this (user generated input boxes. I think it would be a great addition and I'm sure that it can...
  11. bigcajones

    Help with my unsuccesful exit please

    You JS If doesn't know what to look for. You either have to get the dom text of the page and parse with regular expression OR since '>>' is a text element, just highlight it and then right-click and choose Create Selected Text Presence Check from dropdown menu. Here it is fixed:
  12. bigcajones

    Macro to get current day of the month

    var d = new Date();(d.getDate()); Will return today's date. Put it in your macro.
  13. bigcajones

    What's regex for stop here!!

    Try using the shortest match. (?<=\<A href\=\"\/.*?(?=\"\>)
  14. bigcajones

    [Get] List of UK Postal Codes

    Here's a txt file with a list of UK postal codes for you to use in your templates. I use these for signing up to Yahoo.co.uk. Enjoy.
  15. bigcajones

    Questions on filling up a web form for "first name" and "last name" from a text file!

    A. 1. You only need to get page text because you are not looking for anything other than text. If you were looking for div tags or html tags then you would need to use get dom text. Getting text is faster than getting dom text. Dom text is the contexual element of something. If you were looking...
  16. bigcajones

    Questions on filling up a web form for "first name" and "last name" from a text file!

    Here apeee, I fixed it so that it works now. Try it! Hope this helps. I should have put it in the template when I was recording it. This is an older template so I just appended it. I don't have much problems with the username not being unique the way I do the username macro.
  17. bigcajones

    Video Tutorials For English Speaking Users

    Yes it should work just fine. And see my other example above.
  18. bigcajones

    Video Tutorials For English Speaking Users

    As for the second question, you could save your spun files in a folder with the username as the name of the directory or you could save a text file named after your username and then use your step branch result to find the file name. Hope you don't mind but I'll give you another example:
  19. bigcajones

    Video Tutorials For English Speaking Users

    Here's how you handle splitting the username and password: You would pull whatever is first (ie; username) and the first value would be 0 1 for the second and so forth.
  20. bigcajones

    Dropdown menu help

    I noticed too that when you click the signup button after the capture that nothing happens in the browser instance. But yet when I go to AOL in my regular browser, my account has been set up. You may just have to make another template to do whatever you want after the signup process because it...
  21. bigcajones

    Questions on filling up a web form for "first name" and "last name" from a text file!

    here, look at this template:
  22. bigcajones

    Questions on filling up a web form for "first name" and "last name" from a text file!

    3. Yes you can do it. When signing up for sites usually a little javascript will come up and say username is not available. You will want to before clicking the signup button: Get-->Webrowser-->Get dom text of page-->Parameters-->This\ username\ not\ available (or whatever the page says)...
  23. bigcajones

    Most elegant way to parse this kind of page?

    Your way is much simpler. I did it with loops and counters but here ya go:
  24. bigcajones

    Most elegant way to parse this kind of page?

    I like the one you did. Couldn't figure that one out so thanks. I didn't think of putting the String.Enter inside.
  25. bigcajones

    Questions on filling up a web form for "first name" and "last name" from a text file!

    The first StepBranch pulls the line that contains the first:last from the file names.txt randomly. Second stepbranch splits the resulting string and pulls the first element which is first name. Third stepbranch splits the resulting string and pulls the second element which is last name.
  26. bigcajones

    Questions on filling up a web form for "first name" and "last name" from a text file!

    1. See following template: 2. You can make backup copy of names.txt and when you pull string, set true to delete string from file. That way the first name and last will not be used again. 3. You will have to parse text on page to see if 'username not available' text is on page. If so, make a...
  27. bigcajones

    How to append line to file & attach a prefix?

    Or you can use counters if you can't figure out the Javascript: http://zennolab.com/discussion/showthread.php?2322-Most-elegant-way-to-parse-this-kind-of-page
  28. bigcajones

    Scrape from sitemap.xml

    Well, I don't know. Here's another. I scraped http://www.domain.com.sitemap.xml and here's the regular expression I parsed it with: (?<=\>http:\/\/).*?(?=\<) This gave me the required www.domain.com/hosting/...etc. The ) that I had in the first example just happened to be on my sitemap...
  29. bigcajones

    Dropdown menu help

    Handling the dropdowns for birth information is easy in ZP. Right click on the box in the empty space. For each of these follow this example: Right click-->Set value-->With the help of macros-->Random-->1-12 for month 1-28 for days and 19??-19?? for years. Simple once you've done it once. Just...
  30. bigcajones

    Scrape from sitemap.xml

    Try this one on for size: (?<=\"\>)http:\/\/.*?(?=\<\/A\>)
  31. bigcajones

    Video Tutorials For English Speaking Users

    Hi guys. One of the mods asked me if I would start a thread about the tutorials I have been putting up on YouTube. Like most of you, I struggled a lot when I first started using this program. With my vids, I have hopefully answered some of the questions that have been asked here on the forum...
  32. bigcajones

    Basic video course.

    I've done a wordpress tutorial on signing up, posting with spun content at my Youtube channel. http://www.youtube.com/user/IAmTheDarkWiz
  33. bigcajones

    Where do we get Updates?

    https://userarea.zennolab.com/en/login.aspx
  34. bigcajones

    Projectmaker Not Recording Step - Part 1

    If it's not recording the click, right click on it to get the pro branch constructor, go over to where it says Get, Set, Rize. Click Rize and then select Click from the pulldown menu.
  35. bigcajones

    Is there a way to check every email?

    Not yet.
  36. bigcajones

    How to upload an image / file uploader / video upload -

    I tried it both on Youtube and on Flickr. Right click and choose file. But like I said you have to use the browser uploader. Working on the Ajax uploader now to see if I can find a solution.
  37. bigcajones

    How to make Repeat Template

    When the template is executed to the end it will fail and a new instance will take over. This will grab the next url in your text file because you deleted the last. Try it, it will make sense once you see ZP run it a few times.
  38. bigcajones

    How to make Repeat Template

    Sure, keep your urls in a text file(line by line) Step Branch-->Get-->Macros-->Take line from file and remove-->Line 0 Step Branch-->Get-->Webbrowser-->Go to page-->Result of previous step. Step Branch-->Get-->Macros-->Personal Data (or line from a file)--> Step Branch-->Get-->Macros-->Random...
  39. bigcajones

    How to upload an image / file uploader / video upload -

    http://zennolab.com/discussion/showthread.php?2048-Step-by-step-guide-for-uploading&highlight=upload+image Does this one not work for you? You will have to choose the basic uploader
  40. bigcajones

    Most elegant way to parse this kind of page?

    Nah, didn't have much luck with it. That worked good for lines that were one right after the other, but didn't match the lines that were further down. I did get one to work. I had to set up a loop to see if there was any matches. If there were the line I was trying to match got deleted and the...
  41. bigcajones

    Most elegant way to parse this kind of page?

    The way that I wrote it it doesn't matter how many matches there are. When it outputs an empty string, the program stops.
  42. bigcajones

    Most elegant way to parse this kind of page?

    Here's another try at it JP1. This time I got it to join the strings and save it to a text file. I'm working on trying to find the regex to remove the duplicate urls from the file but not having much luck. Even with Regex Buddy, when you put the regular expression that it gives you into ZP, the...
  43. bigcajones

    struggling badly

    This is just an observation, but on Livejournal you can go ahead and put your article in once you set up your account. You don't have to login to post.
  44. bigcajones

    Is it possible to run Zennoposter on 3 computers ?

    I do believe that you can install it on 3 computers and use ProjectMaker on those computers at the same time, but you can't run ZennoPoster on all 3 computers at the same time.
  45. bigcajones

    Bug creating Hotmail account?

    Cool thanx, I thought that was what you were talking about.
  46. bigcajones

    Bug creating Hotmail account?

    Can you give us an example of how to set the global and check for the error. Do you use a variable?
  47. bigcajones

    Most elegant way to parse this kind of page?

    http://mywebsite.com/page/{-RegExp.RegExp-|-{-FieldData.FieldData-|-scrape run-|-Dom text-}-|-(?<=href\=\").*(?=\"\>\<IMG alt)-|-all-}...doesn't this work. Here's an example with Google Image search
  48. bigcajones

    Control Character added to string when reading file using regex pattern match

    Is this the symbol because I get this a lot: carriage return
  49. bigcajones

    Zenno ignores "Tag" value from "HTML Element"

    I thought I had solved it because like you I couldn't get it to work with form# 0. I thought this might be a workaround since you had asked for it to work with form#-1. I figured by looking at another attribute, it would dismiss the metatags completely. Sorry, I don't know what the fix is. I...
  50. bigcajones

    Zenno ignores "Tag" value from "HTML Element"

    Hey gemini Changed an attribute and think I got what you're looking for.