![]() |
|
|
|||||||
![]() |
|
|
Thread Tools | Rate Thread |
|
|
PM User | #1 |
|
New Coder ![]() Join Date: Mar 2004
Posts: 49
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
auto-launch centered popup
i hate auto launching anything. i hate popups. my client wants both. ugh.
i know how to launch a centered popup with the click of a button, but i don't know how to launch a centered popup once a movie gets to a certain frame on a timeline... probably really easy, but i need help with this one... thanks... |
|
|
|
|
|
PM User | #3 |
|
New Coder ![]() Join Date: Mar 2004
Posts: 49
Thanks: 0
Thanked 0 Times in 0 Posts
![]() |
i actually got it working... i used the following solution:
placed this (which i got from a pop-up generator) in the HEAD of my page: Code:
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=0,width=400,height=300,left = 440,top = 362');");
}
Code:
getURL("javascript:popUp('popuppage.html')");
|
|
|
|
![]() |
| Bookmarks |
| Thread Tools | |
| Rate This Thread | |
|
|