Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    Flash




Centered Pop-up



I have the following flash action, to center (vertically and horizontally) a pop-up window... I've been trying to find an answer, to how I would do the same thing in html, as I've changed the homepage that is home to a pop-up flash site from an swf to html... currently, the pop-up I have at the site works, but it doesn't center it, and I don't know enough html to know where to start... the site is... www.onenovember.com if that helps...

on (release) {
getURL ("javascript:NewWindow=window.open('http://www.onenovember.com/convergence.html','newWin','width=700,height=700,l eft=0,top=0,toolbar=No,location=No,scrollbars=No,s tatus=No,resizable=No,fullscreen=No'); NewWindow.focus(); screen_height = window.screen.availHeight; screen_width = window.screen.availWidth; left_point = parseInt(screen_width/2)-(700/2); top_point = parseInt(screen_height/2)-(700/2); setTimeout('NewWindow.moveTo(left_point,top_point) ',100); void(0);");
}



FlashKit > Flash Help > Flash General Help
Posted on: 01-15-2004, 08:21 PM


View Complete Forum Thread with Replies

See Related Forum Messages: Follow the Links Below to View Complete Thread

Centered Xml Images / Centered OnResize
I am loading xml images, while also trying to center them onResize.

In this tutorial: http://www.kirupa.com/developer/mx20...otogallery.htm the images are all the same size, are being loaded into a static movieclip, and are aligned to the Top Left corner.

