# Html popup "without" a button

**URL:** https://forum.kirupa.com/t/html-popup-without-a-button/267806
**Category:** Uncategorized
**Created:** [August 5, 2008, 11:07pm UTC](https://forum.kirupa.com/t/html-popup-without-a-button/267806 "2008-08-05T23:07:13Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![kirupafalcon](https://avatars.discourse-cdn.com/v4/letter/k/c4cdca/32.png) [@kirupafalcon](https://forum.kirupa.com/u/kirupafalcon)
#### Post date: [August 5, 2008, 11:07pm UTC](https://forum.kirupa.com/t/html-popup-without-a-button/267806/1 "2008-08-05T23:07:13Z")

</div>

I am trying to get a html popup window to open when my movie hits a certain frame instead of a button.

Im using the following code but it uses a button instead of a frame to open the popup.

```
on (release) {

//customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = "http://www.kirupa.com/modular/pop-up.htm";
target_winName = "kirupa";
width = 400;
height = 300;
toolbar = 0;
location = 0;
directories = 0;
status = 0;
menubar = 0;
scrollbars = 1;
resizable = 0;
//sends data back to the function
openWinCentre(address, target_winName, width, height, toolbar, location, directories, status, menubar, scrollbars, resizable);

}

```

Any help would be great.
