AntiAliasingAsPostEffect: Namespace could not be found in C# file?

Hi,

I´m using Unity 3.5.1 with MonoDevelop and develop with C#.
i want to enable/disable the “AntiAliasingAsPostEffect” during runtime of my game.

Because its a javascript file, it can´t be found in my C# file.
Any idea how to fix it, so i get code completion with MonoDevelop also for all javascript files?
Thanks

using UnityEngine;
using System.Collections;

public class Manager
{	
	private AntialiasingAsPostEffect aa;
	
	//...
}

Assets/Standard
Assets/Scripts/Manager/Manager.cs(11,18):
error CS0246: The type or namespace
name `AntialiasingAsPostEffect’ could
not be found. Are you missing a using
directive or an assembly reference?

Sure, just move your “Manager.cs” out of the Standard Assets folder. Standard Assets are compiled into a seperate assembly so it can be used by other languages. See compilation order