Flash Movie Doesn't Load In Dreamweaver
I'm trying to center my flash movie withing a 3 row table in an HTML file that has the "Flash Detection" javascript embedded within it. I'm really not sure if I've put the table formatting HTML in the correct place or not. When I test the movie everything is fine but it doesn't load online. I'll attach the code to this post. The website is www.elkhornpeakcellars.com if you'd like to see what this code currently produces. ThanksAttach Code<!-- saved from url=(0013)about:internet --><html lang="en"><head><meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /><title>ep_master</title><script language="JavaScript" type="text/javascript"><!--// -----------------------------------------------------------------------------// Globals// Major version of Flash requiredvar requiredMajorVersion = 7;// Minor version of Flash requiredvar requiredMinorVersion = 0;// Revision of Flash requiredvar requiredRevision = 0;// the version of javascript supportedvar jsVersion = 1.0;// -----------------------------------------------------------------------------// --></script><script language="VBScript" type="text/vbscript"><!-- // Visual basic helper required to detect Flash Player ActiveX control version informationFunction VBGetSwfVer(i) on error resume next Dim swControl, swVersion swVersion = 0 set swControl = CreateObject("ShockwaveFlash.ShockwaveFlash." + CStr(i)) if (IsObject(swControl)) then swVersion = swControl.GetVariable("$version") end if VBGetSwfVer = swVersionEnd Function// --></script><script language="JavaScript1.1" type="text/javascript"><!-- // Detect Client Browser typevar isIE = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;jsVersion = 1.1;// JavaScript helper required to detect Flash Player PlugIn version informationfunction JSGetSwfVer(i){// NS/Opera version >= 3 check for Flash plugin in plugin arrayif (navigator.plugins != null && navigator.plugins.length > 0) {if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : ""; var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;descArray = flashDescription.split(" ");tempArrayMajor = descArray[2].split(".");versionMajor = tempArrayMajor[0];versionMinor = tempArrayMajor[1];if ( descArray[3] != "" ) {tempArrayMinor = descArray[3].split("r");} else {tempArrayMinor = descArray[4].split("r");} versionRevision = tempArrayMinor[1] > 0 ? tempArrayMinor[1] : 0; flashVer = versionMajor + "." + versionMinor + "." + versionRevision; } else {flashVer = -1;}}// MSN/WebTV 2.6 supports Flash 4else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;// WebTV 2.5 supports Flash 3else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;// older WebTV supports Flash 2else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;// Can't detect in all other caseselse {flashVer = -1;}return flashVer;} // If called with no parameters this function returns a floating point value // which should be the version of the Flash Player or 0.0 // ex: Flash Player 7r14 returns 7.14// If called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is availablefunction DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision) { reqVer = parseFloat(reqMajorVer + "." + reqRevision); // loop backwards through the versions until we find the newest versionfor (i=25;i>0;i--) {if (isIE && isWin && !isOpera) {versionStr = VBGetSwfVer(i);} else {versionStr = JSGetSwfVer(i);}if (versionStr == -1 ) { return false;} else if (versionStr != 0) {if(isIE && isWin && !isOpera) {tempArray = versionStr.split(" ");tempString = tempArray[1];versionArray = tempString .split(",");} else {versionArray = versionStr.split(".");}versionMajor = versionArray[0];versionMinor = versionArray[1];versionRevision = versionArray[2];versionString = versionMajor + "." + versionRevision; // 7.0r24 == 7.24versionNum = parseFloat(versionString); // is the major.revision >= requested major.revision AND the minor version >= requested minorif ( (versionMajor > reqMajorVer) && (versionNum >= reqVer) ) {return true;} else {return ((versionNum >= reqVer && versionMinor >= reqMinorVer) ? true : false );}}}return (reqVer ? false : 0.0);}// --></script></head><body bgcolor="#ffffff"><!--url's used in the movie--><!--text used in the movie--><!--loading assets--><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="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"' + 'width="600" height="400"' + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">' + '<param name="movie" value="ep_master.swf" /><param name="loop" value="false" /><param name="menu" value="false" /><param name="quality" value="high" /><param name="bgcolor" value="#ffffff" />' + '<embed src="ep_master.swf" loop="false" menu="false" quality="high" bgcolor="#ffffff" ' + 'width="600" height="400" name="ep_master" 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>
Adobe > Flash General Discussion
Posted on: 06/08/2007 07:51:29 PM
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
Help Me My Flash Movie Doesn't Work In Dreamweaver...
I'm going crazy!!!
I've created 3 buttons on the stage to load 3 different movies. These movies are seperate files(fla.)I've imported into my library.
The buttons have the following action:
on (release) {
loadMovieNum("Plantoys.swf", 4);
stop();
When I test the movie it works, but when I export it to Dreamweaver and put it on a page, it DOES'NT WORK!
Can somebody help me? You will recieve eternal fame!
Flash Flv Movie File Doesn't Play In Dreamweaver With Controls
Hi, my swf files plays great with the external Mojave play controls, but when I import the swf into dreamweaver and publish with the all file places and setting correct, the external controls don't show although the swf file is the size it should be with the controls.
Can anyone tell me what I need to do to get the controls to show?
Thanks
Stoo
Load Movie Flash And Dreamweaver
I had movies loading into Flash 8. But when I published the SWF and HTML they movie clips no longer load into the flash once it's embedded into the Dreamweaver file! Can anyone help me out?
Thanks
Edit:
It's the strangest thing. I also lose the drop shadows that are in the loaded swf files.
Only one of the buttons will load a movie once it is loaded into the main flash move. The rest of them don't. And like I said, the drop shadows are lost in the loaded movies.
This is frustrating!
Problems With Load Movie Clip In Dreamweaver
hello. i'm from spanish and my english is so bad. well, i'll try to explain me:
when i load a movie clip in flash, everyhting is ok, but when i import a swf in dreamweaver with this load movie it doesen´t see in the explorer.
I only see the principal flash but no the movie that i loaded with movie clip.
is that clear? i hope so.
thanks a lot
Problems With Load Movie Clip In Dreamweaver
hello. i'm from spanish and my english is so bad. well, i'll try to explain me:
when i load a movie clip in flash, everyhting is ok, but when i import a swf in dreamweaver with this load movie it doesen´t see in the explorer.
I only see the principal flash but no the movie that i loaded with movie clip.
is that clear? i hope so.
thanks a lot
Moviecliploader Doesn't Load The Movie
Hi,
I have only just started using flash today. I am a VB programmer at the moment.
I have Flash 8 pro and I am working through the examples in the book Flash Professional 8 by Shane Rebenschied and have encountered my first problem on the very first example in the book.
the following code didn't load and play the splash.swf (It's in the same drectory as the open swf file), I ran the code via the debugging facility and it didn't give me an error!
var myMCL:MovieClipLoader = new MovieClipLoader();
var myListener:Object = new Object();
myMCL.addListener(myListener);
myMCL.loadClip("splash.swf", 5);
Is there anything wrong with this code?
Player Doesn't Load Movie...
I've been having this problem for quite a while now and I just decided there's got to be a solution...
When I double-click on a .swf file, the player opens in a large window, but it doesn't load the selected movie. It doesn't load anything. I can drag and drop a swf file on the window and it will load fine, but it doesn't load the clicked movie by default. I can't find a setting anywhere to solve this and it's getting a bit annoying. I work with a few other flash developers and this works fine for them, so I'm stumped.
Any idea how to solve this?
Thanks!
Eddie
Movie Load Doesn't Work
I have developed a lesson where the root movie is like a tv set where all the controls for volume and changing channels (ie topics) are contained. When the user clicks on a topic button, the root movie loads the topic into a child movie holder and displays it "on the screen".
I developed this on my laptop and everything works fine. I then transferred it to my pc, where I will upload it to my website. The problem is, on my pc, it won't load any of the topics! Here are some additional clues to the dilemma:
1. When I run it in test mode, it DOES load the topics..........it just won't do it when the swf is running separately.
2. The original script, which was for loading locally (ie no preloader needed) was replaced with the current script (again this script works fine on the laptop and also on the pc in test mode). Just for the heck of it, I remmed out the new script and unremmed the old and THAT WORKS TOO!
So there is something screwed up with the new code and as it works on one station and not the other, I'm thinking this is maybe a flash player version problem?? Both the PC and laptop are set to publish at flash player 7 and use AS 2.0. (actually all publish settings are the same).
Here's the script:
_root.preIT._visible = true;
var my_content:MovieClipLoader = new MovieClipLoader();
var myContentListener:Object = new Object();
myContentListener.onLoadProgress = function(target_mc:MovieClip, loadedBytes:Number, totalBytes:Number) {
_root.pbarPCT = String(Math.round((loadedBytes/totalBytes)*100))+" %";
_root.preIT.pbar0.pbar1._width = Math.round((loadedBytes/totalBytes)*574);
};
myContentListener.onLoadComplete = function(target_mc:MovieClip) {
_root.preIT._visible = false;
};
myContentListener.onLoadError = function(target_mc:MovieClip, errorCode:String) {
trace("*********First my_mcl instance*********");
trace("ERROR CODE = "+errorCode);
trace("Your load failed on movie clip = "+target_mc+"
");
};
my_content.addListener(myContentListener);
//trace(_root.loTitle+_root.topicFile);
my_content.loadClip(_root.loTitle+_root.topicFile, _root.content_mc);
//end preloader code
//loadMovie(_root.loTitle+"/"+_root.topicFile, _root.content_mc);
_root.splashScreen_mc._visible = false;
NOTE: The currently unremmed my_content.loadClip line is what doesn't work when the swf is run by itself. The currently remmed out loadMovie command however, works fine. I of course need to have the preloader when this thing is run on the web so that doesn't do me much good (that the latter one works).
Thanks for the help!
Edited: 01/13/2007 at 05:32:57 AM by IwannaFlashU
Me Angry, Movie Doesn't Load Well
Hi, please help
I am just working on my first flash site, about a month ago I did not know much, I still don't. The link www.pbdesign.pl/test/flash.html
I have a small problem, hope you will be able to help me. I have the preloader that occupies the first frame on the main timeline, the main animation is on the second. Now, when I try to load an swf into the content that is the big pic, I have this result which you can see by clicking the top square (01) - the new swf does not load into the content and the menu MC disapears. Please let me know, anybody, what am I doing wrong? The code for the button is
on (release) {
loadMovie("films/foto/foto.swf",this.content);
}
but the movie obviosuly does not load into content as you can see.
Me Angry, Movie Doesn't Load Well
Hi, please help
I am just working on my first flash site, about a month ago I did not know much, I still don't. The link www.pbdesign.pl/test/flash.html
I have a small problem, hope you will be able to help me. I have the preloader that occupies the first frame on the main timeline, the main animation is on the second. Now, when I try to load an swf into the content that is the big pic, I have this result which you can see by clicking the top square (01) - the new swf does not load into the content and the menu MC disapears. Please let me know, anybody, what am I doing wrong? The code for the button is
on (release) {
loadMovie("films/foto/foto.swf",this.content);
}
but the movie obviosuly does not load into content as you can see.
Flash/dreamweaver Load Problem
I am very new to flash and just began creating flash files. I have created dreamweaver files with flash files in them. When I save the files to be posted for my website, the flash files don't load. The rest of the site loads fine, even fireworks files. The page just sits there with a big white space where the flash should be playing, and it acts like its still loading but it never loads the file. I'm not too familiar with the programs, so maybe it is something basic. I would greatly appreciate it if anyone knew what was wrong.
Flash And Dreamweaver - External Swf's Do Not Load
Hi there,
I am hoping someone out there has an idea as to why this happens.
I made a page in dreamweaver, put my main .swf on it. that all works fine but then when I click the buttons on my main .swf the external .swf's are supposed to load in but they dont.
In flash they load in fine, they are all in the same folder.
Any ideas?
Thanks!
This is my code on all of the buttons on the main movie. Like I said in flash it works fine...
Quote:
on (release) {
loadmovie('thumb16mov.swf',_root.placeholder);
loadmovie('back.swf',_root.placeholderback);
}
Flash Video Won't Load In Dreamweaver.
I'm trying put some flash videos on my web site. I have built the site in Dreamweaver CS3 and I encoded the video with Flash CS3. I put the video into dreamweaver the way the help file describes. When I preview the page in the browser, I get a blank screen. I have called adobe and they don't know what the problem is. I hope someone here can help me.
Thanks in advance.
Making Sure A Button Doesn't Load The Same Movie Twice
I have a main swf that load in and plays to a stop. Then there are 5 buttons. Each one for a different page. The "pages" are actually external swf's that get loaded into level 1. Now when I load the movie, it plays and animated intro and stops. Then, on all the other buttons, I have:
on (release) {
tellTarget ("_level1") {
gotoAndPlay (11);
}
}
that tells the loaded swf(or page) to go to the 11th frame, which plays the outro animation and ont he last frame of that swf, it does an unload of level 1, which unloads itself. NOW. I DONT want to be able to click on the button over and over to load that swf again and again, cause it looks bad.
I know this is fairly easy, if you know ur way around action script, and I've asked this question b4 a long time ago, but I didn't know anything back then.
Actionscript Doesn't Work When Load Movie
I made an image scroller and it works fine. But then when I load the scoller in a movieclip in another flash file, it doesn't work, the buttons click but nothing happens. It works if I load it in the root level. but when I put the loadmovie actionscript within a movieclip the scroller does not work. Hope this makes sense.
Thanks
Why Does The External Swf Load And A Scene In The Same Movie Doesn't?
In my movie there 2 mc s.
clip A has to show frame label 'truus' in another scene of the main.swf
clip B has to show the extended foto.swf.
On clip A there is:
onClipEvent (mouseDown) {
_root.gotoAndStop("truus");
}
On clip B there is:
onClipEvent (mouseDown) {
_root.loadMovie("foto.swf");
}
Both onClipEvent load the foto.swf
What do I do?
Load Movie Doesn't Work In Netscape
We have a Flash movie that works fine in netscape but at the end of it we have a button with a Load Movie action on it so that when you click the button it loads a new movie. This works fine in IE but not not in Netscape.
Any ideas why not?
[Using Flash MX]
When I Load A Movie Clip Into A Target It Doesn't Appear In The Center
Hi I really need some help on why the movie clip I load into a target doesn't load in the center. Instead it loades on the bottom right corner!
here is the website http://www.hostultra.com/~dushhhhhh/ Click on the "Home" button. It is supposed to load in the box to the right but is out of place. I know the flash is not nice but my main concern is why it wont load in the center. You can download the .fla's I used which are only very small in the bottom part.
Thanks for your help.
When I Load A Movie Clip Into A Target It Doesn't Appear In The Center
Hi I really need some help on why the movie clip I load into a target doesn't load in the center. Instead it loades on the bottom right corner!
here is the website http://www.hostultra.com/~dushhhhhh/ Click on the "Home" button. It is supposed to load in the box to the right but is out of place. I know the flash is not nice but my main concern is why it wont load in the center. You can download the .fla's I used which are only very small in the bottom part.
Thanks for your help.
Help Preloader Doesn't Wait For Main Movie To Load
I am new at this and am having a time of preloading a main movie.
The preloader will run one time and then start the main movie. It doesn't allow the main movie to load before it starts to play it?
This is the script I used:
if _root.getBytesTotal()==_root.getBytesLoaded()
gotoAndPlay('Scene2',1)
else
gotoAndPlay(2)
The name of the main movie is "centraltruck" which would be Scene 2.
here is the url to the movie: http://www.trader-on-wheels.tv/centraliowatruck.htm
Please help!
Anim FX Load Movie In Level 1 Doesn't Work
I am trying to load an effect from Anim FX to Flash though the loadmovie command. It works fine with level 0(replaces the original movie)but it doesn't seem to work with other levels. Load movie on a particular movie clip target doesn't seem to work either. Any suggestions?
Anim FX Load Movie In Level 1 Doesn't Work
I don't know if you are aware or have used Anim FX at all, I hope you have!
I am trying to load an effect from Anim FX to Flash though the loadmovie command. It works fine with level 0(replaces the original movie)but it doesn't seem to work with other levels. Load movie on a particular movie clip target doesn't seem to work either. Any suggestions?
Anim FX Load Movie In Level 1 Doesn't Work
I don't know if you are aware or have used Anim FX at all, I hope you have!
I am trying to load an effect from Anim FX to Flash though the loadmovie command. It works fine with level 0(replaces the original movie)but it doesn't seem to work with other levels. Load movie on a particular movie clip target doesn't seem to work either. Any suggestions?
Flash Menu Load Content On Html Dreamweaver Page
Hi All
I need some help.
I have flash menu which i use in Dreamweaver.My website layout is in tables in Dreamweaver. I learnt how to use getURL to navigate menu buttons to change content for certain framesets. However Frameset are HELL! to resize.
Ok Ive been told to make my entire site in Flash, but b4 I do, was told I can use a Javascript to swap image on my HTML page.
I know this sounds long winded and pain. I'm more interested to see if there is a solution. Even if you all say convert to flash website design. which i will.
I would be over the moon if some1 can solve this...as many other forums has no idea.
cheers
xxx
p.s this is code used for frameset.
//on (release) {
//getURL("http://mysite.co.uk/thank.htm","screen");
//}
red
Am I Missing A Code? Flash Intro Previews With Dreamweaver But Won't Load On Net
Here's the code
body>
<div align="center">
<p>
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="700" height="600">
<param name="movie" value="../../Documents/flashintro.swf">
<param name="quality" value="high">
<embed src="../../Documents/Untitled-4.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="700" height="600"></embed>
</object></p>
Can anyone help? Did I forget to do something? This is my first time ever using Flash MX was there something I was supposed to do when I save the file?
Swf Audio Doesn't Play I Dreamweaver
My nav bar swf animation, linkage, and audio play fine. Audio is placed in the swf using AS3 (as opposed to button keyframes). With the swf inserted in the .html file, the animation and links are fine but the audio isn't there. The script loads the audio as a getURL and the mp3s are in the same folder as the swf. Maybe this is a Dreamweaver question, but any advice is greatly appreciated.
[F8] Tested Flv's, Within Swf, Control Bar Doesn't Show Up In Dreamweaver Preview, How So?
I have a quicktime clip that I want to put in the center of a fla/swf. I actually want to keep the quicktime control bar but I couldn't figure it out how so I imported and have it converted to a flv file with one of the default skin that has the seek / volume contorl on, and it's all working in the Flash preview. However, when I am making the page with dreamweaver, the control bar doesn't come out no more. I uploaded the page to the server and it's not showing the bar either. So I am wondering if anyone can suggest me anything on this problem. Is there something in parameters I can add to make it happen? Basically, I have a flv within a fla/swf and I want the control bar to be shown.
Flash Doesn't Load
Hi I have a hosting website, http://www.exonhost.com and I recently bought a new Template from TemplateMonster. It will load in IE but when on IE 6 if you try to go on a different page it screws up the HTML.
Also it just comes as a blank white box in firefox. However when I open it up on my own computer like from my desktop to firefox it's all right. Any ideas?
Flash Doesn't Load It
i designed a program in which i load external swf files which have xml files attached to them into a main movie ie a central movie
problem is the xml files all have the same flie name so i put them in separate files but the main movie won't load the movies unless the are in the same file level but if i put them in the same file level i will have to change the xml file names which i can't do
hope you understand hope you can help
Help With Flash Movie In Dreamweaver Doc.
well, i have a flash movie(header.swf) in the header of my dreamweaver document, but the buttons that will make the flash movie scroll are not in header.swf, they are flash buttons, but they are in the left column of the dreamweaver page. I want to know if i can make the buttons control the header movie even tho it isnt apart of header.swf. Please help asap! thanx.
-swooshninja-
FLASH MX Movie In Dreamweaver MX
I am searching for an answer and would be greatful for any help. I created a flash MX movie and inserted the .swf into dreamweaver MX. Now I want to add layers OVER the .swf and for some reason it keeps adding under, never over. Can you add layers over a .swf. Does anyone know?
Flash Doesn't Load Completely In IE
I have an html page in which I have dropped a flash (used front page to insert the flash object)
Apparently when I launch the page in IE 6.0 I see that 1 item downloading in the status bar..
I dont see it in FireFox 2.0
TIA
Flash Doesn't Load In Localhost
HI,
I have a swf embedded inot a HTML file, swf pulls data from an xml file.
works fine when testing CTRL + ENTER, also opening the HTML file directly..
but when i put all the files to the root folder and open the html file from localhost it doesnt load the swf???
cant figure out why
Flash Player Doesn't Load
Hi,
My flash player doesnt load when I use a site like Myspace. Where the myspace music player should be there is only a white box and when I right-click it just states "Movie not loaded" and that's after waiting several minutes. I've tried uninstalling flash and I've tried older versions with both IE6 and Mozilla.
Hope some of you guys can help...
Flash Navbar Doesn't Always Load
Can someone help a Flash newbie? I redid our bands website and added a Flash navbar. Problem is that on some computers it comes up fine, on others they see nothing but a white box and have to hit refresh before the navbar is visible. Does anyone know why this happens? The site address is www.newcoatofpaint.nl The index page of the site is a photo, when you click it you come to the problem page.
I did put a small notice up to hit refresh if you don't see the navbar, but that's sooooo tacky. Thanks in advance.
Donna
Importing Flash Movie Into DreamWeaver
I just finished creating a little movie to go with a page I am designing in DreamWeaver. It contains 3 images morphing into each other,one after another & the company logo. I used the "trace bitmap" feature on them all, as they were jpeg bitmap files before (about 33 kb each) but now they are a different type (gif?.
Anyway, my movie will not play in DreamWeaver & I have absolutely no clue why it won't work! I've tried everything to make it play! The icon shows up, but when I try to play it the movie won't run.
Please help me out, I'm very new to both these programs!
Thanks
Kristi
Using A Flash Movie As A Background In Dreamweaver MX
Hello,
Please forgive me if this is a really easy question, but I am having problems trying to get it right.
I have a flash movie that I would like to use as a bakground for a web page I am making in Dreamweaver. However, when I insert the .swf file into my Dreamweaver template, it is placed below everything.
How can I make it appear as the background in my Dreamweaver template?
Thanks,
Lee
Centering Flash Movie In Dreamweaver
Hi
I've decided to post my problem as I seem unable to solve it by my self (I'm quite new both to flash and dreamweaver).
I've made a flash navigation bar for my web page and I've inserted it inside a table in the top frame of my html page and centered it in the screen.
Under that, in the main frame, I have settled a table of the same width than the nav bar and I've centered it as well. They both seem to be perfectly aligned when working in dreamweaver, but they are not when previewing it on the browser.
If you are not following me you can check out the URL to see what I mean: http://usuarios.lycos.es/jvwebdesign/frames.htm
I hope someone tell me how to align both tables perfectly, since I cannot lose more time in such a trivial matter.
Thanks in advance
Help Me My Flash Movie Does'nt Work In Dreamweaver
I'm going crazy!!!
I've created 3 buttons on the stage to load 3 different movies. These movies are seperate files(fla.) I imported into my library.
The buttons have the following action:
on (release) {
loadMovieNum("Plantoys.swf", 4);
stop();
When I test the movie it works, but when I export it to Dreamweaver and put it on a page, it DOES'NT WORK!
Can somebody help me? You will recieve eternal fame!
Movie Works In Flash, But Not Dreamweaver
I used the loadMovie command to create an .fla to be used as a title bar. It previews fine in flash, but shows up white or blank when previed in dreamweaver. any ideas?
both files are attached.
Flash Movie Inside Dreamweaver....
Ok, this seems relatively straight forward but I am getting tricked a bit...I have a page being created in dreamweaver that basically is information about pictures and then has a link for each group of pictures...What I want to do is have each link staggered down the page, when a person clicks the link I want it to play a flash movie clip that I have made for each group of pictures that basically works like a photo album...I have the flash movie made so that part is done, the question I have is how do I do this combining flash into dreamweaver...I know how to do it if it were flash only considering the movie clip would simply pop up over my original flash work...But in dreamweaver I am use to having to place a flash movie in the file and it takes up a certain amount of page space, this is what I don't want...I want to be able to click on one of the links I have made and have my original dreamweaver page stay in the background while the photo album simply appears like a small pop up window to play my movie clip....any suggestions? thanks....
Flash Movie Not Working In Dreamweaver
Hello.. hope someone can help.
I'm trying to get a photo gallery to work in Dreamweaver. Everything is working fine when testing in Flash but when add to my Dreamweaver file and test in browser, it doesn't work.
any help is really appreciated
Flash Movie Dreamweaver 8 Import.
Hi. I made a flash logo for my website. I import the flash movie in dreamweaver 8 and resize it (actually 923 width and 119 height). The problem is that there is a blank rectangle above and under the flash logo-obviously the blank flash stage. In flash i made the logo in the centre of the stage. How can i delete the blank spaces of the stage and keep my logo and import it to dreamweaver 8?
I Cannot Put A Movie From Flash To A Dreamweaver Page
:- I have spent the past three days trying to learn how to put a flash movie into a dreamweaver pg. I can get it to the point where when I push "play" on the properties inspector the screen seems to attempt to play the movie but does'nt. The background changes but that is it. ...Bill
Flash Movie Won't Play In Dreamweaver MX
Hi,
I have a flash movie that plays when I "test movie" and plays when I load the html file from the directory it is stored in but when I try and insert the movie into an html page in Dreamweaver MX it just won't play - any ideas?
Thankyou in advance for your help...
Rachel
Swfobject Doesn't Load The Flash Object
He doesn't have any message boards, so I'm hoping someone here can take a look at my javascript for the swfobject.js and see if they know why my flash isn't loading in the header. I did load it using normal code at the bottom, but that's just so you can see what should be loading at the top in the header.
Link: bgliving.com/index_new.php
Thanks!
|