Processing Ajax...

Title
Close Dialog

Message

Confirm
Close Dialog

Confirm
Close Dialog

Confirm
Close Dialog

User Image
the dude22
6 discussion posts
I've been using a similar program that allows you to convert mouse movements to key presses. For example, with driving games if I wanted to use the mouse to steer I could use this script and just say " driving mode" to toggle it.
if said(" driving mode") then
var.mouse ++
wait 2s
endif

if var.mouse > 1 then
var.mouse = 0
Say("Mouse Unlocked")
endif
if var.mouse = true then

if delta(smooth(mouse.DirectInputX))<-3 then
key.A=1
else key.A=0

if delta(smooth(mouse.DirectInputX))>3 then
key.D=1
else key.D=0
endif
I noticed this program has the ability to use macros so I'm guessing it's possible. It's a different programming language than the other program so I don't know how to accomplish it yet but I wanted to see if it was possible
Jul 22, 2018  • #1
Keith Lammers (BFS)'s profile on WallpaperFusion.com
I've passed this along to one of our devs to have a look at when he has a few free minutes :)
Jul 23, 2018  • #2
User Image
the dude22
6 discussion posts
Sounds good, I will check back in and see what he came up with. Thanks for the help
Jul 23, 2018  • #3
Thomas Malloch (BFS)'s profile on WallpaperFusion.com
Sorry for the late reply!

I put together a Scripted Function that should work for you. Here's how to set it up:

  • Download the file attached to this post
  • On The Settings->Profiles Tab, double click a Profile you would like to exit, or click the "Add" button
  • Click the "Add" button again
  • On The Edit Macro button, give the Macro a name, and in the Add dropdown, select "Custom Macro Script"
  • Copy the contents of the file you downloaded in the first step to the Macro Script Edit window
  • Review the code if you want, and Select Ok on all of the windows you opened to save and apply your changes.

I hope this works for you!
• Attachment: Joystick Emulation with Mouse.txt [1,636 bytes]
Oct 18, 2019  • #4
Subscribe to this discussion topic using RSS
Was this helpful?  Login to Vote(-)  Login to Vote(-)