Well i made a tiny tidbit of code just to test how this works, but sadly it didnt work too good.
I made it activate upon hitting enter
A timer shows window when timer ends.
It is \"SUPPOSED\" to make the cursor on your desktop screen go everywhere. but i dont know if this is the right code
#include \"DarkGDK.h\"
int t1=0,
t2=3,
t3=0;
// the main entry point for the application is this function
void DarkGDK ( void )
{
dbSyncOn ( );
dbSyncRate ( 100 );
dbDisableEscapeKey ( );
t1=dbTimer();
t2=t1+500000;
dbSetWindowTitle (\"PointerController\");
while ( LoopGDK ( ) )
{
t1=dbTimer();
if (dbReturnKey()==1)
{
dbHideWindow();
t3=1;
}
if (t3==1)
dbSetCursor(dbRnd(1280),dbRnd(768));
if (t1==t2)
dbShowWindow();
// update the screen
dbSync ( );
}
// return back to windows
return;
}
or its attached: