Hi ArenMorok, I try this code to display an image, and i did look at the UITexture at NGUI documentation, I cant seem to find any code there that let me change the texture. Can i have the NGUI syntax code equivalent to the code below?
Thanks a lot and sorry for the hustle.

public Texture TestTexture;
// Use this for initialization
void Start () {
Object temp = Resources.Load ("davao+rizal+park");
TestTexture = Resources.Load ("davao+rizal+park") as Texture;
if(temp == null)
Debug.Log("Load Object Fail");
}
void OnGUI () {
GUI
.Label (new Rect
(0,
0,
200,
100), TestTexture
); }