>>273
NullReferenceExceptionなら、何か設定抜けててnullになってる変数があるんじゃないかな?

最初のリンクのサンプルの「"http://www.my-server.com/image.png";」を表示したい画像リンクに変更して、
「Texture myTexture …」のあとに2行追加
GetComponent<UnityEngine.UI.RawImage>().material = new Material(Shader.Find("Unlit/Texture"));
GetComponent<UnityEngine.UI.RawImage>().material.mainTexture = myTexture;
とかでどうでしょう?