GUI texture popup and GUI texture based on Screen Resolution...how?

I’m still confused with GUI textures… I would like to have a popup window at the beginning of my game like a tutorial and I would like it to adjust automatically when screen resolution is changed, also I would also want the popup window to wait for seconds before popping up…I found many codes but it just wont work…help please… >_< I thought it was just simple but i guess not… thanks in advance! :slight_smile: additional question, is it true that movie is not available for unity 2.6.1?only for pro3? :smile:

This thread shows how to make a resolution-independent GUI. You can make the GUI pause before displaying with code like the following:-

var delay: float;
var showGUI: boolean;

function Start() {
  yield WaitForSeconds(delay);
}

function OnGUI() {
  if (showGUI) {
    // Display popup window.
  }
}