Auto load & Auto Close chromeless pop up.
2 seguidores
Ok guys. First I want to apologize for not knowing spanish. I've been trying to read everything on this site with a translator but it's very time consuming cause there is so much info here.
My problem:
I want to create a chromeless window that auto opens after a set period of time after a page is loaded and auto closes after a set period of time.
I know how to make a regular pop up window auto open and close but not a chromeless one.
I kow how to make a chromeless window open from a flash button but I can't figure out how to tie the two together.
If anyone can help I would be very grateful. Gracias!
klein
What chromeless version are you using? Methods are different on each version
jamesfw
I believe I'm using the byklien script. I'm not fluent at programming which is why I'm probably having this problem.
Thanks for any help you can give.
jamesfw
Ok.. I'm launching a popup window from a flash button embedded on an HTML page.
The actionscipt of the flash button is as follows:
<code>
onClipEvent (load){
//customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = "domino.swf";
target_winName = "domino";
width = 300;
height = 300;
toolbar = 0;
location = 0;
directories = 0;
status = 0;
menubar = 0;
scrollbars = 0;
resizable = 0;
//sends data back to the function
openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);
}
</code>
This is forcing a pop up to appear. I want the popup to be Chromeless.
BUT I don't want to embed code on the launching HTML page.
Is there a way to make the window Chromeless by placing code either:
a) in the actionscript of the Flash button
b) in the popup windows HTML code
I've been racking my brains for 2 weeks on this... I'm very grateful for any help.
Oh.. and I'm using byklien code... but will use anything that works...