Jump to content

Leaderboard

Popular Content

Showing content with the highest reputation on 03/17/2018 in all areas

  1. 1. Description. Automate communication with Gmail API using oAuth 2.0 security. 2. Requirements. Google Gmail account. Finished Authorization process. Look here 3. Possibilities. ;======================================================================================================================== ; Date: 2018-02-12, 11:46 ; ; Bug Fixs: 2018-02-17, 7:31 -> Fixed problems with adding items to array and minor bugs. ; ; Description: UDF for using Gmail API interface. This UDF requires oAuth.au3 and Gmail account. ; ; Function(s): ; gmailUsersGetProfile() -> Information about your account. ; gmailUsersLabelsList() -> Get all available labels ids. ex. "INBOX", "UNREAD" ; gmailUsersLabelsGet() -> Get information about specific label id. ; gmailUsersMessagesBatchDelete() -> Delete many messages emails by id. ; gmailUsersMessagesBatchModify() -> Set status for many messages ex. "INBOX", "UNREAD" ; gmailUsersMessagesDelete() -> Totaly delete email from ur account. ; gmailUsersMessagesGet() -> Get all information about specific email. ; gmailUsersMessagesList() -> Get list of last ~100 emails. ; gmailUsersMessagesModify() -> Modify single message. ; gmailUsersMessagesTrash() -> Put email in trash. ; gmailUsersMessagesUntrash() -> Restore email from trash. ; gmailUsersMessagesSend() -> Send email to single or group recipients. ; gmailUsersMessagesAttachmentsGet() -> Download attachment by id. ; ; Author(s): Ascer ;======================================================================================================================== 4. Downloads. oAuth.au3 Gmail API.au3 5. Examples. Sending emails
    1 point
  2. Or just use one Edit control and let users to type desired number :-)
    1 point
  3. Try this: Local $mousePos = MouseGetPos() Local $maxX = REPLACE_WITH_MAX_X_VALUE For $x = $mousePos[0] To $maxX Step 80 MouseClick($MOUSE_CLICK_RIGHT, $x, $mousePos[1], 1) Sleep(4000) MouseClick($MOUSE_CLICK_LEFT, $x + 20, $mousePos[1] + 20, 1) Sleep(4000) Next And, if you don't know where the max X will be (because maybe your window might move), you can use: ; WinGetPos returns a 4x array, where ; [0] = the X of the upper-left corner of the window ; [1] = the Y of the upper-left corner of the window ; [2] = the width of the window ; [3] = the height of the window Local $windowRect = WinGetPos("INSERT_TITLE_OF_WINDOW_HERE") Local $maxX = $windowRect[0] + $windowRect[2]
    1 point
  4. See Example 5 in the help file https://www.autoitscript.com/autoit3/docs/libfunctions/_IEAttach.htm
    1 point
  5. Someone I know wanted me to show them how to get started with scripting. Instead of giving him a one to one I decided to make recordings so that anyone can get the help. I know there are other tutorials out there on youtube but sometimes one type of video style or person's personality may be more acceptable than another, so feel free to check them out and tell me what you think. I am not done yet by a mile but I made what I have so far public. I will be making a lot more videos both on the basics and then more task orientated videos like how to write and read to files, how to make GUI's etc etc. http://www.youtube.com/playlist?list=PLNpExbvcyUkOJvgxtCPcKsuMTk9XwoWum&feature=view_all That play list link will be updated with more videos as and when I record them.
    1 point
  6. I finally got around to making a new tutorial on ini files https://www.youtube.com/watch?v=0_cPWYQ6iIs&index=20&list=PL4Jcq5zn02jKpjX0nqI1_fS7mEEb5tw6z I had several requests to do the video on the additional way to pull multiple unknown things from ini files, so I have now done the video.
    1 point
×
×
  • Create New...