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

  1. PHaRTnONu

    Problem

    ok, all i did was:
  2. PHaRTnONu

    Problem

    sorry try now i saw my error and i see another sorry forgot to set interanl html as well work when i enter everything else
  3. PHaRTnONu

    Problem

    ::::REVISED::::: sorry had to set class not text, if you want to set it to difrent coutry get class name fo country and just change it from flag-ZM to what every the class name you need?
  4. PHaRTnONu

    Problem

    just a varible you set it as?
  5. PHaRTnONu

    Problem

    what are you trying to change it to?
  6. PHaRTnONu

    Problem

    wait, sorry to interject what is that right hand window. i have never seen that before template? where and how did you get this section up im so lost!
  7. PHaRTnONu

    From zennoposter, right click open in project maker does not work

    when right clicking a schedualed task to open in project maker does nothing.
  8. PHaRTnONu

    Yesterday's date

    SOLUTION Found: var d = new Date(); var yesterday = d.getMonth() + '/' + (d.getDate() -1) + '/' + d.getFullYear(); but that will mess up any day that is on the 1st 9dec 1st youre gonna have a 12/0/2016 result... var d = new Date(); var date = d.getMonth() + '/' + d.getDate() + '/' +...
  9. PHaRTnONu

    Yesterday's date

    sorry should have been more specific i have used var YesterdaysDate = new Date(new Date().setDate(new Date().getDate()-1)); but i need it to output only MM/DD/YYYY not as its coming... also have function getYesterdaysDate() { var date = new Date(); date.setDate(date.getDate()-1)...
  10. PHaRTnONu

    Yesterday's date

    How do i get the prior days date? tried a few java executions to no luck, idk just lost a little help would be nice
  11. PHaRTnONu

    If/switch logic with regex

    Thank you tobbe worked great (alot more clutter but working correctly is still working correctly) LOL :D:D:az::ay::ay:
  12. PHaRTnONu

    If/switch logic with regex

    CRAP! how do i do this then tobbe? the acttion is base on var length and uh! im lost here
  13. PHaRTnONu

    If/switch logic with regex

    so im trying to determin what to do with a variable based on a variable length.... and =^.{0,7}$ =^.{8,15}$ and ^.{0,7}$ ^.{8,15}$ and {-Variable.Temp-}=^.{0,7}$ {-Variable.Temp-}=^.{8,15}$ the always fail even though the var length meets the criteria.... any help here would be awesome...
  14. PHaRTnONu

    record to empty colum

    fail if i would have just done record to cell in Table processing in zenno you can just put a value of "-1" and it will record to the last unused cell for the row you decide that was much simpler
  15. PHaRTnONu

    record to empty colum

    // take text for search from a variable var textContains =!''; // get table for search var sourceTable = project.Tables["SourceTable"]; // search in each row lock(SyncObjects.TableSyncer) { for(int i=0; i < sourceTable.ColumnCount; i++) { // read a row (array of cells) var cells =...
  16. PHaRTnONu

    record to empty colum

    I already have row. is it just like get column=!'' ?
  17. PHaRTnONu

    record to empty colum

    how do i record to a designated row's first empty column? some are like 3 colums full other are like 2 or 30... i just need to add data to the NEXT empty column
  18. PHaRTnONu

    Any simple way to search value in table?

    /slap own face sorry working fine now just left var name didn't copy over the macro copy var. working great
  19. PHaRTnONu

    Any simple way to search value in table?

    Maby im just a moron but i can not get this to work for me i dont even get a return of no in my varible var textContains = project.Variables["{-Variable.TEXTPROCESSING-}"].Value; // get table for search var sourceTable = project.Tables["Table1"]; // search in each row...
  20. PHaRTnONu

    delete processed email upon completion

    is there any plan to make this feature soon? delete/move email that matches the search criteria? and a ability to assign each piece of mail a variable number so you could just search {Variable.Email.imap.inbox.1} or what ever number and process one at a time? (by process i mean grab info, then...
  21. PHaRTnONu

    Bulk Email Processing

    is there a way to just get NEW messages, and then clear the table after parse? i just want to grab NEW inbox items from email folder (unread tag?) then clear the table when I'm done using the data for those emails? or maybe even clear the table and move the email (via email id) to a different...
  22. PHaRTnONu

    http post refusing to work...

    got it working so i can send twilio text messages, thanks for smoe of the help, it actualy saved me some time after i did some research on php handliing $_Request pain in the but but all working perfectly from zenno poster now to send.... now i just need a way to recive from them in zeno too :(
  23. PHaRTnONu

    http post refusing to work...

    its a twilio http post, if i use the php fiels and have it poiting on a server with the php file on a server it works just fine but i need to post from zenno and its driving me crazy.... if your availble message me at skype: b4nk5 b4nk5
  24. PHaRTnONu

    http post refusing to work...

    well while it says it post successfully its not actual doing the same thing it does if i execute it on the site with a php post....
  25. PHaRTnONu

    http post refusing to work...

    fixed: just set a variable at the bottom of detail in the http options just had to set it TO ANY variable... don't know why i don't need a variable response really
  26. PHaRTnONu

    delete processed email upon completion

    I'm using the zenno poster email processor to process incoming emails. here's where I'm running into issues i need to retrieve the oldest email that meets the criteria (9 numbers in the subject line minimum) (i don't know how to set my search string to do this) also after i get the info out of...
  27. PHaRTnONu

    http post refusing to work...

    so http post in one of my script and no mater what i have been trying the damn thin refuses to work (i had the raw data in where the variable now sit but even before that it would still come back telling me Error variable with specified name does not exist) so i created the two purple Phone #...
  28. PHaRTnONu

    Twilio api bot (http get/post) on local machine

    wanted to update possible solution Here maby? if you can do either please let me know
  29. PHaRTnONu

    Twilio api bot (http get/post) on local machine

    Ok, i need a zenno poster bot that will interact with website to get retrieve data and send data. the site will provide a phone # and a message body to be sent to a phone number. i need to send it to (through) twilio service. my problem is that i run into is when the phone number that RECEIVED...
  30. PHaRTnONu

    capcha capture & save solved results (pic named as result)

    switched dll file to anti bot and problem solved LOL
  31. PHaRTnONu

    capcha capture & save solved results (pic named as result)

    so i downloaded that basic script on the wiki site. but im trying to save it as a image {-Project.Directory-}{-Variable.RecognitionResult4-}.jpg always not completing and project maker inst sending the results to anti gate and idk im just really stuck ll i need is the script to literally send...
  32. PHaRTnONu

    Sending local jpg file to captcha Services

    permission is still denied.....
  33. PHaRTnONu

    wtb bot for: Dating site/vegasinsider/EmailSite/SMS

    Hired lokiys 8-):D
  34. PHaRTnONu

    wtb bot for: Dating site/vegasinsider/EmailSite/SMS

    btw if you cant do twilio api that's OK let me know for the first 2 parts
  35. PHaRTnONu

    wtb bot for: Dating site/vegasinsider/EmailSite/SMS

    ok so this will be long so bear with the dialog, please let me know if you have database experience. i would prefer to use one database system if we can, also i want to to have like 10 more scripts written afterwards so if the work and price is good you'll have steady work for hte next 6 months...
  36. PHaRTnONu

    I still can't figure out how...

    the problem was the server couldn't start because something in windows was blocking the server from starting on local. i have no idea what it was cause i literally disabled all auto start's in registry, and did a admin login with only minimum services
  37. PHaRTnONu

    I still can't figure out how...

    solution: boot regedited to hell to only run like 2 services, booted to administrator....
  38. PHaRTnONu

    I still can't figure out how...

    No matter what I'm doing and capmonster is running nothing happens when have a captchamonster on a website.... I dont know how to use this software at all..... is there ab100% noob video from 0 % knowledge from everything ??? The majority of video I've seen are confusing and then the rest are...