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

  1. Z

    .NET open source - Can we get ZP for mac?

    Hello Admins/devs, With .NET turning to open source, will we get a ZP for mac?
  2. Z

    Exception has been thrown by the target of an invocation.

    Since you are declaring it as uri you have to specify the protocol i.e http:// or https:// change the variable value to http://google.co.uk ..this could be the issue,give it a try.
  3. Z

    [Advice] - Solution to desktop alerts?

    open "write to file" filepath : c:/batch.bat write: START http://yoururlhere START sound.mp3 save the file and open it . It will open the URL in browser and play the sound.
  4. Z

    [Advice] - Solution to desktop alerts?

    Write batch file to open URL,play sound. execute the bat file.
  5. Z

    How to convert unicode special characters to html?

    http://stackoverflow.com/questions/11363589/converting-html-utf-8-charset-to-iso-8859-1-via-c-sharp as specified in the answer, set the TransferEncoding and SendChunked property.
  6. Z

    Can One Zenno Project call another zenno project?

    Add GAC Reference to the project and select the system.xml
  7. Z

    Activate/Desactivate a computer

    It happens immediately. Login in to the userarea and deactivate the computer.
  8. Z

    Reverse a regex to find the external urls

    I am not sure if I understand correctly. You have a list of url's and you want to extract all external url's? If so then duplicate list - list processing - delete elements - contains 'domain.com'
  9. Z

    How to use C# code to do URLencode to "hello, world" in zp?

    Reference System.Web in GAC Reference and use HttpUtility.UrlEncode to encode. You can also try HttpServerUtility.UrlEncode
  10. Z

    How does input settings work when running zennoposter?

    Right click the template in zennoposter and select settings.
  11. Z

    Some help with action designer please

    did you try regenerating the profile? probably that's why you get January every time during debug. to regenerate a new profile either restart the project or click on "human" and click regenerate.
  12. Z

    Sorting list based upon years?

    In list processing there is an option "delete". It allows you to delete lines that don't have specific words. It should work. Or you can use the regex option in that too.
  13. Z

    Regex replace in list processing

    I solved this using c# but it would be nice to have it built-in: var contentlist = project.Lists["Content"]; var contentfinal = project.Lists["contentfinal"]; var done = "done"; lock(SyncObjects.ListSyncer) { foreach(var content in contentlist) { var output =...
  14. Z

    Regex replace in list processing

    I will explain it with an example. we have a list with 2 items : [0] = <tab>content<tab>content1</tab>Rand</tab>Precious stuff1 [1] = <tab>some stuff<tab>random</tab>unwanted<tab>Precious stuff2 suppose I have a list with these two content stored. How do I extract only the important part...
  15. Z

    Regex replace in list processing

    What I mean is to replace seperate elements in a list by regex or by text.
  16. Z

    Regex replace in list processing

    Hello, It would be a nice feature to have regex replace option in list processing. Now there is option to delete lines that match a certain regex..but what if I want to replace certain text in the list content. workaround is to merge list to variable and then perform regex replace.but...
  17. Z

    Regex too many results?

    I dont think all 80K followers load in a single page. you can also try using the twitter API - https://dev.twitter.com/docs/api/1.1/get/followers/list
  18. Z

    [SOLVED] Using HTTP Post with Ahref's API

    I think this is a GET request and not POST. Add the full url : i.e http://api.ahrefs.com/get_backlinks_count.php?target={-Variable.url_to_check-}&mode=domain&output=json&AhrefsKey=***API key removed**** to the GET request and it should work.
  19. Z

    Cookie handeling in HTTP and POst, then to assing to browser

    That is not the solution. He wants to move it to the browser for emulation.
  20. Z

    Cookie handeling in HTTP and POst, then to assing to browser

    I have never used CL so I am not sure where the image upload button is. Post the steps that you follow. Also analyse the process using fiddler and see how the file to be uploaded is sent.
  21. Z

    Cookie handeling in HTTP and POst, then to assing to browser

    I dont think POST to profile is possible, because the profile data has another file with a different extension. but I think you can emulate the image upload using POST request too. If its not a private site do post the URL here so that we too can try and come up with a solution.
  22. Z

    How should you do it: System that check the database for taking action

    Most of ZP users donot use the code creator at all. Most of the job is done from the PM itself. How long does it take for the steps to be completed. To answer your question, IMO its better to schedule the project then to leave a timeout for the instance because instance is started fresh and...
  23. Z

    How Will I to Emulate Control A then Delete Key

    try this in c# code module: System.Windows.Forms.SendKeys.Send("{CTRL}"); System.Windows.Forms.SendKeys.Send("A"); {you may need to add GAC Referece). This hasnt been tested. But it might work. also,be sure to keep the focus on the element before running the c# code. EDIT : This does not...
  24. Z

    If "executed" was selected , unable to edit the block in advanced editor.

    any update on this?
  25. Z

    Zennobox ?

    Since you still havent bought ZP you will not be able to receive PM's. I suggest you post your skype details in this thread and let someone contact you.
  26. Z

    If "executed" was selected , unable to edit the block in advanced editor.

    But after switching to advanced editor the executed selection should be changed to settings. because in advanced editor there is no option to change from executed to settings.
  27. Z

    If "executed" was selected , unable to edit the block in advanced editor.

    Video link : http://tinypic.com/r/35ks9ec/5 https://vimeo.com/74555899
  28. Z

    If "executed" was selected , unable to edit the block in advanced editor.

    I get it that we cannot edit when selecting the executed option. I have recorded a video to show the issue. http://www.screencast.com/t/LYKvW0TUj
  29. Z

    If "executed" was selected , unable to edit the block in advanced editor.

    Bug description: if the executed tab was selected during debugging and then switch to advanced editor the variable cannot be edited. have to switch back to debug mode,open that block switch to settings tab and only then I am able to edit the block. If not able to understand I am willing...
  30. Z

    Easiest way for a newbie to learn Zennoposter? Can it do this?

    You do not need to know how to code to create templates. But having that knowledge just makes it lot more easier. Zennoposter deals with logic mainly. for ex: You want to create a template that registers at a website - 1. record Register process - 2.validate email - 3.save login credentials...
  31. Z

    Reference Profile data in GET or POST data.

    I get that. But using GET and POST is faster than using browser emulation. For extracting the profile we have to unzip it via c# code,read the cookie file, regex the cookie values and add them to the request. what I think is if this is done by ZP internally it will be lot more easier and might...
  32. Z

    Reference Profile data in GET or POST data.

    It would be nice to add the .zpprofile reference when using GET and POST request. Although it can be done by extracting the files,then reading the cookie file and regex the cookies and add it manually to the request. It will be lot more easier for us if we can just reference the zpprofile and...
  33. Z

    Lets discuss ZennoBox options

    subscription is only for zennobox right? I currently use the lite version and dont see a need for me to use zennobox.
  34. Z

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

    It can be used. also try changing search type to regex.
  35. Z

    [Feature request] Emulate back button and clear variables option

    Any info on this?
  36. Z

    [Feature request] Emulate back button and clear variables option

    Hello, 1.It would be nice to have an option to emulate the back button of the browser in projectmaker...although there is back button while recording it doesnt get recorded 2. An option to clear all the values of a variable will be very helpful.Reason for this is now the designing and...
  37. Z

    How to add text in front of list?

    Try this : http://textmechanic.com/Add-Prefix-Suffix-to-Text.html
  38. Z

    official skype /email support

    There is another skype group managed by bigcajones. Contact him and get into the group. They will definitely help you out.
  39. Z

    What PC do you run your Zenno Poster on?

    Just a word of caution. I heard that windows messes up the fan speed on MBP and can cause the equipment inside to heat up. Make sure its working fine.
  40. Z

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

    Open the regex builder in Project maker . There is an option "include line breaks".tick that and it should work.
  41. Z

    Deleting blank lines from table?

    I havent tested it, but I think you can use text processing for this. Use replace function, select regex try this regex ^\s*$..And replace with leave as empty. It might work.
  42. Z

    Layout issue

    None of the actions work when this happens. As its evident in the second screenshot the connecting line is seperate from the action block and the editing panel. I am able to move every block freely as I wish ..I never faced this issue in V4. This has something to do with the new layout only.
  43. Z

    Layout issue

    Hello, I am facing layout issue when designing templates in project maker. The image in below screenshot happened yesterday. I thought it was an one time issue , so closed and reopened the template again. But again today I faced the same issue. Please look into it asap cause I am not...
  44. Z

    Multithreading in zenno

    you need either standard or pro version of ZP for multi-treading. Create templates that when executed will run once and no full looping is present. then just add the number of time to execute and the number of threads to use.
  45. Z

    XPath support via C#

    Till then is there a workaround in C# code or something. Cause scraping with xPath seems to be faster than regex.
  46. Z

    Close pop-up using IF

    Make use of the "optional" feature..record the close pop-up..and right click the block and select optional..
  47. Z

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

    Use the Mobile version of FB and you should be able to get the list of people who liked your status easily.
  48. Z

    XPath support via C#

    DD is there a possibility to use Xpath to scrape data in ZP?
  49. Z

    Scroll

    There is page down keystroke too available. Did you give that a try?
  50. Z

    Increasing speed of download

    Torrent will depend on seeds.If its low the speed will be slow. How about mirrioring to mediafire or dropbox?