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

  1. bigcajones

    why receive email can not work

    Unclick the Automatically detect settings box or go to the normal email process and put in your own settings.
  2. bigcajones

    how to del string

    Use regex. (?<=\d+\\).*(?=\.txt)
  3. bigcajones

    Page Text Bug

    After clicking Page Text button you get crazy characters for Dom, Source and Page Text links and no Copy to Regex Designer button.
  4. bigcajones

    Default path for folders

    I type really fast. Cheers
  5. bigcajones

    Lists merge

    Use list processing and delete all lines that meet your criteria.
  6. bigcajones

    Profile not changing

    Generated automatically.
  7. bigcajones

    Does delete line in table work?

    You would have to subtract 1 from the number of lines in the table to delete the last row in the table. Remember, zenno labels the first line in a file or a list or regex match as 0.
  8. bigcajones

    Zennoposter won't start up - ERROR

    You can only run ZP on one machine at a time. Been that way since the beginning. If you own Pro version you can install ZP on 3 computers, but only one can run the poster at a time. Project Maker can be opened by all at the same time. FAQ: Q: What does it mean «Count of computers» and...
  9. bigcajones

    Zennoposter won't start up - ERROR

    Yes 1 computer
  10. bigcajones

    Correct Regex Wrong Result

    Try \d for the numbers.
  11. bigcajones

    How to trim all special charecters?

    Use replace with regex as a match. You will have to delimit the characters and use a pipe as separator. Don't forget to delimit the last pipe so that regex engine doesn't see it as regex OR. Use nothing as replacement
  12. bigcajones

    Find last occurance

    Choose '4' as your match and 'last' as the match #
  13. bigcajones

    2 C# code in one template

    I have 4 and 5 in a couple of templates and haven't had any problems with it. The only issue is finding which C# action has an error when one shows up.
  14. bigcajones

    Downloding adwords CSV

    Oh yeah, it won't work in that version for sure.
  15. bigcajones

    Downloding adwords CSV

    This template will create an output.xls file to store the .csv info in. You may have to go into the GAC and reference your own Microsoft.Office.Interop.Excel library to get it to work right or you can take the part out where it creates that file. Hopefully everything runs smoothly for you.
  16. bigcajones

    Downloding adwords CSV

    Yeah, .csv doesn't work with zenno too well. You have to use 'Own' file format and put comma as separator. I personally don't use .csv with zenno, i use .xls or .xlsx and tab separate them. If you can't get them to combine right let me know and I'll send you a template for it.
  17. bigcajones

    Downloding adwords CSV

    Sure, you would just get a list of the files with a Folder processing action and save to a list. Then take a line from the list, use a file action, take the text and use a wordprocessing action and save the variable to a table in that action. Use {-String.Tab-} as a separator in the action.
  18. bigcajones

    Downloding adwords CSV

    Put in a Browser Settings action before pressing the blue download link in GKWP and choose the Download to parameter. Put in the path to the folder where you want your keyword results saved to and as soon as the link is pushed, the file will be downloaded into that folder.
  19. bigcajones

    Problem with table procesing

    Hit me up on skype and I'll help you out.
  20. bigcajones

    Global Variable Question. Please help

    Honestly, the best way to handle it is to write to a file. You can take a value from a file add one to it and write it back for the next thread to use. If you insist on using the global you will need to have a check in the beginning of the template to see what the value is and then add 1 to it...
  21. bigcajones

    ZennoPoster Not Effecient

    It's taken care of. All things are peaceful in Oz.
  22. bigcajones

    Problem with wordpress.com

    Sure, the email body can be downloaded as Text or Html. There is a radio button in the email processing action when you have found the message. You can choose to parse the html or text version of the message. Sometimes you have to use html because text won't show confirmation link. I have...
  23. bigcajones

    Problem with wordpress.com

    Works fine for me if you put it in text and not html mode. Or.... maybe the 5000 wordpress blogs I have were an accident. lol. Just kidding Indy. I saw the api thing too in html mode. Either way.
  24. bigcajones

    Simulating human behavior

    Action designer, find the element and then do a Rise and click on it first, Focus will sometimes do the trick also and then after the click action, use keystroke emulation to fill in the field
  25. bigcajones

    Problem with wordpress.com

    :huh::huh::huh::huh::huh: Well, I never.... https://signup\.wordpress\.com/activate.+
  26. bigcajones

    Date in filename

    use c# action... DateTime now = DateTime.Now; string format = "MM-dd-yyyy"; return now.ToString(format);
  27. bigcajones

    merge multiple csv files in one master file

    Get the path to all the files in the directory and put to list. Go through the list one by one and Take Text from the file. Add that variable to a table bound to your output file with {-String.Tab-} as the separator. The only problem is that the header row of each file will be added to the...
  28. bigcajones

    project.Variables are all string, how to declare it as int?

    Convert.ToInt32(project.Variables["heartbeat"].Value);
  29. bigcajones

    How can I use "http post" to post an image?

    You need to covert the image to a byte array first using the C# ImageConverter. Then pass it through and convert to base64string. The resulting string can be passed into your POST request. http://www.dailycoding.com/Posts/convert_image_to_base64_string_and_base64_string_to_image.aspx
  30. bigcajones

    [Moved] Random Number Bug

    The second number is the upper limit. It is not included in the random number generator. In order to get 1 or 2 you would have to put the range from 1 to 3.
  31. bigcajones

    Can I write an image to an excel document using zennoposter?

    Nitin, There are a lot of search results on google. http://stackoverflow.com/questions/11109759/how-to-insert-picture-into-excel-cell Of course you would have to do it in C#. The only thing is I don't think you can insert an image in a certain cell. I don't work with excel too much, but it...
  32. bigcajones

    Pause when Click on Box

    For the pause, do a word processing action put this old macro and set it to a variable... {-JS.Alert-|-All Hail The King!-} To set the instance to open full size, use this c# code as the first action in your template.... foreach (var screen in System.Windows.Forms.Screen.AllScreens) {...
  33. bigcajones

    [SOLVED] Проверка на капча - sorry.

    Положите логической операции между Captcha признание и заполнения в поле. ЕСЛИ '{-Variable.RecognitionResult0-}' == 'sorry'
  34. bigcajones

    the judgment about tab

    Can you search for something on the tab? If so, if it is not found do an unsuccessful exit(red dot) off of that and loop back up, keep checking until the tab is opened and the element on the tab is found.
  35. bigcajones

    Code Creator and Proxy

    What version are you using because if you replace the placeholders IP, USER and PASS with your info it works perfect for me. Leave the quotes and make sure that the port is what your proxy provider gives you. If you can get user authentication with your proxy provider then you don't need the...
  36. bigcajones

    Code Creator and Proxy

    instance.SetProxy("IP", 80, "http", "USER", "PASS");
  37. bigcajones

    Recive emails to list

    It can be done with c# code. http://zennolab.com/discussion/showthread.php?9893-why-it-can-t-download-all-the-email-please-please-please-help!!!&highlight=download+all+emails oops.
  38. bigcajones

    Recive emails to list

    It can be done with c# code.
  39. bigcajones

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

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

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

    https://www.dropbox.com/s/1i27z1r2cq7rn3o/Multithread.rar
  41. 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 является наименование, указанное на комментарий. Возьмите первый матч...
  42. 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...
  43. bigcajones

    Context Recognizer questions

    They are strings, you should delimit them. '{-Variable.Name-}'=='{-Variable.Name2-}'
  44. 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.
  45. bigcajones

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

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

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

    Any time.
  47. 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.
  48. bigcajones

    Snippet samples

    Sure.