This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
#SingleInstance,Force | |
Global API_Key,ID,All,From,To,XL,EndPoint,LangObj | |
Global Column_to_Translate:="A", Column_To_Put_Translations:="B" | |
;************************************** | |
EndPoint:="https://www.googleapis.com/language/translate/v2" ; ?parameters |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
SingleInstance,Force | |
;*****</code>#**************************************************</pre> | |
<pre><code>; TS=Title_Size TF=Title_Font TC=Title_Color | |
; SI=Speed_In SC=Speed_Clear ST=Speed_Timeout" | |
; GC=GUI_Color GT=GUI_Transparencey |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
#SingleInstance,Force | |
SetBatchLines,-1 | |
Text:="|<Skip YouTube Ad>*63$65.zzzzzzzzzzzzzzzzzzzzzzzwzvzzzzzzb1tzXzzzlzz81nzzzzzXzyHlbzzzzzLzwDnD6t3zwbw8TyQxk3ztDk2DwnvXXzrT763t7rDbzCSTD1mTiTDyQwyTlUzQyTtwtwznAytwzk1nsTaQxntzU3bkSAtvXXyTn740ttr0Dwzb0C3ntiEznzb2Tzzzwzzzzzzzzzztzzzzzzzzzznzzzzzzzzzzbzzzzzzzzzzzzzzzzs" | |
While !Ok { | |
ok:=FindText(0,0,150000,150000,0,0,Text) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
;************************************************************ | |
;************************************************************ | |
IniRead, API_Key ,Auth.ini,API, Key | |
;~ https://portal.fullcontact.com/ | |
;************Company Lookup************************************************ | |
;~ EndPoint:="https://api.fullcontact.com/v2/company/lookup.xml" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
;************************************************************ | |
IniRead, API_Token ,Auth.ini,API, Token | |
;***********Clearbit API: docmentation: https://dashboard.clearbit.com/docs******************* | |
EndPoint:="https://prospector.clearbit.com/v1/people/search" ;streaming so waits for response | |
;~ QueryString:=QueryString_Builder({"domain":"the-automator.com","limit":"15"}) | |
;~ MsgBox % QueryString |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
IniRead, API_Secret_Key,Auth.ini,API, Secret | |
IniRead, API_ID,Auth.ini,API, ID | |
;***********Documentation: https://www.data24-7.com/wiki/doku.php?id=api_2.0_instructions******************* | |
Endpoint:="https://api.data24-7.com/v/2.0" | |
QueryString:=QueryString_Builder({"user":API_ID,"pass":API_Secret_Key,"api":"T","p1":"682.209.8014"}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
;~ https://www.reddit.com/r/AutoHotkey/top/.xml?count=20 | |
EndPoint:="https://www.reddit.com/r/AutoHotkey/top/.xml" | |
QueryString:=QueryString_Builder({"count":"20"}) | |
;~ MsgBox % QueryString | |
;***********API call******************* | |
http:= ComObjCreate("WinHttp.WinHttpRequest.5.1") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
queryString:=QueryString_Builder({"q":"select * from local.search where zip='75019' and query='hot dogs'","format":"json"}) | |
;~ MsgBox % queryString | |
EndPoint:="https://query.yahooapis.com/v1/public/yql" | |
;***********API call******************* | |
HTTP := ComObjCreate("WinHttp.WinHttpRequest.5.1") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
;~ https://developers.google.com/maps/documentation/geocoding/start | |
IniRead, API_Key,Auth.ini,API,Key ;read current token | |
;~ queryString:=QueryString_Builder({"address":"836 Kilbridge Lane, Coppell, TX","key":API_Key}) | |
queryString:=QueryString_Builder({"address":"1600 Amphitheatre Parkway, Mountain View, CA","key":API_Key}) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
;******************************************************* | |
; Want a clear path for learning AutoHotkey; Take a look at our AutoHotkey Udemy courses. They're structured in a way to make learning AHK EASY | |
; Right now you can get a coupon code here: https://the-Automator.com/Learn | |
;******************************************************* | |
;~ https://developers.google.com/maps/documentation/directions/ | |
IniRead, API_Key,Auth.ini,API,Key ;read current token | |
queryString:=QueryString_Builder({"origin":"75 9th Ave New York, NY","destination":"MetLife Stadium 1 MetLife Stadium Dr East Rutherford, NJ 07073","key":API_Key}) | |
Endpoint:="https://maps.googleapis.com/maps/api/directions/" . "xml" ;xml or json |