I Am Using The FlashObject To Embed My Flash, But
I was using the publish setting of "no scale" and setting it to 100 percent. And it was giving my flash the desired effect...of extending the flash to the edge of the browser on the left and right side.
I got it from this tutorial.
http://www.kirupa.com/developer/mx2004/fullscreen.htm
But I have since had to switch the way I was embedding the flash to the flashobject so as to avoid the "click to activate" thing. And now, the full screen scaling thing, doesn't work.
How can I modify my flashoject code (below) so that the flash will be centered, and so that the edges of the flash will extend full screen like it was before.
Thanks.
<script type="text/javascript" src="flashobject.js"></script>
<div id="flashcontent" style="width: 1100px; height: 700px"></div>
<script type="text/javascript"> var fo = new FlashObject("myfile.swf", "animationName", "1100", "700", "8", "#FFFFFF"); fo.addParam("allowScriptAccess", "sameDomain"); fo.addParam("quality", "high"); fo.addParam("scale", "noscale"); fo.addParam("loop", "false"); fo.write("flashcontent"); </script>
Ultrashock Forums > Flash > Flash Professional
Posted on: 2007-06-28
View Complete Forum Thread with Replies
See Related Forum Messages: Follow the Links Below to View Complete Thread
I Am Using The FlashObject To Embed My Flash, But
I was using the publish setting of "no scale" and setting it to 100 percent. And it was giving my flash the desired effect...of extending the flash to the edge of the browser on the left and right side.
I got it from this tutorial.
http://www.kirupa.com/developer/mx2004/fullscreen.htm
But I have since had to switch the way I was embedding the flash to the flashobject so as to avoid the "click to activate" thing. And now, the full screen scaling thing, doesn't work.
How can I modify my flashoject code (below) so that the flash will be centered, and so that the edges of the flash will extend full screen like it was before.
Thanks.
<script type="text/javascript" src="flashobject.js"></script>
<div id="flashcontent" style="width: 1100px; height: 700px"></div>
<script type="text/javascript">
var fo = new FlashObject("myfile.swf", "animationName", "1100", "700", "8", "#FFFFFF");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.write("flashcontent");
</script>
I Am Using The FlashObject To Embed My Flash, But The Scaling Is Off Now.
I was using the publish setting of "no scale" and setting it to 100 percent. And it was giving my flash the desired effect...of extending the flash to the edge of the browser on the left and right side.
I got it from this tutorial.
http://www.kirupa.com/developer/mx2004/fullscreen.htm
But I have since had to switch the way I was embedding the flash to the flashobject so as to avoid the "click to activate" thing. And now, the full screen scaling thing, doesn't work.
How can I modify my flashoject code (below) so that the flash will be centered, and so that the edges of the flash will extend full screen like it was before.
Thanks.
<script type="text/javascript" src="flashobject.js"></script>
<div id="flashcontent" style="width: 1100px; height: 700px"></div>
<script type="text/javascript">
var fo = new FlashObject("myfile.swf", "animationName", "1100", "700", "8", "#FFFFFF");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.write("flashcontent");
</script>
Using Flashobject.js Rather Than Html Embed, Help Setting Flash To Tranparent
I am using javascript to put a flash file on my html page rather than using the embed tags (a work around for the "gray box" problem in IE)
I have a drop down menu that is going behind my flash piece and I want it to go over the top. Now I normally know how to fix this by changing the wmode in the html, but I do not know how to set this property in the javascript.
Here is my code:
Code:
<script type="text/javascript">
var fo = new FlashObject("staff.swf", "firstflash", "530", "500", "8", "#afb0ac");
fo.addParam("quality", "best");
fo.write("firstflash");
</script>
FlashObject Embed Not Working
I'm having trouble getting my flash object embed to work with my flash menu on a site I'm working on. I've been able to get the flashObject embed to work on my other flash files so I think it may have something to do with the drop down menu and transparency. Here is my page I'm having trouble with:
arts.html
You can see my other pages here with the old flash code, where the menu is working:
hotels.html
If anyone can help me out I'd really appreciate it. Thanks!
I almost forgot, I'm working off the Flash embed javascript and embed files located here:
http://blog.deconcept.com/flashobject/
Flashobject (embed) Javascript & FlashVars
Hi,
I was hoping someone could give me a hand with this code. I'm using the kirupa flashobject.js to switch over some of my old flash object embeds. It works fine on all my .swfs except this one where I pass in flashvars. I'm a little confused on how I should attempt this. I tried the straight up way of adding a "fo.addParam()" but it didn't work. Anyway, I've included the pre-changed flash object as well as the javascript version that I tried to convert it to. Any suggestions would rock my world.
---------------------------------------------------------
//ORIGINAL CODE
<object classid="clsid27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="120" height="300">
<param name="movie" value="flash/navigation.swf">
<param name=FlashVars value="id=<%=Session("category")%>">
<param name="quality" value="high">
<embed src="flash/navigation.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="120" height="300" FlashVars="id=<%=Session("category")%>"></embed>
</object>
---------------------------------------------------------
//JAVASCRIPT VERSION
<script type="text/javascript" src="flashobject.js"></script>
<div id="flashcontent_text" style="width: 120; height: 300"></div>
<script type="text/javascript">
var fo = new FlashObject("flash/navigation.swf", "animationName", "120", "300", "8", "#4d4c4c");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.addParam("FlashVars", "id=<%=Session("category")%>");
fo.write("flashcontent_text");
</script>
FlashObject
ok...im using the flashObject.....however for some reason...the flash that i use works in all browsers on all platforms except for IE on a PC....i know it has to do with the flashObject...because when i use the standart embed tags from flash the site works fine in all browsers on all platforms.....can anyone help?
http://www.inkefx.com/testsite/home.html
some of the code im using and the javascript file that im using come from this sprite site i found.
http://www.sprite3g.be
i needed a scroll bar to appear at a certain resolution but go away and let the flash file extend 100% when its higher than a specific res. and theirs works on all platforms and browsers. i dont understand why mine doesnt though.
thanks in advance.
Jake
FlashObject
Hello everyone,
Oh man, am I having fun here with flashobject.js workaround! I started to try and track down information on the why...when...where of it today.
Here is what I am up against. Everything works as it once did using the workaround as long as the html doc isn't saved (This is in Dreamweaver by the way starting a new html doc). By that I mean, I can drop my swf file into the html doc and this is what the path looks like before the html document is saved to a local folder:
<param name="movie" value="file:///C|/MY_websites/LSW/swf/left_side_index_articles_training_tips_page.swf">
If I use this path and copy it to:
<script type="text/javascript">
var fo = new FlashObject("file:///C|/MY_websites/LSW/swf/left_side_index_articles_training_tips_page.swf", "2flash", "108", "400", "6", "#999999");
fo.addParam("quality", "high");
fo.write("2flash");
</script>
I can launch the html doc from within Dreamweaver and all is normal when it’s viewed in IE6.
Once I save the html doc to it's local folder the swf file's path is updated to this:
<param name="movie" value="../../swf/left_side_index_articles_training_tips_page.swf">
When I copy the new path into the workaround and test run the html doc from any location be it local or remote, the swf file embedded fails to show up.
If anyone can help me to see what I’m doing wrong, I’d really appreciate the effort.
If not, thanks for your time.
Should I post this in the Dreamweaver forum? Sorry if I'm in the wrong place asking questions on this.
Best regards,
FSEdge
FlashObject
Hello guys, well after the update of IE i changed my html code but i still have one issue in the flash menu, where i can place this param
<param name="movie" value="swf/menu_inner.swf?goto=2" />
any solution?
Thanks
FlashObject Or Cookie?
Hi there, I apologize if his has been posted but I ran a search and couldn't find anything that QUITE hit on what I need. I am trying to set up an Ad that is embedded in my flash movie that only plays once per day. PRetty simple concept really (ala espn.com) Basically once per day when a user hits the site the flash movie goes to the end to a section with a flash ad that plays and then cycles back to the beginning of the movie. I have been told that FlashObjects don't expire. Is that true? Or do I need to use cookies in order to get them to expire after 24 hours? I know it's pretty much an if - then, else type statement (if cookie exists go to fram 254, if not go to and play frame 3) but I am struggling to figure out even where to start. Are there any tutorials out there that touch on this? TIA
FlashObject Not Working?
Ok bear with me as i am stupid. I downloaded the zip file from flash mechanic with the flashobject js file and the flashobjectpublis.mxp file. Im not sure if im doing this right but dont i just need to copy the .mxp file into the main Flash8 folder and then upload a republished swf and html file along with the js file to godaddies server? Do i have to modify the code in the JS file or?... I really dont know much HTML at all, so not to sure what i need to do. Usually ijust publish my swf and html file in flash and take the html file in dreamweaver to center the flash and add a background. Do i need to change my publish settings in flash? Or am i not installing the .mxp file correctly??? Any help would be greatly appreciated and may also help repeated posts from newbies with kinda a step by step as to what needs to be done. Thanks again!
Flashobject Problem
Morning! I am having this problem with the Flashobject. For some reason it will now let me site do full screen. Anyone good with java and flash?
Here is my AS
PHP Code:
import flash.display.BitmapData;
cover._x = Stage.width / 2;
cover._y = Stage.height / 2;
var tile:BitmapData = BitmapData.loadBitmap("bg"+3);
function fillBG(){
this.beginBitmapFill(tile);
this.moveTo(0,0);
this.lineTo(Stage.width,0);
this.lineTo(Stage.width,Stage.height);
this.lineTo(0,Stage.height);
this.lineTo(0,0);
this.endFill;
}
fillBG();
var stageL:Object = new Object();
stageL.onResize = function(){
fillBG();
cover._x = Stage.width / 2;
cover._y = Stage.height / 2;
main.cover.nameplate._x = (Stage.width / 2) - (300/2);
main.cover.settings._x = Stage.width - 110;
updateAfterEvent();
}
Stage.addListener(stageL);
and here is the JS using.
PHP 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>wattsupnow.com</title>
<script type="text/javascript" src="flashobject.js"></script>
</head>
<body bgcolor="#000000">
<style>
<!--body{margin:0px;padding:0px} -->
</style>
<div id="firstflash">
Flash 8 is Required to view this site.
</div>
<script type="text/javascript">
var fo = new FlashObject("v5_wun_flash8.swf", "firstflash", "100%", "100%", "8", "#000000");
fo.addParam("menu", "false");
fo.addParam("SALIGN", "TL");
<!--fo.addParam("SCALE", "showall");-->
fo.addParam("quality", "best");
fo.write("firstflash");
</script><br/>
</body>
</html>
Here is a link without the JS which works great!
http://www.wattsupnow.com/index.html
and here is it with the JS added.
http://www.wattsupnow.com/index2.html
What am I doing wrong?
FlashObject And FSCommand
I can't seem to get the two working together.... does anyone know if there is a property or method with the flashObject to register a callback function?
Having Issues With FlashObject
has anyone else had the issue that you've managed to impliment flashobject in order to by pass this IE click issue, and everything shows up fine, except it still doesn't bypass the IE click issue? Am i missing something?
FlashObject IE Problem
Using the FlashObject embed on the website and it works like a charm in Firefox. However when I go to the page in IE, it does'nt even display the SWFs? I read that clearing your cache can resolve this issue in IE. I tried ctrl+reload, fresh load of the page, and still no avail??? Any Suggetions
Another FlashObject Issue
I have yet another FlashObject Issue! This one is an interesting one too. For some reason, ONLY IN AOL EXPLORER, flash components do not display their content. For instance, my music player component and news component are not loading their music or news content. It displays as if there is no content. However when I run the components stand alone, without the flashobject embed, they work. They also work in every other browser. Looks like a javascript issue, any suggestions?????????
IE Behaving Very Weird With Flashobject?
Since microsoft's lovely 'click here to activate'- bull**** I use the flashobject to embed my movies. Everything worked fine untill today I discovered that nothing worked anymore...?!
I do it like this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script type="text/javascript" src="flashobject.js"> </script>
</head>
<body>
<div id="flash"></div>
<script type="text/javascript">
var fo = new FlashObject("movie.swf", "movie", "642", "260", "7", "#FFFFFF");
fo.write("flash");
</script>
</body>
</html>
Also it only seems to be on my laptop, maybe because that's the only place where I have the latest update...
Anyone have a clue, I really don't think this is funny...
It has always worked, and still works in ff...
Problem With FlashObject/SWFObject On IE
Hi guys
been using SWFObject for a while now (http://blog.deconcept.com/category/swfobject/)
it used to be completely problem free (or so i thought).. untill i checked one of my sites recently using IE
it seems that, all my flash content are ok, except for the ones that are passed thru the SWFObject script..
now im sure it's not just me coz the site of SWFObject's developer itself "exhibits" my problem..
here's a screenshot..
any ideas how to fix this?
tea
IE Loading Issue, Using The FlashObject.js
Hi all, I'm having trouble loading this SWF in IE, works fine in firefox and other browsers... but in IE7 and 6 it says "waiting for http//mysite..." it has been waiting for 30 minutes.
I'm using the flash object from this site http://www.kirupa.com/developer/flash8/flash_fix.htm. I also tried re-directing to another page (because I don't think IE can handle the centering css anyway) - the redirect worked so i know javaScript is enabled and working, but still will not load the swf. also thought maybe just maybe it didn't like the preloader so I got rid of that and tried loading that new file with the same result. I tired everything I can think of and still no love, prolly some stupid mistake in the HTML. Could someone take a look at it for me?
WARNING: There is (loud) music, so you might want to turn your speakers down or off. I've done a ton of these band e-cards and never had this problem and as a matter of fact they all still work in IE so I'm not sure whats going on.
http://www.fieldsofcorn.com/sites/sow/
Thank you!
Code:
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
<title>THE MINOR TIMES: SUMMER OF WOLVES</title>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon" />
<!-- re-direct code comment out
<script type="text/javascript" language="javascript" charset="utf-8">
// <![CDATA[
var name = navigator.appName;
if (name == "Microsoft Internet Explorer") { window.location = "ieindex.html"; }
// ]]>
</script>
-->
<style type="text/css" media="screen">
/* <![CDATA[ */
body {
padding:0;
margin:0;
background-color: #000;
background-image: url('img/bgTile.gif');
background-repeat: repeat;
}
#container {
position:absolute;
top:50%;
width:100%;
height:1px;
overflow:visible;
}
#content{
position:absolute;
left:50%;
margin-left:-380px;
margin-top:-300px
}
/* ]]> */
</style>
</head>
<body>
<div id="container">
<div id="content">
<script type="text/javascript" src="flashobject.js"></script>
<div id="flashcontent" style="width: 760px; height: 600px"></div>
<script type="text/javascript">
var fo = new FlashObject("main.swf", "animationName", "760", "600", "7", "#000000");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.write("flashcontent");
</script>
</div>
</div>
</body>
</html>
FlashObject Extension For Dreamweaver 8 ?
Hello folks,
As we all know , there have been some new changes on how Internet Explorer 6 displays Flash.
There has been some discussion about the FlashObject.
I was wondering if anyone is aware of an "extension" for Dreamweaver 8 that will automatically insert to PROPER CODE to play Flash movies correctly in the new Internet Explorer6?
This would be very handy for everyone.
Cheers!
Html Frameset Flashobject Scrollbars Mac Ie
Hi there,
Weird problem. I use frames a lot, never get any problems (don't use any wysiwyg editors just do handwriting)
I put my frames with no scrollbars, no resize ext... but when i link a frame with an html with a flash in it, the scrollbars appears ONLY in mac IE...(and only if the flash is bigger then the frame size, then this html is forcing the frameset scrollbars to yes!)
Think this is a bug in IE on Mac, but has someone got a clue to overrule this...
Thnx a bunch!
FlashObject & Transparent Background Integration
When using the FlashObject Script - is it possible to also integrate the coding for having a transparent background in a .swf file? I have tried to no avail as the FlashObject Script uses different wording than the normal <object> and <embed> tags - where you add the 2 snippet of codes for transparency. When I tried to put it in the background turned to green or blue.
Thanks so much!
Centering Swf File Embedded By FlashObject
I was just wonder if this set up is right
Code:
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Mindset Media</title>
<body bgcolor="#d9d9d3">
<!--url's used in the movie-->
<a href="mailto:info@mindset-media.com?subject=Web Inquiry"></a>
<!--text used in the movie-->
<!-- saved from url=(0013)about:internet -->
<script type="text/javascript" src="swfobject.js"></script>
<div id="flashcontent" style="width: 870px; height: 870px" align="center"></div>
<script type="text/javascript">
var fo = new FlashObject("main.swf", "animationName", "870", "870", "8", "#d9d9d3");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.addParam("align","l", "t", "r", "b");
fo.write("flashcontent");
</script>
</body>
I'm trying to center my content to the middle of the stage. I got this bit of
code
Code:
fo.addParam("align","l", "t", "r", "b");
from Adobe
Why is this site not centering?
Thanks,
Mikro
[F8] Problem With HTML XMLNS Using Swfobject (flashobject)
I published a movie using the flashobject template and when I opened the html file in Dreamweaver to edit it, it came up with these browser support errors:
The xmlns attribute of the HTML tag is not supported, but it has no detrimental effect. [N.N. 6 and 7]
The xml:lang attribute of the HTML tag is not supported [I.E. 5, I.E.5.5, I.E. 6, N.N 6 and 7]
I have no idea what this means. Help please...
I Am Using The Flashobject To Avoid The 'click To Activate', And Now My Scaling Is Off.
I was using the publish setting of "no scale" and setting it to 100 percent. And it was giving my flash the desired effect...of extending the flash to the edge of the browser on the left and right side.
I got it from this tutorial.
http://www.kirupa.com/developer/mx2004/fullscreen.htm
But I have since had to switch the way I was embedding the flash to the flashobject so as to avoid the "click to activate" thing. And now, the full screen scaling thing, doesn't work.
How can I modify my flashoject code (below) so that the flash will be centered, and so that the edges of the flash will extend full screen like it was before.
Thanks.
<script type="text/javascript" src="flashobject.js"></script>
<div id="flashcontent" style="width: 1100px; height: 700px"></div>
<script type="text/javascript">
var fo = new FlashObject("myfile.swf", "animationName", "1100", "700", "8", "#FFFFFF");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.write("flashcontent");
</script>
Info On Enabling Bookmarking/favorites Using Flashobject And BrowserStateManager
I added browser bookmarking/favorite capability to my flash site recently, using a combination of Geoff Stearns FlashObject and Kevin Lynch's BrowserStateManager.
I've posted some notes on my site if it's of any help to anyone wanting to implement something along those lines:
http://www.magicpixel.com.au/tutoria...eeplinking.cfm
Pete
I Am Using The Flashobject To Avoid The 'click To Activate', Works On Firefox....but.....not On IE
trying to use swf object, works on firefox and saf
http://leereedy.com/sourcy/track/true.html
Basically, I'm losing my mind on this issue. I have a splash page (true.html)that automatically launches a full screen pop up (southafrican.html).
I didn't want the 'click to activate' thing, so i tried using the swf object method, but I guess something is wrong, cause it is doing something random on IE right now. I can hear the audio, but can't see anything. It works on firefox and safari (for PC). If you have a mac, please let me know if it is working on that.
The following is the code I'm using, and would be grateful for any help.
Also, do I still need to use the active run content thingy? What does that even do?
The true.html ....(splash page).
<html xmlns="
Flashobject.js = Problems Loading External Movie Clips
HI People
I am trying to use the flashobject.js for the obvious reason - I dont want to see the active x controls within my flash animation.
It works fine in all instances except for when loading an external movie clip into the existing MC.
I have tried using the allow ScriptAccess", always to see if that helps but no joy.
Please if anyone can help it would be much appreciated.
Cheers - http://www.blacklightmedia.co.uk
Below is an exmple of my script
<script type="text/javascript">
var fo = new FlashObject("flash/header.swf", "name", "860", "100", "8", "#FFFFFF");
fo.addParam("allowScriptAccess", "sameDomain");
fo.addParam("quality", "high");
fo.addParam("scale", "noscale");
fo.addParam("loop", "false");
fo.write("flash1");
</script>
Flash Embed Help
Hello all. I found this site via a search engine, with which I have been scouring the net looking for the answer to a question I have about flash. Does anyone know if there is a way to embed a flash movie as the cell background in an html table? Not embed it in a cell, but embed it as the background. Thus far, I have only been able to embed the flash movie as an object within the cell, rather than as the background. If anyone knows of a way to assign the flash movie as the cell attribute "background", I would be very happy to know how.
Embed Flash The Right Way
How do i embed flash the right way with flash mx?
I have got a web page with 4 flash movies but 2 of them are not visible when I upload to the live site
http://www.maggiehollins.com/Updated...ite/index.html
any suggestions?
cheers
[F8] Trying To Embed Flash...
I have this HTML on my website:
<object width="550" height="400">
<param name="movie" value="jack x.swf">
<embed src="jack x.swf" width="550" height="400">
</embed>
</object>
but the box is just white and when you right-click it says movie not loaded. I even have a preloader for it! I'm just wondering how I can embed it so you can watch it right there.
Thanks, --DC
[Embed()] Using Flash IDE
can you use things like...
[Embed(source="/assets/fonts/Arista.ttf", fontName="arista")]
[Embed(source="big_asset.jpg")]
[Frame(factoryClass="com.bit101.MyFactory")]
when compiling thru the Flash IDE?
if not,is there an equivalent work-around?
thanks,
Flash Embed Help
hi,
i have to work on a project. it is using flashembed in javascript to load a swf and play FLV movie in it. the code is
Code:
flashembed(obj.attr('id'),
{
src:'./flowplayer/FlowPlayerDark.swf',
width: 400,
height: 290
},
{config: {
autoPlay:true,
controlBarBackgroundColor:'0x2e8860',
initialScale: 'scale',
videoFile: videoToDisplay
}}
);
Problem: I just want to know, how can i get the parameter videoFile inside Flash8. AS2
Best Regrads,
Waqas Dar
Embed Swf Into Flash?
Is there any way to embed an swf file into flash?
Im making a website and i intend to put games on it but if i cant embed swf's then ill have to do some popups =/
Best Way To Embed Flash In DW?
What is the best way to embed a flash movie in Dreamweaver w/o messing up cells/rows of a previous creation?
I have a site together & want to insert a movie on a page & keep the nav bar the same from all the other pages , when I insert the Flash movie it royally messes up all the rows & cells
here's the site
www.castleblak.com
just want to keep the nav bar same on all pages!
thanks!
Embed Flash In ASP At 100%
We are trying to embed a flash movie using an include file. We take the HTML code and embed it into the ASP. ASP does not appear to understand the 100% theory. Is there anything you all know about to make this work
Thanks
MXN
Cannot Embed This Particular Flash Nav..
Sorry - problem solved
--------------------------------------
This file is accessible through my ftp, but I cannot embed it in [any other] htm or page through the site. This is odd to me, as I can embed any other .swf ..
Any ideas?
Thanks much - ahead of time
Embed Exe Into Flash
Hi everybody!
Does anyone knows if it is possible to import or load into a .fla one .exe file.
I want it to use it like a movie clip with Play/stop functions
Any info is well appreciated
Thanx
Embed Your Flash
Embed Your Flash
Ok folks, we all know the irration that active x places around flash, noobs may refer to it as that 'funny border'.
So do the web a favour and go to the link above and read up about it, it can be solved.
The World Wide Web - Microsoft is the disease...we are the cure!!
Embed Flash To C++
Does anybody know how to embed Flash into C++ and make them communicate?
I have done this once using VB6...
Although, this question includes Win32 programming, which I hadnt used before.
Just please explain to me briefly and what should I know to make this work.
Thanks
Embed Flash
Hello,
Thus embedding a flash movie has to end with the .swf extension in html.
I have a movie that is created in flash and just been compiled it with an extension of .exe as output, but seems like It wont work when I reference the file
Code:
<object type="application/x-shockwave-flash" data="flashvideo.exe" width="#" height="#">
<param name="movie" value="flashvideo.exe" />
</object>
CSS/JS Pop-Down Goes Under Flash Embed
Any pop-down menu that i make in CSS or Javascript goes behind a flash movie instead of on top of the movie.
Is their an atribute that i can apply to the flash embed tag that will fix this issue??
Thanks
p.s. here is a sample...
Menu drop-down goes under flash
Just scroll over the word reviews in the bottom navi to see it go behind my flash embed above.
Embed URL In Flash Movie
Hi!
Is it possible to load a web page/URL within a Flash movie? The web page would display in a section of the movie, while the rest of the movie is still going on.
Thanx!
Embed Flash With Image
what i want to do is embed a flash swf file in a table. if the person doesn't have flash then i want it to show an image instead. i tried the notes from macromedia but it doesn't work. when i load the html page it ask to download flash.
i used their code
<!-- begin the OBJECT tag, which will be understood by ActiveX-capable browsers -->
<OBJECT CLASSID="clsid27CDB6E-AE6D-11cf-96B8-444553540000"
CODEBASE="http://active.macromedia.com/flash/cabs/swflash.cab#version=3,0,0,11"
WIDTH="220" HEIGHT="110" NAME="sw" ID="sw">
<PARAM NAME="Movie" VALUE="flash_movie.spl">
<PARAM NAME="quality" VALUE="high">
<PARAM NAME="Loop" VALUE="true">
<PARAM NAME="play" VALUE="true">
<!-- begin the JavaScript -->
<SCRIPT LANGUAGE="JavaScript">
<!-hiding contents from old browsers
//If this browser understands the mimeTypes property and recognizes the MIME Type //"application/x-shockwave-flash"...
if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]){
//...write out the following <EMBED> tag into the document.
document.write('<EMBED SRC="flash_movie.spl" WIDTH="220" HEIGHT="110" LOOP="true" QUALITY="high">');
}
//Otherwise,...
else {
//...write out the following <IMG> tag into the document. The image need
//not be the same size as the Flash Player movie, but it may help you lay out the
//page if you can predict the size of the object reliably.
document.write('<IMG SRC="welcome.gif" WIDTH="220" HEIGHT="110" ALT="Non-Shockwave Welcome">');
}
//Done hiding from old browsers. -->
</SCRIPT>
<!-- Close the OBJECT tag. -->
</OBJECT>
is there something else i could use that wil work with netscape and ie?
thanks
Can I Embed Html Into Flash?
i need to use html to set up online transactions. rather than build a new html page i would rather include the html script into my flash movie. is this possible?
How To Embed Flash Signatures
How to embed Flash signatures
I like to now how to show a footer in a forum “not in this forum”
I now the forum allow flash footer because I used a sample end work
I have being trying for 3 days and I can’t get it
I try this one and don’t work:
<embed width="294" height="39" src="http://www.mywebsite.com/mymovie.swf">
Thank you.
|