Недавний контент smk

  1. S

    Can't navigate to email confirmation page

    After successfully finding the email confirmation link I am unable to get CC to navigate to the url. String ressy = ZennoPoster.MailConfirm(instance, "30;60;120", email, password, "pop3.live.com", 995, true, false, "Activate your 2itb.com website"...
  2. S

    Tree of elements flashing/not loading

    Its the tree of elements, as well as the element properties box will flash showing properties and then disappearing. The instance does not flash, elements will highlight when hovered, then not highlight, and repeat. This stops shortly after the debug is complete, but not immediately. Can you...
  3. S

    Tree of elements flashing/not loading

    When I login to hotmail manually, the tree of elements will continually flash and it causes my script to not find elements. It looks like hotmail keeps refreshing. Things I've already tried -Disabling scripts -> Can't even get into hotmail -IEKiller -> No effects -WaitDownloading -Long...
  4. S

    Looping through document address

    The fix Create an array of Strings String[] allDocs = new String[] {"0", "0;0", "0;1".....} Just remember a bunch that have occurred in the past Then throw them into a loop for(int i = 0; i < allDocs.length; i++){ he =...
  5. S

    Looping through document address

    I'm trying to loop through all the documents as the page is dynamic. This is for hotmail because the message goes to spam folder. DocumentCollection docCol = tb.AllDocuments; he = null; int counter = 0; while((he.IsVoid || he.IsNull) && counter < docCol.Count){ Document doc =...
  6. S

    Document number differences?

    On what conditions would I have the counter increase?
  7. S

    Document number differences?

    How do I handle this? Setting the document to -1 makes zenno search for the document -1
  8. S

    Wordpress "insert into post"

    After I make the branch for clicking "Inster into Post" the code never gets inserted.
  9. S

    Wordpress "insert into post"

    I'm trying to make a wordpress poster. When I go to branch builder and make a branch for clicking this button it works and places the code into post. When I debug it never shows up. The button clicks, the window opens but the code never appears. Thanks