What I am trying to do is load different size images into a movie clip which stays centered on resize (i'm making a fullscreen flash site), while also loading each individual image centered within that clip (instead of the default top left).

Here is the code I am using for postioning the MC onResize:


Code:
mainInit();
function mainInit() {
// Set alignment and scale to allow onResize to work.
//Stage.align = "LT";
//Stage.scaleMode = "noScale";
// Create the title clip.
this.attachMovie("picture", "picture", 10);
// Keeps the title clip in place when the movie is resized.
picture.onResize = function() {
this._y = Stage.height-(picture._height/2);
this._x = Stage.width-(picture._width/2);
};
// Register titleClip to be notified when movie is resized.
Stage.addListener(picture);
// Set initial position of title clip.
this.picture.onResize();
}
I tested the following code (given to me by 'The Canadian' - thanks!) - within the xml onload function using that tutorial and it would not work with the first image, and seemed to only work properly 90% of the time:



Code:
picture._x = (Stage.width / 2) - (picture._width / 2);
picture._y = (Stage.height / 2) - (picture._height / 2);
...So, my question is does anyone know how to load center aligned variable size images, while also calling the movieclip to center onResize. I have tried everything I can think of and cannot get it working properly...

Centered Box BOx BOX
I want to create an html page with a box smack dab in the middle of the page. This box will contain flash and static elements? how would i do this? css maybe?

Swf Centered ?
Hi. Im working on flash 5 and i want to know how can I put center (middle) on html my movie SWF.

the next website is an example that i want,
http://www.hercules.com if we make maximun the window the SWF always in middle center. please help-

thanks

Why Is It Not Centered ?
Please help me...

I am trying to center a movie horizontally and vertically on my HTML site. In the Publish Settings I have the Flash Align set to Center, Center. Still, the Flash is always on the left side of the web page...

What do I do wrong ?!

Pop Up Not Centered
My pop up is off center. Below is the script I am using
Here is the link- Hit any movie in the movie section - thanks

www.imediastudios.com


on (release) {
getURL("javascriptpenWindow('"+name+"56.html','p opup',240,125);");
}

And on the html I have

<script type="text/javascript">
<!--
function openWindow(url,name,w,h) {
xPos = (screen.width - w) / 2;
yPos = (screen.height - h) / 2;
config = 'left=' + xPos + ',screenX=' + xPos + ',top=' + yPos + ',screenY=' + yPos + ',width=' + w + ',height=' + h;
newWindow = window.open(url, name, config);
}
//-->
</script>

Centered Pop Up
In using the tutorial for the 'centered pop-up' found on this site, I have encountered a repeating problem. It goes like this:

MainPage > button loads movie that contains more buttons.

The new buttons then utilizes the 'centered pop-up' to load the individual windows of the site.

On the first time through the site, the button for the pop up will be pushed & the main page will go blank and give a syntax error, never popping up the pop up.

Refresh page & second time through this will not happen, everything loads as it should - no errors.

What is this & where is it coming from?

Centered Pop Up
ok so i got this all working fine as long as i publish it in "html" but why wont it work as just a ".swf" movie.
i will pop up the window but it never gets the file i want it to load.....
why is that?

Centered? I Think Not
for some reason my flash movie won't center in this pop up window..

http://www.geocities.com/lostinbeta/

any ideas?

LoadMovie Not Centered
Hello. I have trouble loading a movie clip properly.
Some how it does not center the newly loaded movie.
I set up the loading movie size to be the same as the transparent sestination movie clip where the loaded movie will go to.
Some how the loaded movie shows in the center as desired very quickly, but then it moves to the lower right corner of the main movie. I have to put the "dropzone01" to left top to manually adjust the loaded movie to be centered.

I am just wondering why it happened, and would like to know if there is any solution. I have about 18 more movie to load, so I don't want to manually adjust everything.

Here is the script to load movie I used:

on (release) {
gotoAndStop ("pic1");
loadMovie("thumb01.swf", _root.dropzone01);
}


Thank you,

Tsug

Need Java Centered Pop-Up
Hey Guys,

I have a URL I'm working on at: http://www.vmvisions.com/steelhorsesmc/background.swf.

In the galleries section I want to enable a pop-up html window that can be closed by the user, from the window.

What's the javascript code for that?

Thanks,
Marc

Centered Urgent
If I want to load another MovieClip how can I set the X & Y location
Please Help
thanks in advance

Fullscreen Centered
hi im having problems getting my .swf movie to open fullscreen in an htmlbrowser. with no borders or scrolling or tool bars... i basically would like it to look like what it does if you user allowscale and fullscreen fscommands in and exe file.

also when you drag any of the movie clips they dissapears oce you get beyond the borders of the movie which originally 400 x 800... is there anyway to extend the bounderies of the .swf movie to the end of the ullscreen browser..

http://www.geocities.com/mezz21us/main.html

take a look and thank you in advance

Popup,centered
Hi people,

Someone can give me the wright code to make a chromeless window that's centered?

I've been searching these boards and there are so many quest,answers.But I can't seem to get my hand on the wright,working script.

Btw I'm on mac.

Really appreciate this.Thx

Centered Loadbar?
hi, i'm working on a flash header and i followed a tutorial to make a loading bar that shows the percentage loaded. you can see it here:
http://eclipsegfx.com/templatefreak/...-Template.html
does anyone know how i can make it so that the bar starts on the right and grows toward the left instead of starting in the center and growing both ways?

thanks

Keeping It Centered....
I'm working with a table and I want it to always stay at the center of the html page. How can i do that?

If I'm changeing the size of the window the table should still remain in the center.

Centered POP UP WINDOW
I'm getting an "object expected" error when trying to load a centered pop-up window from a Flash exe on my local drive. Below is the code that I'm using on my button in Flash:

on (release) {
getURL("javascript:NewWindow('artwork/HTMLpage.htm','Name','600','400','yes');");
}


And here is the function that I'm using on the HTML page:

<script language="javascript">
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left ='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
</script>


I want this exe to run from an autorun CD and have the windows pop up in the center of the screen. What am I doing wrong?

Centered Pop Up Window. Anyone?
I'm having trouble creating a center pop up window for my flash website.
I've designed an intro page in fireworks and imported the fireworks html into dreamweaver.
One slice says, ENTER FLASH site. (the text and images were done in pShop and the slice made in fireworks.)
I'm wanting to click on that slice and have it open my flash page in a centered window 715x430.

I know that I can use the linkage in either fireworks or dreamweaver to open the flash site but this will not tell it the size or location.

I've tried javascript which is working, but it shoves a very generic html text right in the middle of my import fireworks page. It there a way for me to put the html button javascript directly on my fireworks slice (ENTER FLASH).

The javascript i've used:
To center the window on the page:
in the html page containing the main movie, in the head tag, add

<script type="text/javascript">

<!--

function openWindow(url,name,w,h) {

xPos = (screen.width - w) / 2;

yPos = (screen.height - h) / 2;

config = 'left=' + xPos + ',screenX=' + xPos + ',top=' + yPos + ',screenY=' + yPos + ',width=' + w + ',height=' + h;

newWindow = window.open(url, name, config);

}

//-->

</script>

Then in a html button:

<a href="javascriptpenWindow('filename.html','newWi n',400,300);">Click here for pop-up</a>

/////// the 400,300 numbers are the size of the table in the popup window.




Thanks for any help!

Centered Pop Up Window. Anyone?
I've just finished building the flash part of my site and now I'm having trouble getting it on the Web the way i need it.

What I'm wanting to do is design one of those static html pages where you have the choice between "enter flash" or "enter html".

I've designed my flash site to open in a 715x430 center window.

So I need to find out how to get my "enter flash" button to open a centered pop-up window containing my flash project.

I guess I'll be doing this all in dreamweaver but any help from you flash experts would be great.

Centered Window
Ok here's my problem.

How do I get my flash movie to open from a basic html intro page to a centered window that is 715x430 and has no margins or scollbars.

The only answers I can get is a script that tells me how to get one of those standard javascript buttons, and then when I click my movie will open in a centered window but the margins are still there pushing my movie down to the left.

What I really need is to put the correct script into an image slice that is in a fireworks doc.

So how do I select a image slice and place javascript code into it.

Thanks for any help, my head is spilting from all the searching.

Movie Is Not Centered
Hi im using mx2004
My movie is 800x500, when i look at it on my server its to high up, I would like to bring it to the midle withought having to change my setings, I have pixel font fonts so I cant put the movie to 100%
it get distorted thanks.

Centered Viewpoint
Hey, I'm currently working on a top-down action game and I was wondering if anyone knows how to do a view-point type thing so that the character is always in the center of the map. An example of what I want would be like the game at www.runescape.com. Their game has an adjustable camera which I don't need, but as you can see, no matter where you click, the person is always in the center, anyway to do that in flash?

Centered POPUP
On my site I have this code (that I got from Pelle Piano) on the 'Enter' button to open up the popup that contains the main site content:


Code:
on(release){
getUrl("javascript:window.open('http://www.eyeborg.co.uk/PhilThompson-Moonface.html','newwindow','width=640,height=480,top=0,left=0'); void(0);")
}
It works great but the popup isn't centered on the screen. Is there anything I can add to this code to change that? I have tried completely different scripts but then I realized a lot of people couldn't see the site anymore... so just a simple amendment to the code above would be much appreiated...

Grete

Can't Get .swf Centered On Page?
I recently switched from PC to Mac, and from MX to MX 2004, and noticed this little problem...I don't know which one is the cause but here goes:

I'm using Flash & Dreamweaver MX2004 and have designed a few pages. Each one is supposed to have the content (whether it's a .jpg or .swf or whatever) in the center of the page, but valign doesn't seem to work?? It's either cause I'm designing on a Mac, or cause there's something screwy in dmwvr mx2004, or I'm missing something, but I've never had this trouble in all my years designing.

