Ok, so I made a small portfolio site using 5 frames. Frame 1 is home, frames 2-5 are different portfolio sections and frame 5 is an about page (liquifieddesign.com/preview.html)
The site has been working great everywhere except microsoft internet explorer, where the jpegs I am importing do not load at all. I have tried writing the code about 5 different ways and still nothing. Here is a sample of the latest code I am using on one of the portfolio frames.
print_btns.print1.onRelease = function() {
//load_text._alpha = 100;
loadMovie("images/print_philroy.jpg", "content_mc");
_root.ink_mc._alpha = 0;
//_root.print_btns.gotoAndStop("a");
_root.print_btns.print1.blendMode = "multiply";
_root.print_btns.print2.blendMode = "normal";
_root.print_btns.print3.blendMode = "normal";
_root.print_btns.print4.blendMode = "normal";
_root.print_btns.print5.blendMode = "normal";
_root.print_btns.print6.blendMode = "normal";
_root.print_btns.print7.blendMode = "normal";
_root.print_btns.print8.blendMode = "normal";
_root.print_btns.print9.blendMode = "normal";
_root.text.gotoAndStop("print_txt1");
_root.gotoAndStop("print");
}
Thhen below that is code forprint_btns.print2, 3, 4 etc…
content_mc is my empty movie clip (Ive tried writing it withouth teh quotes as well) The rest of the as works fine, only problem is the images wont load in internet explorer. Any ideas? Any alternate ways to pull this off?
thanks in advance