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

  1. zenfreak

    Button x,y coordinates changes upon scrolling

    How can I get the coordinates of a html element(button) after scrolling? I get left: 150 top: 150 but after scrolling down top is -500. How can I fix that?
  2. zenfreak

    Simple drag and drop question

    \
  3. zenfreak

    How to include/run external C# script into my project

    It is true I have just started learning C# and right now I'm doing more like a parkour programming - getting from A to B in the shortest time as possible. On the other hand having Visual Studio debug it's pretty easy to see what should I do - the problem is in zenno where I don't really know...
  4. zenfreak

    How to include/run external C# script into my project

    By "not needed" you mean it's not mandatory or is it wrong to be there? I mean, the code could run without it or will only run if it's not there? For the second error you mentioned, I know the foreachloop it's not closed as it has 90 more lines and like I said, this code is preceding the line I...
  5. zenfreak

    Extended spintax syntax error

    Aaah .. what a rookie mistake ... my bad!
  6. zenfreak

    Extended spintax syntax error

    When I'm using this spintax syntax [+{_|-}+Red|White|Blue {1|2}] I get weird results such as [+-+Red|White|Blue 1] or [+_+Red|White|Blue 2] and not the expected output. I declare the spintax value by using the variables processing box and I see the -} is red so I think it tries to interpret as...
  7. zenfreak

    How to include/run external C# script into my project

    I still don't get how can I execute the whole thing. Can you provide a simple example? foreach (var k in keywords) { MatchCollection foundItems = Regex.Matches(text, $@"\b{k}\b", RegexOptions.IgnoreCase); var countItems = foundItems.Count; This is...
  8. zenfreak

    How to include/run external C# script into my project

    I have just started learning C# and knowing other languages helped me to quickly understand what's going on so creating C# scripts it's not an issue for me right now but rather integrating that code with Zenno is the real pain. I have also searched for tutorials on how to do basic tasks but...
  9. zenfreak

    debug in c# own code

    What if my code works well in VS 2017 and doesn't in ProjectMaker? Compile code of Error "CS1513" "} expected". [Row: -1; Column2]
  10. zenfreak

    How to debug C# code in ProjectMaker?

    I did search through his posts but couldn;t find the C# debugging tutorial so please share the link when you can
  11. zenfreak

    How to Include Master Captcha Template with Project in Project?

    Do you mind sharing the knowledge? What would be a starting point for setting this up?
  12. zenfreak

    How to include/run external C# script into my project

    You mean using Run program action? If yes, no, that's not what I want to do. This is what I try to avoid and this is the reason I switched from python to C#, so I can integrate as much code into my zenno templates. I want that instead of writing my code into the C# code module (Own C# box) to...
  13. zenfreak

    How to include/run external C# script into my project

    I have a feeling this is really easy but can't get it working. I would like to be able to include and run an external c# script into my template. I don't want to use the C# code module as I want to be able to upgrade my external c# without manually changing the zenno templates.
  14. zenfreak

    How to Include Master Captcha Template with Project in Project?

    I just read your post on imapx2 and I see you're just as clueless as me :)
  15. zenfreak

    How to Include Master Captcha Template with Project in Project?

    Never heard of this imap2 dll as I'm new to c# but after a quick lookup I see it's a library that could replace the "receive emails" module completely. If you have any documentation available on how to include this into a zenno template I would appreciate. Now I still need to find a way to...
  16. zenfreak

    How to debug C# code in ProjectMaker?

    I write my code in visual studio because I just started learning c# and I like debugging it step by step but when I move it to ProjectMaker's C# code box I see it doesn't work. Is there a way I can debug it? I don't expect a visual studio debugging type with breakpoints and stuff but at least...
  17. zenfreak

    How to Include Master Captcha Template with Project in Project?

    Same issue for verifying emails. I would like to be able to send all the necessary details/settings to an external zenno template that should use the receive emails module. Any ideas?
  18. zenfreak

    How to Include Master Captcha Template with Project in Project?

    I have multiple templates that use the captcha module and I would like to be able to have a separate "master" captcha template that I can easily include using the project in project feature. The reason is that if something changes in the captcha configuration (for example: I decide to use a...
  19. zenfreak

    Simple drag and drop question

    Thanks a lot! I'm pretty sure others knew this is the way but because it was too obvious didn't care to kick me into the right direction. I managed to get my work done by using this code: instance.ActiveTab.MouseClick(150, 150, "right", "down"); instance.ActiveTab.MouseMove(150, 150, 500, 500...
  20. zenfreak

    How to simulate "Paste" or "CTRL + V"

    If there are many threads and you are working with the clipboard by using instance.ActiveTab.KeyEvent("V", "press", "ctrl"); they might overlap and you end up messing up each other's data. This is what I have understood by translating Lord_Alfred's post and even if I don't have too much coding...
  21. zenfreak

    Simple drag and drop question

    There must be a way so I can click (x=100,y=200) and drag to (x=200,y=400)! Anyone?
  22. zenfreak

    How to simulate "Paste" or "CTRL + V"

    @SOS Cartões OFC I tried keyboard emulation first @Lord_Alfred Your solution worked like a charm. Thank you! I forgive you for only speaking Russian :-) @PHaRTnONu Thank you for your solution but as Lord_Alfred stated, "don't forget about the buffer"!
  23. zenfreak

    Simple drag and drop question

    up :(
  24. zenfreak

    How to simulate "Paste" or "CTRL + V"

    I have a form that will not display the post button until I populate a field by paste-ing my value either by using right-click and selecting "paste" or by using CTRL+V. Take note the if I manually write the value into that field the submit button will NOT show! Weird, I know, but that's the way...
  25. zenfreak

    Is there a way to edit multiple projects at once?

    Let's say I have 50 zenno projects and all of them included a list named "Cars" and I would like to modify the file path from {-Project.Directory-}\cars\oldCars.txt to {-Project.Directory-}\cars\newCars.txt. How can I do that without opening all of them and manually editing that file path?
  26. zenfreak

    Unable to verify emails from the Spam folder in gmail

    Hi, I'm using V5.10.5.0 and no, I cannot select the Spam folder from iMap folder for downloading email. As a matter of fact, I never choose anything from there. Once I hit Load emails it loads everything in the inbox folder.
  27. zenfreak

    Thread consuming lots of memory

    Even if I didn't understand the logic behind your suggested settings, I tried them, but nothing changed :(
  28. zenfreak

    Unable to verify emails from the Spam folder in gmail

    Is this forum dead?
  29. zenfreak

    Thread consuming lots of memory

    Running the same project with ProjectMaker instead of ZennoPoster as I did earlier does not have the same memory buildup. It works great this way! I still need to know what's going on and I feel it's more of a software bug than a mistake on my part. I just hope I'm not talking alone in here :(
  30. zenfreak

    Thread consuming lots of memory

    I've also tried clearing the cache for everyloop and uses only 2 variables that are being cleared every time. It also uses project in project and loads another small script that only checks for captcha and if it finds the error msg it solves it - this one doesn't have any variables. So after I...
  31. zenfreak

    Thread consuming lots of memory

    I have a thread running and after a while, it consumes up to 3.5 GB of memory. I see this next to the firefox instance in task manager. At that point the zenno script barely does it's job and works really slow. The thread involves loading one single page multiple times. Any thoughts on how can...
  32. zenfreak

    Unable to verify emails from the Spam folder in gmail

    I am unable to verify emails from the Spam folder in gmail. After loading I don't see the verification email if in the spam folder and cannot search for it. Is there something I am missing?
  33. zenfreak

    How can I save all the content of a webpage just like "Save Page as" in a browser?

    I see in "Browser Settings" the "clear cache" option. Can I save that cache?
  34. zenfreak

    Simple drag and drop question

    1. I would like to be able to drag and drop using my own custom X and Y coordinates. In the mouse emulation I only see Left Click, Right Click and Double Click and the only refecence to drag and drop is by using the Rize Event: drag and drop. Is there any way I can do that just by using the...
  35. zenfreak

    How can I save all the content of a webpage just like "Save Page as" in a browser?

    There must be a way, those files are here somewhere, zenno's browser must have a cache folder so it can store the loaded images... What about the profile saving feature, I see I have 3 options: 1. save proxy 2. save plug-ins 3. save local storage. Are those images stored in the "local storage"?
  36. zenfreak

    How can I save all the content of a webpage just like "Save Page as" in a browser?

    This way I would get only the html source code text but what I need are all the images and javascript files that are loaded along with the webpage. For example if I save this page I would get a html file named "How can I save all the content of a webpage just like 'Save Page as' in a browser _...
  37. zenfreak

    How can I save all the content of a webpage just like "Save Page as" in a browser?

    How can I save all the content of a webpage just like "Save Page as" in a browser saves all images, javascripts and css files?
  38. zenfreak

    How to change window size in ZP Lite 5.9.8.0

    From https://help.zennolab.com/en/v5/zennoposter/5.9.8/webframe.html#topic700.html Please explain the following properties as I find them very ambiguous and trying to understand them by testing values on each of them is almost impossible: Property AvailScreenHeight Gets or sets the...
  39. zenfreak

    How to change window size in ZP Lite 5.9.8.0

    I have attached my testing file. Please note that I also tried playing with the other profile.*settings* without luck. What I am trying to achieve is a window size of 1366X748 or any other *custom* window size
  40. zenfreak

    How to change window size in ZP Lite 5.9.8.0

    Changing it to instance.SetWindowSize(1700, 900); I get: ----------------1563x781 (1600x900)---------------- Profile.AvailScreenHeight | 50505 Profile.AvailScreenWidth | 50505 Profile.ScreenSizeHeight | 50505 Profile.ScreenSizeWidth | 50505 Profile.OuterHeight | 954 Profile.OuterWidth | 1288...
  41. zenfreak

    How to change window size in ZP Lite 5.9.8.0

    I am trying to change my screen resolution using the C# instance.SetWindowSize(1600, 900); snippet but I'm not getting the expected results. Testing this setup in whoer[DOT]net website I get this window size 1551x781 (1600x900) and the other profile options as follows...
  42. zenfreak

    ZP Metal Confusing for and Old ZP3 User

    What "It's almost ready" actually mean ?
  43. zenfreak

    uploading file via flash button

    I need help uploading a file via flash 1. The testing url does not work anymore http://demo.swfupload.org/v220/simpledemo/index.php so I can figure out how things are done. 2. If the thread started in English why finish in Russian ?
  44. zenfreak

    Problem with DeCaptcher module

    Yes, I keep getting the same error: - with no error code whatsoever. Guys from decaptcher said this is not an error on their side and they have checked and everything worked ok so it must be something from zennoposter. What next ?