Unity webplayer left click problem

I’ve seen the right click problem with the context menu thing, and this is a little different. Basically I have a “PLAY” button but it simply doesn’t work. It works in the editor, and if I build it, it works just fine. However after uploading to Gamejolt the button refuses to do anything, furthermore the other button like instructions and fullscreen work fine. I’ve tried turning off the context menu and that did nothing and I’ve tried rebuilding the game several times. This has also happened to me with a different game that I uploaded to Wooglie but the problem seemed to go away after rebuilding. Is this a problem with my code/build or something I need to contact Gamejolt about?

Here is my code (in C#) :

    void OnMouseEnter() {
		renderer.material.color = Color.red;
	}

	void OnMouseExit() {
		renderer.material.color = Color.white;
	}

	void OnMouseDown() {
		Application.LoadLevel("game");
	}

Once again I have solved my problem before someone else could. Oh well. So I was able to make the game work by checking Offline Deployment in the build settings, seemed to be a cure-all. Thanks for anyone that looked at this question and I hope it helps someone!