embedding link, video, sound, text. how?

Hi,
i am a beginner and i have 4 questions.
I would like to embed in my unity project
1, a link
2, a video
3, sound
4, text.

where and how can i do it? Thank you so much.

  1. GUItext
  2. MovieTexture
  3. AudioClip
  4. GUItext

Look those up in the documentation. :slight_smile:

In Unity Free, you cannot add Video, but the other objects are viable.

Link

function OnGUI () {
   if(GUI.Button(new Rect(0,0,20,10), "Link"){
     Application.OpenURL ("http://unity3d.com/");
   }
}

Sound

Unity Script Resource

Text

Unity Script Resource