You use a global variable in your project to set the sprites rotating. That's the problem because if that one variable is true, all sprites start spinning. You need to test every single object and the way I would do that is use an instance variable for each object that is set to true if the mouse is overlapping it.
Then if the instance variable of the object is true, the sprite will start spinning.
i hope I could help!