Jump to content
LaunchBox Community Forums

chris247

Members
  • Posts

    3
  • Joined

  • Last visited

chris247's Achievements

1-Bit Wonder

1-Bit Wonder (1/7)

0

Reputation

  1. So I have a couple of games on uplay, gog,etc that are also on steam. I have added these games by just going to Games->Add. These games are also on steam so they should have a video, however, when I click on download metadata I don't get the steam trailer option. What do I need to do to download the videos for games like these? I tried switching it to imported from steam but it didn't do anything.
  2. Jason Carr said Hi @chris247, I believe you would do it like this, iirc: If ( GetKeyState("2Joy08") && GetKeyState("2Joy09") ) Do keep in mind that sadly there have been some problems with AutoHotkey and game controllers recently due to Microsoft driver screwups. It doesn't sound it's giving you a problem though, so that's good. :) I got it ended up doing 2Joy8:: if (GetKeyState("2Joy7") AND GetKeyState("2Joy8")) works perfectly thanks
  3. A couple of games were making big box sit behind the task bar no listening to my controller upon exiting so I looked up an AHK script to bring focus to BigBox if it's running and if it isn't it launches it. My only problem is that I don't know how to bind this script to my Back and Start buttons on my xbox controller. This is what my script looks like now but it activates if I press the back button by itself (Joy7) I want it to only activate when I press both. 2Joy7:: If GetKeyState("2Joy08") SetTitleMatchMode, 2 ; approximate match IfWinExist, - Launchbox Big Box { WinActivate, - Launchbox Big Box } IfWinNotExist, - Launchbox Big Box { Run C:\Users\Chris\LaunchBox\BigBox.exe } return
×
×
  • Create New...