YOU DID NOT DO what I requested in my last postQuote:
How can i help you to help me figure this out.
i.e.
Quote:
This text is replaced by the Flash movie.
Please post EXACT code you have there
Printable View
YOU DID NOT DO what I requested in my last postQuote:
How can i help you to help me figure this out.
i.e.
Quote:
This text is replaced by the Flash movie.
Please post EXACT code you have there
Unless I am not understanding the question that is what i did. I am in zen carts admin in define pages for photogallery.php. Under plain html all the code that is in there RIGHT NOW is what i posted in my last post. If this is not what you are looking for i am sorry for misunderstanding you please explain.
Your previous post number 84
So what i did was when to the define page editor and placed this code into the html page
Marked red...is that all you have there?? NO CODE for flash?Code:
<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
This text is replaced by the Flash movie.
</div>
<script type="text/javascript">
var so = new SWFObject("gallery3/photo_tutorial.swf", "photo_tutorial.swf", "550", "560", "7", "#000000");
so.write("flashcontent");
</script>
If so this is incorrect.
OH yes that is exactly what i have. I am sorry lol. I actually thought that the text there would mean that if the flash object was unavailabe or something this text would be in its place. So what needs to go there? The url as gallery3/photo_tutorial.swf. or just photo_tutorial.swf?
SAMPLE code below should be what goes at
This text is replaced by the Flash movie.
i.e.
THIS IS WHY your flash is not working..most of requiredCode:<script type="text/javascript" src="includes/templates/yourtemplate/js/swfobject.js"></script>
<div id="flashcontent">
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
id="Movie7a" width="760" height="194">
<param name="movie" value="Movie7a.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFCCCC">
<embed name="Movie7a" src="Movie7a.swf" quality="high" bgcolor="#FFCCCC"
width="760" height="194"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
</embed>
</object>
</center>
<script type="text/javascript">
var so = new SWFObject("includes/templates/yourtemplate/Movie7a.swf", "YOUR_HEADER", "760", "194", "7", "#FFCCCC");
so.write("flashcontent");
</script>
flash code is missing.
OK i have put this in...This is my full code. Is this correct or did i screw something else up?
Code:
<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
id="Movie7a" width="760" height="194">
<param name="movie" value="photo_tutorial.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFCCCC">
<embed name="Movie7a" src="gallery3/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
width="760" height="194"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
</embed>
</object>
</center>
<script type="text/javascript">
var so = new SWFObject("gallery3/photo_tutorial.swf", "photo_tutorial.swf", "760", "494", "7", "#FFCCCC");
so.write("flashcontent");
</script>
You have copied my SAMPLE CODE..Code:<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
id="Movie7a" width="760" height="194">
<param name="movie" value="photo_tutorial.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFCCCC">
<embed name="Movie7a" src="gallery3/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
width="760" height="194"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
</embed>
</object>
</center>
<script type="text/javascript">
var so = new SWFObject("gallery3/photo_tutorial.swf", "photo_tutorial.swf", "760", "494", "7", "#FFCCCC");
so.write("flashcontent");
</script>
you need to adapt/replace certain parts of that code with
your own paths/sizes etc..
Marked red is incorrect and
it is NOT your full code...
This code should be what goes at
This text is replaced by the Flash movie.
WOW!!! OK i am very confused but this is what i tried doing. I copied the first piece of code you gave me at the beginning which was;
Code:
<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
This text is replaced by the Flash movie.
</div>
<script type="text/javascript">
var so = new SWFObject("includes/templates/arch_shoppe/photo_tutorial.swf", "photo_tutorial.swf", "550", "460", "7", "#000000");
so.write("flashcontent");
</script>
I then added the last piece of code you gave me which was
Code:
<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
id="Movie7a" width="760" height="194">
<param name="movie" value="photo_tutorial.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFCCCC">
<embed name="Movie7a" src="gallery3/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
width="760" height="194"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
</embed>
</object>
</center>
<script type="text/javascript">
var so = new SWFObject("gallery3/photo_tutorial.swf", "photo_tutorial.swf", "760", "494", "7", "#FFCCCC");
so.write("flashcontent");
</script>
Then i changed it to what i think it should be which is still wrong probably. I am not sure what to replace Movie7a with. I was thinking the name of the swf file. Here is my FULL current code.
Code:
<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
id="photo_tutorial.swf" width="760" height="194">
<param name="movie" value="photo_tutorial.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFCCCC">
<embed name="photo_tutorial.swf" src="/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
width="760" height="194"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
</embed>
</object>
</center>
<script type="text/javascript">
var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "photo_tutorial.swf", "760", "494", "7", "#FFCCCC");
so.write("flashcontent");
</script>
</div>
<script type="text/javascript">
var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "550", "560", "7", "#000000");
so.write("flashcontent");
</script>
Still incorrect re YOUR Sizes,Colours and PATHS, marked RED
Code:<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
id="photo_tutorial.swf" width="760" height="194">
<param name="movie" value="photo_tutorial.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFCCCC">
<embed name="photo_tutorial.swf" src="/photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
width="760" height="194"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
</embed>
</object>
</center>
<script type="text/javascript">
var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "photo_tutorial.swf", "760", "194", "7", "#FFCCCC");
so.write("flashcontent");
</script>
Its not working...The size and color shouldnt matter. I can change that to make it proportional or fit better on the page later. I just need it to work corerctly and it doesn't seem to be doing anything.
Code:
<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
<script type="text/javascript" src="includes/templates/arch_shoppe/jscript/swfobject.js"></script>
<div id="flashcontent">
<center>
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
codebase="http://active.macromedia.com/flash2/...ersion=4,0,0,0"
id="photo_tutorial.swf" width="600" height="450">
<param name="movie" value="photo_tutorial.swf">
<param name="quality" value="high">
<param name="bgcolor" value="#FFCCCC">
<embed name="/gallery3/photo_tutorial.swf" src="photo_tutorial.swf" quality="high" bgcolor="#FFCCCC"
width="600" height="450"
type="application/x-shockwave-flash"
pluginspage="http://www.macromedia.com/shockwave/...ShockwaveFlash">
</embed>
</object>
</center>
<script type="text/javascript">
var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "photo_tutorial.swf", "600", "450", "7", "#FFCCCC");
so.write("flashcontent");
</script>
</div>
<script type="text/javascript">
var so = new SWFObject("includes/templates/arch_shoppe/jscript/swfobject.js", "600", "450", "7", "#000000");
so.write("flashcontent");
</script>