Hello,

I'm creating a quite simple countdown clock for a project I'm doing. I use 3DGS A7 Educational for the programming and A8 free for the compiling. What I want is run the program in video_screen = 1(fullscreen), but then the mouse cursor is gone. So I did set the mouse_map to a 32x32 ARGB 32-bit .tga file but then if I run it, it says Acknex.exe stopped working, if I compiled it, it says countdown2.exe. It does this in A7 and A8.

FYI: I'm using Windows 7 Home Premium

the code where I set the mouse_map
Code:
function main(){
video_screen = 1;
mouse_mode = 4;
mouse_map = "mouse.tga";
}



Can anyone help me?