check imdb for movie rating

Get help with using AutoHotkey (v2 or newer) and its commands and hotkeys
dentopolis
Posts: 125
Joined: 06 May 2016, 16:28

check imdb for movie rating

Post by dentopolis » 26 Sep 2022, 10:17

I'd like to select a movie name on a website, press (ctrl alt shift i) and open chrome with this link:
how should it look like? my current code.

Code: Select all

!+^i::
{
SendInput "^c"
ClipWait
Run "https://www.imdb.com/find?s=tt&q=A_Clipboard"
}

User avatar
boiler
Posts: 16705
Joined: 21 Dec 2014, 02:44

Re: check imdb for movie rating

Post by boiler » 26 Sep 2022, 19:05

Code: Select all

Run "https://www.imdb.com/find?s=tt&q=" . StrReplace(A_Clipboard, " ", "+")

Post Reply

Return to “Ask for Help (v2)”