Sorry, tripple post but I still havent figured it out. I have tried lots of tutorials but they are only for local pictures, not pictures on the internet. I have tried
_root.createEmptyMovieClip('holder_mc', 1);
holder_mc.loadMovieNum(_root.urlbox, 0);
holder_mc._x=100;
holder_mc._y=300;
but It dosent do anything, so I changed it to:
_root.createEmptyMovieClip('holder_mc', 1);
holder_mc.loadMovie(_root.urlbox);
holder_mc._x=100;
holder_mc._y=300;
but now I get an error message:
Error opening URL "file:///C|/Users/Andrew/AppData/Local/Temp/undefined"
BTW, The files im trying to use will all be .gifs, but I suppose that dosent really matter, does it?