I wanted to change the cursor into black. I searched many websites and ended up with a few answers, but they don't work with axShockwaveFlash
. I have this:
Cursor = new Cursor(@"PathToCurFile");
It only changes the cursor of the form, but I want to change the control's mouse. I tried another option:
Cursor.Override = Cursor;
It doesn't do anything, I believe. So I tried this:
axShockwaveFlash1.Cursor = new Cursor(@"PathToCurFile");
Again, it does nothing. Would anyone tell me how to change the color of my cursor?
Edit1: i tried placing an invisible label ontop of it... Did change the mouse but i couldn't click on the game, So i tried to pass the clicks to AxShockwaveFalsh I could click etc but the cursor went back to normal.