Control PowerPoint with StreamDeck (Both Active And Non-Active Windows)

Sdílet
Vložit
  • čas přidán 27. 07. 2024
  • This tutorial shows how you can control your PowerPoint (whether the PowerPoint window is active or not) using Streamdeck and AutoHotKey automation.
    Credit to Hans Scharler for the solution
    nothans.com/stream-deck-autoh...
    This solution works only for Windows.
    Once the script file is ready, place it in the startup folder to automatically initiate the script when Windows starts up.
    First type %appdata% in the search box. This will open the user folder. From there, navigate to
    Microsoft-Windows-Start Menu-Programs-Start Up
    and paste the script file in this folder.
    “Toastmasters International and all other Toastmasters International trademarks and copyrights are the sole property of Toastmasters International. This video is the opinion of the creator and is independent of Toastmasters International. It is not authorized by, endorsed by, sponsored by, affiliated with, or otherwise approved by Toastmasters International.”

Komentáře • 19

  • @HansScharler
    @HansScharler Před 2 lety +6

    Thanks for sharing this solution with your audience. And, thanks for including a link to my article. Cheers.

  • @MagicFootprints
    @MagicFootprints Před 2 lety +1

    Thanks to you and also Hans! This works perfectly.

  • @EllenRogin
    @EllenRogin Před 2 lety

    I am so grateful for this - thank you for this video (and thank you Hans). I am not a techie, and your instructions got my presentation working and my stress level down!

  • @rubenchavez1747
    @rubenchavez1747 Před rokem

    This is AWESOME!!! I'm sooo happy about this! Thank YOU again!!

  • @claytonspann8032
    @claytonspann8032 Před rokem

    Thanks for this, was a great solution for me since I run multiple windows during a presentation.

  • @JDivider
    @JDivider Před 2 lety +1

    Works great! Thank you!

  • @TWICESHOT
    @TWICESHOT Před 2 lety +1

    This is brilliant, works perfectly! Thank you

  • @wirtschaftsinformatikHense

    Thanks for this informative and well made video. This was exactly what I was looking for.

  • @user-po8kg3nj8h
    @user-po8kg3nj8h Před 2 lety

    This is a GREAT video -- thank you so much!

  • @timbrosch4254
    @timbrosch4254 Před rokem

    Outstanding

  • @rubenchavez1747
    @rubenchavez1747 Před rokem

    Thank you!

  • @snibushds
    @snibushds Před 2 lety

    Excellent.

  • @juanfernandoposada-histori3619

    great video! thanks to both! will it work for zoom presentations and webinars that use powerpoint? Thanks!

  • @sandlerleeds878
    @sandlerleeds878 Před 2 lety

    Does this only work if you have OBS. I followed the instructions but the button on Streamdeck doesn't have any effect on the slide?

  • @theelvisphoto
    @theelvisphoto Před 2 lety +1

    Thanks! Wouldn't it be a good idea to add to the script a command that puts OBS back as the active window?

    • @TechforToastmasters
      @TechforToastmasters  Před 2 lety +1

      That's a brilliant idea. I will implement it. It will help me to visualize what the audience is seeing.

    • @TechforToastmasters
      @TechforToastmasters  Před 2 lety

      I finally got around to putting OBS back as the active window. The below is an example for the Next Slide.
      If WinExist("PowerPoint Slide Show")
      {
      WinActivate ;
      Send {PgDn}

      If WinExist("OBS")
      {
      WinActivate ;
      }
      return
      }