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

  1. Jack77

    How to create your own recognition module (API)

    No problem Vlad. I will solve that with the new plugin update. Thank you brother!
  2. Jack77

    Discussion - new version 5.20.0.0

    Just one thing guys, please, create a category for organize plugins. I mean labels. Without category, we will have a big disorganized list of plugins :(
  3. Jack77

    Discussion - new version 5.20.0.0

    I have many C# function blocks I've made and that feature will really organize all the mess. Now, with icons, will be easier to read and organize complex projects. Besides that I realized that in project maker, plugin won't open like project inside project to follow each step. That is really a...
  4. Jack77

    How to create your own recognition module (API)

    Hi there guys. I have created my own captcha dll for some simple math captchas. But, there's no place to put my own DLL. I've tried to put in zennoposter folder like recommended in an old thread: https://zennolab.com/discussion/threads/how-to-create-your-own-recognition-module-api.2208/ But...
  5. Jack77

    Discussion - new version 5.20.0.0

    I was waiting years for this. Great shortcut feature! That will save a lot of my time.
  6. Jack77

    Delete global variable in C#

    That's interesting. Thank you Adigen.
  7. Jack77

    Delete global variable in C#

    I like the little project idea :) Do you mean different scripts share the same globals variables if they are in the same namespace?
  8. Jack77

    Delete global variable in C#

    That is a nice solution Adigen. I didn't do that because I was debugging and interrupting the poster at random moments. I was afraid about, in any of these interrupts, not allow the zennoposter to decrease the value. I'm not sure if, when you interrupt the script, the poster let the script...
  9. Jack77

    Whats wrong with this code (thread stuff)?

    Hi there VlaZ. How many bases have you used VladZ?
  10. Jack77

    Delete global variable in C#

    Thanks for your answer bud. Really appreciate But unfortunately, I'm quite sure set it to null is not the same from remove a variable. Unless the code below is wrong, change a variable to null just changes its value null. Don't remove the variable. To remove, you will have to manually remove...
  11. Jack77

    Delete global variable in C#

    Answering my own question, I think I can't do that. Had to find another way
  12. Jack77

    Whats wrong with this code (thread stuff)?

    So Vladz, I have set 10 threads. The software has initiated6 of them and later the other 4. But I do have set 10 at the beginning. The problem is that the global variable loses its value in the middle of execution. Its 0 (it is incremented) at the beginning and them from nowhere its go back to...
  13. Jack77

    Delete global variable in C#

    Hello guys. var gbVar = project.GlobalVariables["stupidglobals", "globVar1"]; Are there anyway to delete that a global variable? I'm using that for threads and unfortunately zennoposter gets that in memory after the process being executed :( Thank you.
  14. Jack77

    How to set c# code to reset globvar to 0?

    Thanks for this info LexxWork. I've got a bug and your info helped me.
  15. Jack77

    Whats wrong with this code (thread stuff)?

    Hello guys. I'm trying to lock a thread in order to each one has its own ID. To tell the truth, now I just need to know who is executed first, because the first one will do the initial stuff (copy lists and other things). So, don't know why but anyway the code get lost and I get repeated IDs...
  16. Jack77

    Increase process speed

    This? Indded the entire process got slow.
  17. Jack77

    Increase process speed

    Perfectly understand you. One lasting question, promises not boring you anymore (at least today, just kidding lol). So, one thread is waiting for other when typing like a block in execution. I'm not using keyboard emulation. No pause. Do you have any idea about that behavior?
  18. Jack77

    Increase process speed

    I think I'm confusing process with execution then. Each new execution will be a new thread of the same process, right?
  19. Jack77

    Increase process speed

    I can have 4 process and 4 threads. I can't have 2 process and 4 threads, got me?
  20. Jack77

    Increase process speed

    Pro version
  21. Jack77

    Increase process speed

    Yeah, I have read the wiki, but I personally think its incomplete :( Qzen, I have 1 process and 10 threads that opens google search. I get the line from list and delete it. Ok. But shouldn't that opened 10 threads? Zenno poster limite itself to just 1 thread. Just one open browser. To open...
  22. Jack77

    Increase process speed

    Got you Qzen. I´ve read lot of posts event in the Russian forum to learn the trick about read and delete from lists. It's the way zenno poster do atomic operation for it's current programming. By the way, I've read a thread in which you were participating. For my lucky I've found out there that...
  23. Jack77

    Increase process speed

    Sorry for the delay qzen4i. I spent all day outside home, just got home now. Thanks for your response bug. I've got you. But how will zennoposter manage threads inside the process? I mean, lets say I have a loop with 30 keywords to google search. Will zennoposter split that in 30 threads if I...
  24. Jack77

    Increase process speed

    Hello qzen4i. Thanks for your answer. I bought zenno this week. I'm a 15 years developer, i have discovered many great things in this tool. Even did many stuff at js and some at c#. But unfortunately It seems, as you saying now, that I'm in some wrong path. I thought that project maker was to...
  25. Jack77

    Increase process speed

    Hello guys. I have a script in the project maker that performs searches on google (on other sites tb). But unfortunately I have a list of 300 words or more and processing one by one in the zenno poster browser is will take too long. Is there any way to do this in project maker faster? May I...