Development webplayer, where is it?

The 2.6 feature list mentions the availability of a development webplayer (includes profiling support). I’m not sure where I can find this dev webplayer, anyone got luck with this?

Did you check the development build checkbox in the build settings?

Yes, but it’s ghosted when the build setting is set to webplayer…

How do you use the profiler?

I’ve used both pieces of code shown in the manual, but apart from a large file next to executable - I can’t find anything new and don’t know how to get that precious ‘development build profiling’ info…

I used:

Profiler.BeginSample ("MyPieceOfCode");
// do something that takes a lot of time
Profiler.EndSample ();

and

Profiler.logFile = "mylog.log";
Profiler.enabled = true;

do you own Pro? (profiling is a pro feature)
Also the log will contain your profiling info if you do the profiling out of a development build (non dev builds won’t do any profiling).
The alternative is realtime profiling in the editor itself

Is there an option to load development profiler log (the one created when you launch the build) into Editor profiler to “see it pretty”?