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

  1. BlackSun

    Mouse Drag - How to get the coordinates?

    The mouse emulation is very useful but I'm wondering if there is any what to extract the coordinates of the object that needs to be moved? For example, a list of moveable widgets on a page are in a random order. I can identify them by name but how would a get their coordinates to pass to the...
  2. BlackSun

    Zennoposter is taking an extremely long time to check authorization server

    Seems to take longer and longer to launch Zennoposter recently. And today I'm typing this while waiting for the program to launch. It would appear that the delay is due to it waiting for the authorization server to respond.
  3. BlackSun

    No connection to authorization server

    "No connection to authorization server" This message has been appearing more and more frequently. And today this the only message that appears when trying to start Zennoposter. Which brings a serious drawback to software that won't run without first checking your license each and every...
  4. BlackSun

    Excuting MSDOS Commands from within a template.

    I'd like to move some directories (folders) using a template created in ProjectMaker. Seems easy enough. Open a MSDOS command line window and use the move command then close the window. :rolleyes: So far I've only managed to get the MSDOS command line window open. :p Anyone know how to...
  5. BlackSun

    Imported ProjectMaker Templates won't run in CodeCreator

    Is it just me or are others having problems with CodeCreator. I've some large complex templates made in ProjectMaker and so far I've not been able to import any into CodeCreator and get them to run. PHP or C#, neither work. As for building new scripts in CodeCreator, I can't seem to get it...
  6. BlackSun

    Problem with GIF Images and CaptchaSaver.dll

    Trying to use the CaptchaSaver.dll to grab a GIF image which I intend to send to Capmonster for training. :p Problem is the GIF is black text on a transparent background (alpha channel). Easy enough to see on the website but when CaptchaSaver.dll saves it as a jpg, it becomes dark grey text on...
  7. BlackSun

    Get 1 string from a file based on a regular expression match

    At the moment it is possible to read 1 string from a file based on a regular expression match but its not possible to read and remove it at the same time. Currently it is possible is to read and remove all strings or a random string or a one string if you know the line number. Could we have one...
  8. BlackSun

    How to get 1 string from a file based on a regular expression?

    I would like to be able to read and remove just one line from a file based on a regular expression match? Seems the only option at the moment is to read and remove all lines or a random line or a one line if you know the string number.
  9. BlackSun

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

    This control character is added to the result string when using File.GetString macro and a regular expression pattern match. The control character will then break Javascript with this error if you try to use the string. "Exception has been thrown by the target of an invocation." :(
  10. BlackSun

    Error creating window handle

    It seems that if a template is too large or perhaps too complex then copying a step branch (even one with no connections) will often result in these errors. "Value was either too large or too small for an Int32." "Error creating window handle" After that happens, it is not possible to...
  11. BlackSun

    Chaining or Nesting Rise Actions

    I'm trying to click a java generated link that is not unique on the page. The only unique code is some html near the link. I'd like to be able to select the unique outer html first and then click the non unique inner link. It seems that this may be possible with the Rise action using the...
  12. BlackSun

    Browser "Back" button

    Is this a simple command to emulate clicking the browser back button? Thanks
  13. BlackSun

    "No page tab in the instance."

    "No page tab in the instance" error shows up in the log every 30 seconds, even after all threads have been stopped and reduced to zero. For some reason there are sometimes threads still running even when all threads are supposed to have been stopped and there are no instance windows open. :huh:
  14. BlackSun

    Sometimes and instance will execute without using a proxy

    No matter whether the template task properties is set to "Compulsory" for proxies or whether the proxy is called for within the template and checked to have been allocated. Sometimes and instance will execute without using any proxy. :huh: Is there a way to avoid this? Is this a problem...
  15. BlackSun

    List Broken Connections in Debugger

    When starting the Debugger a "Delete connection request" notice appears if the template has broken connections. It would be very useful if the notice or the log could could name the step(s) with broken connections. Thanks
  16. BlackSun

    Using Proxies from Proxy Checker starts up Windows Media Player

    Using Proxies from Proxy Checker sometimes starts up Windows Media Player. :confused: I assume this is a port number issue. Windows is getting cunfused with traffic coming in on different port. Is there a way to fix this? Or should we just filter certain port numbers? Thanks!
  17. BlackSun

    How to Access Proxy Checker Proxies with Project Maker

    While debugging a template, I'd like it to pull a fresh proxy from the Proxy Checker. Is this possible?
  18. BlackSun

    Support for controlling the browser from your code

    One of the advertised features of ZennoPoster is: Support for controlling the browser from your code "For those who know the PHP or C# programming languages we have designed classes of controlling the browser from your own code, i.e. instead of the template you can create your own program fully...
  19. BlackSun

    How to cancel Download File diaglogue windows?

    Sometimes a page that my bot lands on, triggers a file download dialogue window. This holds up the bot until I hit cancel. I don't want to download anything and just want to cancel the dialogue window. Is there any way to cancel dialogue windows automatically?
  20. BlackSun

    No tab in the instance. Instance

    Not sure if this is a bug or not. What causes this error when trying to navigate to a page? No tab in the instance. Instance 50505:127.0.0.1
  21. BlackSun

    Requiring 2 or Html Elements be present

    Requiring 2 or more Html Elements be present When identifying a link to click, sometimes a false positive is clicked when something unexpected is on the page. I see that for "HTML Element" "Search criteria" there are groups # and match #. How can we set 2 criteria to be the equivalent of...
  22. BlackSun

    ZennoPoster Crash

    Running just 5 threads for a simple scrape, nothing stressful and ZennoPoster crashed. :( It is still running though as I haven't clicked "close" yet. Using Win2003 with IE8
  23. BlackSun

    How to Stop just One Thread and leave other theads running?

    Sometimes one thread running a template may get off track or due to something thrown up by the page. However if you have many threads working and they've been at it for a while, it is not practical to stop everything for the one thread that went bad. How can we isolate, pause or stop one...
  24. BlackSun

    How to download a file from a website?

    A bit stuck on how to download a file from a website. Getting ZennoPoster to click a download link is easy but how can we manage the download dialogue windows that follow? :confused: Mostly they just need to be clicked "OK" but how do we get ZennoPoster to do this? Thanks
  25. BlackSun

    How to split a string and count the number of substrings?

    I would like to split a string and know the total number of substrings. This can be done in Javascript using: Substrings = string.split(','); NumberOfSubstrings = Substrings.length; Is there an equivalent to this using the built in macros? Thanks!
  26. BlackSun

    What does {-String.Enter-} do?

    I haven't been able to figure out what {-String.Enter-} does? :p OK figured it out. I inserts a linefeed-carriage return. :rolleyes:
  27. BlackSun

    Videos and Documentation showing how to find free proxy sources

    Somewhere I've seen Videos and/or tutorials showing how to find free proxy sources for use with ZennoPoster proxy checker. Don't seem to be able to find these now. Anyone know where this training info is located? Thanks!
  28. BlackSun

    How to get the result string of last executed step?

    I know that we can grab the result string of any executed step using this macro: {-FieldData.FieldData-|-stepID-|-branchID-} To make it easier to write more portable code, it would very useful if there was a way to grab the result string from the last executed step, without having to name the...
  29. BlackSun

    How to use the Macro "Folder of the current project"?

    I see there is a way to change the default folder used by a template by using the macro "Folder of the current project" {-Project.Directory-} How do we use this macro? There doesn't seem to be any way to configure this. Thanks!
  30. BlackSun

    Best Opperation System to use Windows XP, Windows 2003, Windows 2008, Windows 7 ?

    Best Operating System to use Windows XP, Windows 2003, Windows 2008, Windows 7 ? Assuming we have the Pro version of Zennoposter and want to get the most out of our computer hardware. Which flavor of Windows should we install? Windows XP, Windows 2003, Windows 2008 or Windows 7 :confused...
  31. BlackSun

    Error: Create Relationship - Value was either too large or too small for an Int32.

    I've got a largish template I've been working on and I'm getting these errors when I start debug. Error: Create Relationship - Value was either too large or too small for an Int32. I guess it is from branches/steps that were linked to but I've since deleted. Been through every step to...
  32. BlackSun

    What is the text string for a line feed (carrage return) character inside Zennoposter

    What is the text string for a line feed (carrage return) character inside Zennoposter? Normally the line feed character can be represented as \n But it seems to be something different inside Zennoposter.
  33. BlackSun

    No Connection to Authorization Server!

    Seems your authorization server is down. Two problems. 1. Project Maker crashes when the server goes down. :mad: 2. It is impossible to launch the software when the authorization server is down.
  34. BlackSun

    JS.PrepString What does it do and when do we need it.

    I've made a Javascript that takes text input and mangles it into the way I want it. :p However I notice there is a Macro called JS.PrepString What does JS.PrepString do and when do we need it? I guess it escapes certain characters sequences? If so which ones? Thanks
  35. BlackSun

    Global Deposit

    Do multiple threads in the Project Maker share the same Global deposit or is there an instance for every thread?
  36. BlackSun

    How to Setup a Javascript Macro

    I need to run some data through a javascript but I haven't been able to figure out how to get the data into the macro that is running the script. :confused: Are there any examples on how to get data into a javascript macro? Thanks!
  37. BlackSun

    Defining variables and arrays

    I see there is the Global deposit tool to define simple variables. Is there any built in mechanism to globally define an array?