I have a flash site where on entry a small and centred window opens. that’s ok. but i’d like to launch a FULL SCREEN window behind the smaller popup window.
This is the code so far which is on the flash button embedded in a html page (more code on frame one) that opens the centred pop up. I’m opening a background screen that is white. But my question is, how can I make this full screen AND chromeless? any suggestions?
Also can i control the html background screen from within Flash? the whole movie is in the smaller popup window, I’d like to change the background color occasionally, from Flash.
thanks
mariam
on (release) {
getURL(“white.html”, “_parent”);
address = “introd1.html”;
target_winName = “introduction”;
width = 700;
height = 600;
toolbar = 0;
location = 0;
directories = 0;
status = 0;
menubar = 0;
scrollbars = 0;
resizable = 0;
openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);
}