Size matters

What up everyone
problems ,
I want my first page to fill the screen, no browser buttons. can this be done in flash?
On my first page i have an enter button when the enter button is clicked I want a centered pop up window set at 950x450( I want the pop up window to be my main page ) right now i have this action on the enter button
on (release) {
//customize the window that gets opened
// 0 equals NO.
// 1 equals YES.
address = “http://www.olddirtydermot.com/homepage.html”;
target_winName = “olddirtydermot”;
width = 950;
height = 450;
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);
}
NO good
thanks for your time and help

You’re not supposed to edit target_winName = “olddirtydermot”;…change it back to target_winName = “name”;…and leave it like that. It should stay at ‘name’…:thumb:

thanks for your help sharif
but still no good

Does it do anything?

Sweet
I followed the centered pop up tutorial and everything works great. the only problem is the pop up window is blank ,
The address is "http://www.olddirtydermot.com/homepage/pop-up.htm"
Isn’t the address supposed to be the name of the flash file for it to work. since I’m not on the web
EX.homepagemain.fla
Do I change it to "http://www.homepagemain.fla " or homepagemain.html
nothing is working so any help would be great
thanks for your time again guys

the url in that code should be the url you want to go to.

so if your sites url is http://www.olddirtydermot.com/homepage/pop-up.htm then that should be what you pur in the url

if you want it to be a pop-up window, you should put
[color=red]“http://www.olddirtydermot.com/homepage/pop-up.htm”, “_blank”[/color]

If you’re not on the web

File >> Publish preview >> HTML

to preview in browser

scotty(-: