My 5 Favorite AutoHotKey Scripts

Поделиться
HTML-код
  • Опубликовано: 17 дек 2024

Комментарии • 44

  • @henrywaldersee4670
    @henrywaldersee4670 Год назад +11

    The auto-pdf-to-clipboard is amazing

  • @thanhvo3424
    @thanhvo3424 5 месяцев назад +2

    Love this so much! Thank you Tyler! I'm a recruiter that handles a lot of emails and Hubspot Tickets on a daily basis, and this is beautiifull!! Big support from Vietnam!

  • @davidsonshine9678
    @davidsonshine9678 Год назад +7

    Thanks Tyler Faulkner. I am using AutoHotKey to type this comment. Lol, just kidding.

  • @JoeGlines-Automator
    @JoeGlines-Automator Год назад +12

    Great job Tyler! Very cool examples and you did a great job easing people into AHK! Great to see working examples!
    There are some great gems here! :)

    • @AllenHorn0507
      @AllenHorn0507 Месяц назад +1

      @@JoeGlines-Automator love this guy! He and Isaiah have taught me a ton!!!! to be honest with you… There is absolutely no way I could be where I am today without them and videos like this! Words do not even convey my appreciation!

    • @JoeGlines-Automator
      @JoeGlines-Automator Месяц назад +2

      @@AllenHorn0507 Thank you for the Shout out! We enjoyed our calls with you as well! I hope life is treating you well!
      Regards,
      Joe & Team

  • @americanmacgyver
    @americanmacgyver 4 месяца назад

    Thank you Mr. Faulkner. Yes, I would watch a video from you about VBA as well. I like that you gave practical examples.

  • @RiminiVirage
    @RiminiVirage 2 месяца назад

    Absolutely first rate video explanation really demonstrates the abilities that auto hotkey can offer. If I can knuckle down to using it this would make my own working life a great deal easier.

  • @50PullUps
    @50PullUps Год назад +2

    6:49 this little menu would be awesome for filling out job applications. Instead of copying & pasting items from your resume into the web page’s fields, a single-click GUI for inserting the info would make the tedium of job hunting a little less horrible.

  • @DavidJJJ
    @DavidJJJ 7 месяцев назад +1

    Great automations, I love the hierarchical menu, I could definitely use that.

  • @Therefour
    @Therefour 7 месяцев назад +2

    really great video! I will definitely be using some of these as inspiration

  • @richardwilliamsmusic
    @richardwilliamsmusic 11 месяцев назад

    how do you take the code commands you wrote in vscode and have them apply to your computer as macros?

  • @LivingGuy484
    @LivingGuy484 4 месяца назад

    I would really appreciate the VBA that makes a PDF in the same folder, this is awesome

  • @MidLifeGamerGuy
    @MidLifeGamerGuy 10 месяцев назад

    Cheers for the video, some nice automation there, I've been putting stuff together in VBA and power automate, would definitely be interested to see what other scripts you've put together VBA and AHK

  • @komm11
    @komm11 4 месяца назад

    Thank you for sharing, nice to see the programmer)

  • @hankshub
    @hankshub 29 дней назад

    How to make AHK press the [{ button?

  • @DeeArroyo
    @DeeArroyo 2 месяца назад

    Hey Tyler, great video. Thanks for sharing. How do you install Whisper on a Windows 10 machine?

    • @tbfaulk
      @tbfaulk  2 месяца назад

      @@DeeArroyo Thanks! I followed this tutorial to install whisper
      ruclips.net/video/ABFqbY_rmEk/видео.htmlsi=xp0W06Rx7Hys68RU

  • @DamagedDingo
    @DamagedDingo 9 месяцев назад

    My favourite turns numlock on every 500ms.
    Every time you enter a hyper-v machine it turns it off which always drove me crazy.

  • @Russels_Viper
    @Russels_Viper Год назад

    Hello there,,
    I am trying to use a simple script to replace '

  • @yanchaniago9395
    @yanchaniago9395 9 месяцев назад

    HI Sir.. I am new the this AHK.
    I run this program which requires me to keep pressing the Ctrl Button.
    So I want to change these following combo buttons into 1 click only.
    Ctrl+Z to Z
    Ctrl+ UpArrow to UpArrow
    Ctrl+Down Arrow to DownArrow
    Can you Help? Thanks a bunch.

  • @AllenHorn0507
    @AllenHorn0507 Месяц назад

    I have a question. I am an old blind guy 😂 who has learned ahk out of necessity to create tools for accessibility in the workplace. I stumbled on your video about using ahk with whisper. One of the things I struggle with most is being able to take notes during meetings and I think that would be a great way for me to capture meeting details and action items a little easier. Do you have any advice you can give?

    • @tbfaulk
      @tbfaulk  Месяц назад +1

      I know that you can also use whisper as an API, so it could be done on the cloud instead of locally. When you do this, I think (emphasis on think) you can also send the transcript to ChatGPT with a prompt to summarize it. There would of course be a few associated with it, but it wouldn't be very much.
      Joe Glines has created a tool to handle the API call, but I don't know if he's also summarizing the transcript. You might check out his video and get in touch with him about it.
      ruclips.net/video/e3xZG50pqAs/видео.htmlsi=dZMmtW4UHFMg-ThO

  • @simonlpoisson
    @simonlpoisson Год назад

    Good video, thank you for the inspiration from France

  • @mksounds
    @mksounds 6 месяцев назад

    Hello. Great tutorial. One question: how do you close a window without knowing it's name? I mean klicking the close button

  • @arbabirfan2448
    @arbabirfan2448 Год назад

    cool and all VBA things also can be done in AHK
    7:00 if that is win32 menu, you do not even have to match menus AHK can read them and you can make list out of it

  • @pankajgarg2341
    @pankajgarg2341 Год назад

    Can you share how to make the buttons for auto-pdf-to-clipboard please?

    • @tbfaulk
      @tbfaulk  Год назад

      Yep! This is the code that will convert the current sheet into a PDF (pure VBA)
      Sub SaveAsPDF()
      Folder = ThisWorkbook.Path
      FullName = ThisWorkbook.Name
      filenamewoext = Left(FullName, InStr(FullName, ".") - 1)
      newfilename = Folder & "\" & filenamewoext
      ActiveSheet.ExportAsFixedFormat Type:=xlTypePDF, Filename:= _
      newfilename, Quality:=xlQualityStandard, IncludeDocProperties:= _
      True, IgnorePrintAreas:=False, OpenAfterPublish:=True
      End Sub
      And this is the code that will activate the AHK script (note that you must have the script running in order for this to work).
      Sub CopyPDFtoClipboard()
      SendKeys "^%+{F1}"
      Application.SendKeys "{NUMLOCK}"
      End Sub
      You can just copy-paste this into a new VBA module to create the macros. You can then create buttons and assign the macros to them. If you like, I can email you the spreadsheet directly.

  • @shonilcha
    @shonilcha Год назад

    Great job on the Whisper tool Sir.. I am trying to get rid of the line breaks in the transcript output that it gives me. Is there a way to remove that?

    • @tbfaulk
      @tbfaulk  Год назад

      I'm not aware of an option for this in Whisper. However, whenever I've wanted to remove the breaks, I just find/replace in notepad++. Specifically, I use a regex search for carriage return and line feed characters.

  • @yuriiknapik7241
    @yuriiknapik7241 6 месяцев назад

    I'm definely calling Joey

  • @bennguyen1313
    @bennguyen1313 Год назад

    What is the difference between AutoHotKey and AutoKey.. either in syntax or philosophy.
    I'd like to make a simple gui ( few textboxes, few red/green indicators, and pushbuttons).. but I also need to call functions from a 32-bit dll. Can this be easily done?
    BTW, Keith Galli has a nice solution (using AseemblyAi) to transcribe audio files.

    • @tbfaulk
      @tbfaulk  Год назад

      I've never heard of autokey, but a quick Google search shows it's specifically made for Linux. I don't believe the two are related.

    • @bennguyen1313
      @bennguyen1313 Год назад

      @@tbfaulk Sorry meant to write "AutoIt v3"

    • @tbfaulk
      @tbfaulk  Год назад

      Ah, gotcha. I understand that AutoHotKey is actually a branch of AutoIT. I don't know all the history of it, but I actually thought AutoIT was no longer in development.

  • @terfand
    @terfand Год назад

    Thank you Tyler!

  • @suvarnakolhe808
    @suvarnakolhe808 Год назад

    Great job

  • @kingsamuelngonga
    @kingsamuelngonga 10 месяцев назад

    Wow just wow

  • @bobbyLovesTech
    @bobbyLovesTech 3 месяца назад

    😮😮😮

  • @mcdizzzzle
    @mcdizzzzle Год назад

    Just thought I'd share this function that you could incorporate in your menu script (#4). This will paste the text instantly. Very useful for longer strings.
    SendClip(str) {
    bak := ClipboardAll()
    A_Clipboard := str
    BlockInput true
    Send("^v")
    Loop 20
    Sleep 50
    Until !DllCall("GetOpenClipboardWindow")
    BlockInput false
    A_Clipboard := bak
    }

    • @tbfaulk
      @tbfaulk  Год назад +1

      Thanks! I do use the clipboard for pasting longer strings, but I didn't want to try to dive into that in this video. However, I'm not familiar with the block input. I'll have to check that out;

  • @LivingGuy484
    @LivingGuy484 4 месяца назад +1

    I would really appreciate the VBA that makes a PDF in the same folder, this is awesome