I don't understand why but some code that works in Unity (just a GUI.Label()) doesn't show in the webplayer ...
Any advise ?
-EDIT-
Sorry, I should have been more specific. I have two scene in my build. One is the menu and one is the app.
The menu has currently juste a script that contains a
GUI.Label(Rect(10,10,200,30),"testing");
nothing too fancy ... Doesn't work in the webplayer & the .exe
I tried to build another project and it works ... I think it's related with how I should use the scenes (I just drag&dropped the scene in the build list)
Dragging and dropping should work, although if you move scenes in the project between builds, sometimes they are not added properly. I'm not sure if that has changed in 2.6.
Try opening the build settings, deleting all the scenes, and re-adding (dragging and dropping is fine) the scene in question. If you want to be sure the scene is working, add a GUITexture (not from code, but from the MenuBar GameObject-> CreateOther ->GUITexture) and save it in your scene. See if that shows up.