Jump to content
LaunchBox Community Forums

jpcheat

Members
  • Posts

    1
  • Joined

  • Last visited

jpcheat's Achievements

1-Bit Wonder

1-Bit Wonder (1/7)

0

Reputation

  1. I finally managed to get full screen working on Arculator v2 using actual autohotkey v2 and mouse commands. its hacky but it works great. You may need to tweak the mouse values depending on your screen resolution etc. You can trigger the script using additional apps in launchbox. I couldn't get it to work directly using the built in ahk script in launchbox, someone may be able to figure that out though but someone may find this a useful alternative. #Requires AutoHotkey v2.0 SetTitleMatchMode 2 CoordMode "Mouse", "Window" ; --- Wait for Arculator window to exist --- if !WinWait("Arculator", , 15) ; waits up to 15 seconds { MsgBox "Arculator window not found!" ExitApp } ; --- Activate it --- WinActivate "Arculator" WinWaitActive "Arculator" ; --- Extra delay (10 seconds) --- Sleep 10000 ; --- CLICK VIDEO MENU --- MouseMove 145, 51 ; adjust if needed Click Sleep 200 ; --- CLICK FULLSCREEN --- MouseMove 166, 93 ; adjust Click ExitApp
×
×
  • Create New...