Hello,
I have a button in flash that loads an html page wich contains a quicktime movie. This is the buttons code (it’s a component):
on (release) {
getURL(“javascript:window.open(’” add url add “’,’” add winName add “’,'width=” add winW add “,height=” add winH add “,top=’+((screen.height/2)-(” add winH/2 add “))+’,left=’+((screen.width/2)-(” add winW/2 add “)+9)+’,toolbar=” add tools add “,scrollbars=” add scroll add “,resizable=” add resize add “,menubar=” add menu add “,status=” add status add “,directories=” add directory add “,location=” add location add “’); void(0);”);
}
all this works perfectly.
My problem is that when the popup opens, while the quicktime is loading, the background of the window appears transparent, which is not very attractive as you can see the rest of the site through it with a big quicktime logo in the middle.
I was thinking that a preloader would solve this problem. My question is, where to put it? And how to go about it.
Is there any answer?
Any help would be very much appreciated.
georgia