Page 1 of 1

how can I hide the mouse pointer with windows DLL call?

Posted: Wed Jul 04, 2018 9:08 pm
by adamdwaldrop
I have a script written up but I dont think it works yet:

import ctypes
# Load DLL into memory.

from ctypes import *

hllDll = ctypes.WinDLL ("user32.dll")

toggle = keyboard.getPressed(Key.V)

if toggle:
hllDll.ShowCursor(0)



can someone help out?