Dark Bit Factory & Gravity

PROGRAMMING => Freebasic => Topic started by: DrewPee on January 21, 2010

Title: Can you hide the mouse pointer?
Post by: DrewPee on January 21, 2010
Guys, I know this is a newbie question but can you hide the mouse pointer when using TinyPTC in window mode?

Drew
Title: Re: Can you hide the mouse pointer?
Post by: Shockwave on January 21, 2010
Yes:

Code: [Select]
dim as uinteger mpointer
mpointer=showcursor(0)

If you're not doing so you should be using tinyptc_ext just for the sake of compatibility.
Title: Re: Can you hide the mouse pointer?
Post by: DrewPee on January 21, 2010
Thanks Shockwave. Much appreciated!

Drew