Sending shared link from GoogleDrive to Google URL shortener

Discussion, questions and support.
Post Reply
cadudesun
Posts: 103
Joined: Jun 6th, ’15, 03:28

Post by cadudesun » Dec 18th, ’15, 15:04

Hi,

As illustrated in the following screen (http://i.imgur.com/BG8eFX6.png), would FastKeys be able to send a selected shared link from Google Drive to a field of the Google URL shortener webpage (https://goo.gl/)?

Since the text would appear in the field "paste your long URL here", the only manual procedure would be to click on the button "Shorten URL". Or there would be any automation that would allow to "paste your long URL here" + click "Shorten URL" button automatically?

Thanks for assistance!
User avatar
Tom
Posts: 791
Joined: Nov 24th, ’15, 23:39

Post by Tom » Dec 18th, ’15, 18:13

Try this:

Code: Select all

Send, ^c ;Copy
Run, http://goo.gl/
Sleep, 2000 ;Modify this as needed
WinActivate, Google URL Shortener
Send, {Tab}
Sleep, 100
Send, ^v ;Paste
Send, {Enter}
You could automate it further, copy url and close the window...
Post Reply