Here's the real kicker...valign works fine and my pages look great when I browse on my own computers (Macs using Safari or IE for Mac). But when I check the pages on PCs using Internet Explorer, the valign doesn't work and everything is justified to the top of the page!!?

Can someone please tell me (1) if they have any idea why my valign="center" attribute doesnt work on PC, or (2) take a look at the source for these two pages below (they're two I just made recently and noticed aren't centered on PC - they're stuck at the top of the page!) and tell me what the hell is up? It's driving me nuts!!

www.bhairecords.com
www.pgentertainment.com

Thanks!
Clint

Pan Problems - Can't Get MC Centered
Hello there

I am trying to make the movement of a movieclip pan the sound.
I am using this code:

mand1.mand1Drag.onPress = function() {
mand1.startDrag(false, -400, -50, 400, 50);
mand1.onEnterFrame = function() {
pan = 2*this._x;
firstSound.setPan(pan);
};
};

However, this requires my MC to measure its position from the center of my stage. But when I try to change my MC's "symbol position" in the "info box" Flash still sets its zero position from the stage's left side.

How can I change this? Or can I do it in a different way if it can't be changed?

/Donleavy

SWF Not Centered In Firefox.
Hello all, for some reason all of my swf's do not want to center in Firefox. IE is fine, I am using frontpage2003 for my editor. Here is a snip of the code as it appears. thanks for any help!

<p align="center"><embed width="457" height="210" src="final-2.swf"></p>

Centered Swf With Backgroung Img
a few months ago i asked a question here which was"how do u center a flash swf on a html page?" . got great answers and it works very well; but, if i want to put a background image , most of the page is covered by the background color.
on the html publish settings , i got size=100% and no scale.
if i change the size to pixels , i can see my background image , but then the swf isnt centered.
help

Centered Pop-up Does'nt Work?
I've just fixed my site up in Flash, and it works great!
But my centered pop-up does'nt open in IE and looks even worse FireFox.
I've checked and double checked everything, and I CAN"T find the bloody fault anywhere!!!
Can somebody help me out here?!?
THX!

www.wdotp.com
http://users.pandora.be/willem.photography/index.fla

Why Is It In The HTML Not Centered ?
Please help me...

I am trying to center a movie horizontally and vertically on my HTML site. In the Publish Settings I have the Flash Align set to Center, Center. Still, the FlashMovie is always on the left side of the HTML web page...

What do I do wrong ?!

Thanks for your help!

Centered Preloader?
I have a 870 X 765 flash movie and I have a preloader that I have centered on the stage directly in the middle. Okay that's fine. Then I publish my flash movie with it's alignment to the left in html. Now when I view my movie in it's html document the flash movie is aligned to the left correctly but the preloader is also. I want my preloader to always be in the direct middle of the document and the main flash movie aligned to the left. Any help on this one?

Help About Images Centered
I guys,

Simple problem:
I have this: loadMovie("images/image_01.jpg", "dropzone_mc");
The images are differents sizes. So I need a script which let the images to be centered automatically with the movieclip.
Somebody can help me?

Thanks

Help With Centered Pop-up Window
I have this movieclip within another movieclip in one of the scenes in my movie, wich has a button inside (the one I want to asign the pop-up action

I've tried making a new movie and go step by step with the tutorial, and that way it works... so I assume that the code works only with buttons on the main timeline.

What I want know is if there's any way I can modify a certain part of the code for the button to work properly... anyway, if this post is not clear enough please let me know and I'll supply whatever information is missing.
Thanks in advance

Cant Get SWF Centered In HTML
Its weird,
The movie is on the left side of the screen. I cant get it centered, I tried the different HTML tags but with no luck. any ideas?

heres my html source







Code:
html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>main</title>
</head>
<body bgcolor="#273343">
<script language="JavaScript">
function openNewWindow(URLtoOpen, windowName, windowFeatures) {
newWindow=window.open(URLtoOpen, windowName, windowFeatures); }
</script>


<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="766" height="700" id="main" align="middle">
<param name="allowScriptAccess" value="sameDomain" />
<param name="movie" value="main.swf" /><param name="quality" value="high" /><param name="bgcolor" value="#273343" /><embed src="main.swf" quality="high" bgcolor="#273343" width="766" height="700" name="main" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />
</object>
</body>
</html>

Not Centered In Safari
Please Help!!
I have a web page with a flash button which launches a popup html window This page contains another swf file. All is good on every browser pc/mac except safari. The popup page is sized to fit the swf dimensions exactly. In safari, the page is not centered. it is off to the right. Here is the javascript I used on the flash button to pop up the window.

on (release) {
getURL ("javascript:NewWindow=window.open('http://www.file location.html','newWin','width=770,height=570,left =0,top=0,toolbar=No,location=No,scrollbars=No,stat us=No,resizable=No,fullscreen=No'); NewWindow.focus(); void(0);");
}

Here is the code in the popup html window
<BODY bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="770" height="570">
<param name="movie" value="flash/waterman_samples_3.swf">
<param name="quality" value="high">
<embed src="flash/waterman_samples_3.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="800" height="570"></embed></object>
</body>
Any suggestions?
Thanks a bunch!

Centered Popups.
Hi people,

does anybody know how i would get popup windows from flash to be centered all the time on your screen. I know that from a javascript function call you can put top=200, left=150 etc but i'd like for all popups to be centered. Anybody know how?

Thanks.

SWF Centered In Browserwindow
hi,

i have a problem.
how can i center my swf movie (non-scale 100%)
in any browserwindow?
in a table, so that the swf is always centered even if the user resizes his browserwindow?!

i have a code attached index.txt
can somebody tell me how to modifie this file?

...in internet explorer there is a frame/box around the swf...
(and it says something like: click here to activate...)
how can i disable that??

thanks!


-------------------------------------------------------------------------

// -->
</script>
</head>
<body bgcolor="#2d2d2d">
<!--url's used in the movie-->
<a href="http://www.fraas.com/index2.htm"></a>
<!--text used in the movie-->
<script language="JavaScript" type="text/javascript">
<!--
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) { // if we've detected an acceptable version
var oeTags = '<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000"'
+ 'width="901" height="580"'
+ 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
+ '<param name="movie" value="fraas_stage.swf" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="scale" value="noscale" /><param name="bgcolor" value="#2d2d2d" />'
+ '<embed src="fraas_stage.swf" menu="false" quality="high" scale="noscale" bgcolor="#2d2d2d" '
+ 'width="901" height="580" name="fraas_stage" align="middle"'
+ 'play="true"'
+ 'loop="false"'
+ 'quality="high"'
+ 'allowScriptAccess="sameDomain"'
+ 'type="application/x-shockwave-flash"'
+ 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
+ '</embed>'
+ '</object>';
document.write(oeTags); // embed the flash movie
} else { // flash is too old or we can't detect the plugin
var alternateContent = 'Alternate HTML content should be placed here.'
+ 'This content requires the Macromedia Flash Player.'
+ '<a href=http://www.macromedia.com/go/getflash/>Get Flash</a>';
document.write(alternateContent); // insert non-flash content
}
// -->
</script>
<noscript>
// Provide alternate content for browsers that do not support scripting
// or for those that have scripting disabled.
Alternate HTML content should be placed here. This content requires the Macromedia Flash Player.
<a href="http://www.macromedia.com/go/getflash/">Get Flash</a>
</noscript>
</body>
</html>

Centered And Expandable
anyone know how you build a page that uses a big background image and then centers the content on the page. ive seen it lots of places, here is an example:

http://www.beboard.net/swf/beboard.php

Keeping MC Centered
i have figured out how to get a background image in my flash movie to scale and cover the whole browser window, now i need to figure out how to keep the main content and navigation to stay centered and at a consistent scale like here:

http://www.animallogic.com

see how the nav stays the same size and in the middle ? any tips on this would be helpful. thanks.

Centered Pop Up - Flash 8
been searching for quite a while and have been going in circles due to old links and codes with errors. can someone please help assist in launching a centered pop up window from flash (button or mc). only necessary attributes to specify would be size and no scroll bars. thank you.

Background, Centered
Hello!
I think this is super simple to do, so I have heard, but I need help on how I can center my flashwebpage and how can my background color cover the whole window.

I believe you are able to do that on DreamWeaver. Can someone help me please??

Txt Field Centered In MC
I am trying to have input txt field added to a drawn square, but centered. So this is the senario. The user draws a square and a input text field is added (centered) to the square. I have it adding the input txt field but it puts it on the stage and not in the drawn square. This is the code as I have it now.


ActionScript Code:
// Create our new square and add some listeners to it to enabled dragging
        var mc:MovieClip = new MovieClip();
        mc.buttonMode = true;
        mc.addEventListener(MouseEvent.MOUSE_DOWN, startDraging);
        mc.addEventListener(MouseEvent.MOUSE_UP, stopDraging);
        addChild( mc );
        var txt:TextField = new TextField();
        txt.type = "input";
        txt.text = "Enter Room Name";
        addChild(txt);

and for the square itself...


ActionScript Code:
function square(e:Event):void
{
    mcRef.graphics.clear();
    mcRef.graphics.lineStyle(1, chosenColour2, 1.0);
    mcRef.graphics.beginFill(chosenColour, 1.0);
    mcRef.graphics.drawRect(mouseIniX, mouseIniY, mouseX - mouseIniX, mouseY - mouseIniY);
    mcRef.graphics.endFill();
}

Keeping A MC Centered..?
I'm making a car-driving game but I can't get the map to scroll the way I want it to.

This is my problem:
I'm looking for a script to center the car MC,
so that if it turns left 90 degrees you go to the left (the map doesn't rotate, but the car do, making the map scroll depending on where the car is)...
Hope you understand.

I have tried anything I can come up with, but I'm not good at actionscript.

Almost Centered All My Loaded Jpg's Except The First One?
So I have search the forum and I am able to center loaded jpg's by

having an empty mc called photo and


ActionScript Code:
function alignImage(){
     sW= 500;
     sH = 400;
     photo._x = (sW- photo._width) / 2;
     photo._y = (sH- photo._height) / 2;
}

but this doesn't apply to the first loaded jpg. I read about being sure the .jpg has been loaded

So I add this

ActionScript Code:
photo.onEnterFrame = function()
{
    if(photo._width >0)
    {
         sW= 500;
     sH = 400;
        mcWidth = photo._width;
       mcHeight = photo._height;
       photo._x = (sW - mcWidth) / 2;
       photo._y = (sH- mcHeight) / 2;
       delete this.onEnterFrame;
    }
}
But this doesn't work what am I doing wrong??

How Do You Keep Controls Centered?
Hey all,

Does anyone know how to keep playback contols centered in relatation to the screen. i.e. I have a massive swf where the user can move the image around, and I need the controls to stay in the same place say the bottom right...

I have been pulling my hair out over this for days!

Website Always Centered
I am trying to make a flash website, very simple website, I don't know coding or anything but I know enough to make a flash website. One thing I really NEED that I can't seem to figure out how to do is Make my flash website Always stay centered no matter how big or small the user makes their browser window. And if they change the browser window sie then the site adjusts and centers itself.

Can Anyone help me out? It seems like a fairly simple thing to do, I just can't seem to figure it out? Do I HAVE to use code or can I click a setting somewhere? I never used code.

Thanks for your help.

Centered Pop-up Tutorial
hi | i'm having some difficulties with the tutorial for launching a centered pop-up window. i'm copying the code exactly as it appears in the tutorial but when i go to test it and click on the button it launches my browser but then i get a runtime error and nothing appears in the browser window. in fact, the browser isn't even appearing with the dimensions i set in the code.

i then downloaded the final source code from kirupa and i'm having the same problem there. i'm lost as to what could be going on. could anyone help, please? i've attached my .fla.

thank you | matt.

Centered Pop-up, Works On Mac, Not PC ?
Hello,

I have been trying everything to figure this out. This site :

http://www.4thfloorny.com/

This works on all macs, however on the PC's in my office, running Office 2000, I get a "This Page Can Not Be Displayed" error. Any ideas?? I just tried rebuilding the opening page with the openWinCentre tutorial from the site, still same error. Please, Please help....Oh, if it makes a difference the site is hosted within another site.

Centered Pop Up Window
I am designing a basic intro menu in dreamweaver, (one of those basic enter flash page or enter html page).

I want to know how I would get a flash file to lauch in a 715x430 centered pop up window from a html intro page

I have read the tutorial in the tutorials section about centered pop up windows but it seems to mention only preforming this action from a flash file itself.

Should I just create this button in flash and import it into a dreamweaver file.

Thanks for any help. A bit new at this.

Centered Pop Up Prob
I have been trying to use the centered pop tutorial but I can't get it to work, all I'm doing is copying the code but I keep getting a syntax error message

Can anyone help????

Centered Pop Up Window
I currently use Flash MX 2004. I used the tuturial for centered pop up window for Flash MX. When I previewed my work in Dreamweaver, the pop up window link works. When I uploaded the swf file and viewed it in http...(blah blah blah) the pop up link does not work. What did I do wrong? I followed the directions. Is it because I'm working on Flash MX 2004 and the tutorial is only for Flash MX? Is there a new tutorial for Centered pop up window for Flash MX 2004? Please help.

Thanks,
AilinaLei

Copyright © 2005-08 www.BigResource.com, All rights reserved