Thanks Jorge,
Well, I wasn't able to get the jpeg to load, but I was able to get a SWF to load. I want to fade it in using action script from the main movie so I added the code below, it shows up with the initial alpha value of +5 but stops there. Also I want a button (jennyB_btn) within "artistsPick_mc" to create another empty movie clip and open a swf into it called "jennyBpage" when clicked so I added the code below but to no avail-I think it may be a path issue. Any help is appreciated.
//setup function for meet the artists button
meetArt_btn.onRelease = function() {
// make about text dissapear
aboutText_txt._alpha = 0;
// Create movie clip for image
createEmptyMovieClip("artistsPick_mc", 1);
//Position the movie clip on the stage
artistsPick_mc._x = 160;
artistsPick_mc._y = 270;
//load artists movie into the clip
artistsPick_mc.loadMovie("artists.swf", 1);
//fade in artists pick swf
artistsPick_mc._alpha = 0;
artistsPick_mc._alpha += 5
};
//jennyB_btn opens movie
jennyB_btn.onRelease = function() {
createEmptyMovieClip("jennyBpage_mc", 1);
jennyBpage_mc.loadMovie("jennyBae.swf", 1);
};