Jump to content

gaiaplay

Members
  • Posts

    14
  • Joined

  • Last visited

gaiaplay's Achievements

Seeker

Seeker (1/7)

0

Reputation

  1. I have this below and Im trying to send a simple mail. However I get an ERROR CODE 2 "Transport Failed to Connect to Server?" Please help. I'm not that skilled in doing this. ; ;################################## ; Include ;################################## #Include<file.au3> #include <INet.au3> ;################################## ; Variables ;################################## ;$SmtpServer = "alt3.gmail-smtp-in.l.google.com" ; address for the smtp-server to use - REQUIRED $SmtpServer = "smtp.gmail.com" ; address for the smtp-server to use - REQUIRED $FromName = "Gaiaplay" ; name from who the email was sent $FromAddress = "gaiaplay72@gmail.com" ; address from where the mail should come $ToAddress = "ddo_gears@yahoo.com" ; destination address of the email - REQUIRED $Subject = "Hello World!" ; subject from the email - can be anything you want it to be $Body = "This script is great! See attachment!" ; the messagebody from the mail - can be left blank but then you get a blank mail $AttachFiles = "C:\File.txt" ; the file you want to attach- leave blank if not needed $CcAddress = "" ; address for cc - leave blank if not needed $BccAddress = "" ; address for bcc - leave blank if not needed $Importance = "Normal" ; Send message priority: "High", "Normal", "Low" $Username = "gaiaplay72@gmail.com" ; username for the account used from where the mail gets sent - REQUIRED $Password = "*******" ; password for the account used from where the mail gets sent - REQUIRED $IPPort = 465 ; port used for sending the mail $ssl = 1
  2. I guess there is no autoit function for now. That sucks .
  3. Hi guys, I'm trying to find a way to search a text on a screen and once I found it I need to get the coordinates or click it? Is there a way to do it? What command is needed for it? Thanks, Gaiaplay
  4. Thanks.
  5. TY guys you are great. I now have an idea how to handle this one. THANKS once again.
  6. Thanks, Gaiaplay
  7. I did try but nothing relevant. Also reviewed the Send function. Nothing there too.
  8. Is it possible to sending Keystrokes to a background or inactive window?
  9. I know the window exist and is physically there. It just would not activate it.
  10. I'm having problem with my script when porting it to a new computer. The 2 lines below is the problem. It works well with my XP machine and my other Vista Machine but on my 3rd Machine which is Vista too, it does nothing at all. WinActivate ("MyGame") Sleep (3000) Please let me know what is wrong with it. It is so simple but can't really make it work for my 3rd computer. Thanks.
  11. There will be random instances that A, B or C will appear in the screen in a specific static position. If they appear/change, I want to know if it is A, B or C.
  12. Hello guys, I am new to autoit and I am not sure if it can help me with the task I need. I have set a picture to make it easier for me to explain. Base on the image above, there are 3 objects A, B and C. 1) Is it possible for me to capture the 3 images and assign them to a variable/object for each one of them? If it can be done, can you please write a sample code for it. 2) Second, if they can be assign as an object, can you do a comparison for each of them? I am not asking for an entire script, maybe some pseudo codes will help me since I am new to images/pics/objects.
  13. Hello guys, I am new to autoit and I am not sure if it can help me with the task I need. I have set a picture to make it easier for me to explain. Base on the image above, there are 3 objects A, B and C. 1) Is it possible for me to capture the 3 images and assign them to a variable/object for each one of them? If it can be done, can you please write a sample code for it. 2) Second, if they can be assign as an object, can you do a comparison for each of them? I am not asking for an entire script, maybe some pseudo codes will help me since I am new to images/pics/objects.
×
×
  • Create New...