PS4 Remote Play (directional issues)

Ask gaming related questions (AHK v1.1 and older)
Prompto
Posts: 1
Joined: 07 May 2020, 11:41

PS4 Remote Play (directional issues)

Post by Prompto » 09 May 2020, 16:24

Hi there.

Newbie with Autohotkey just trying to make a "simple" script. I need to move left, right and hit enter (the to close out of any menus that pop up).

So, looping 3 things:
(1) left
(2) right
(3) enter

Here's my script:

Code: Select all

t::

tooltip % "started"

pause

Loop

{

Send {Left}

Sleep 1000

Send {Right}

Sleep 1000

Send {Enter}

Sleep 1000

}

return

esc::pause ; esc = pause, esc again = continue

^esc::exitapp ; ctrl+esc = terminate program
[Mod edit: [code][/code] tags fixed and topic moved to 'Ask For Help'.]


When I use PS4 remote Play, directional controls are achieved on the D-Pad OR when I manually use the left and right arrow keys on the keyboard.

But running the script doesn't work.

My code seems to run like butter with anything other than PS4 Remote Play. It functions on the icons on my desktop, the cells in a spreadsheet, etc.

But when I pull up PS4 RP, I maaaybe get a staggered enter command every now and then (if I manually battle and watch the menu screen), but it's extremely slow if operable. And I've made sure it's fullscreen and selected and then I unpause my started script.

Any help would be appreciated. Thanks!

Return to “Gaming Help (v1)”