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

Official forum for open source FreePIE discussion and development.
Post Reply
adamdwaldrop
One Eyed Hopeful
Posts: 3
Joined: Tue Jul 03, 2018 5:54 am

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

Post 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?
Post Reply

Return to “FreePIE”