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.
You will need to do it at a lower level using a Win32 API. Here is the code:
I suggest changing the cursor in the axShockwaveFlash1 controls MouseEnter and MouseLeave events, eg:
If it doesn't have these events place the axShockwaveFlash1 control in a PictureBox control and use its in/out mouse events.