Page 1 of 1
how to show more then one (embed)
Posted: Fri May 31, 2013 3:54 pm
by alvin101
In older version I did not have this problem.
In current version I can not seem to get more then one embed to show on my page, only the first embed will show, the others bellow it will not show.
What is it that I am missing here?
Code: Select all
<p>{embed url="http://weather.unisys.com/hurricane/slp_24.gif"}</p>
<p>{embed url="http://www.ssd.noaa.gov/goes/east/carb/flash-avn.html"}</p>
<p>{embed url="http://www.nhc.noaa.gov/tafb_latest/atl24_latestBW.gif"}</p>
<p>{embed url="http://www.nhc.noaa.gov/tafb_latest/atl36_latestBW.gif"}</p>
<p>{embed url="http://www.nhc.noaa.gov/tafb_latest/atl48_latestBW.gif"}</p>
<p>{embed url="http://www.nhc.noaa.gov/tafb_latest/atl72_latestBW.gif"}</p>
Re: how to show more then one (embed)
Posted: Fri May 31, 2013 10:34 pm
by paulbaker
Dunno

Maybe the predecessor to this:
http://dev.cmsmadesimple.org/projects/thenewembed
Please post what you are trying to achieve. There may be a better way.
Re: how to show more then one (embed)
Posted: Mon Jun 03, 2013 4:15 pm
by alvin101
Thanks Paul,
The link no tell me much...
In the post above I show some content added to a page using the embed tag. Only the first tag or embed content (the embed tag) will show in the page (the site page, not the admin page).
What may I check or do to get all the content or embeds to show in the page (the site page, not the admin page)?
Re: how to show more then one (embed)
Posted: Mon Jun 03, 2013 6:30 pm
by staartmees
the link tells you the project is stale, so it's no longer supported. It's possible it still works, but there's a change it doesn't work.
Re: how to show more then one (embed)
Posted: Mon Jun 03, 2013 6:37 pm
by Rolf
Re: how to show more then one (embed)
Posted: Mon Jun 03, 2013 6:41 pm
by staartmees
take a look at the Summary ...
Re: how to show more then one (embed)
Posted: Mon Jun 03, 2013 10:34 pm
by alvin101
Well guys,
So what you are telling me is this tag is no longer supported?
This is what it say in the tag help:
About the embed tag
Author: Sorin Sbarnea<
sorin2000@intersol.ro> (remove 2000)
Version: 1.0
Change History:
None
If this tag is not the way to embed content these days, then what is the best way to what I am try to do?
Please inform me,
Thanks
Alvin
Re: how to show more then one (embed)
Posted: Tue Jun 04, 2013 6:22 am
by staartmees
you can put the images on your page like any other image using <img src="
http://www.nhc.noaa.gov/tafb_latest/atl36_latestBW.gif">
get the flashcode from ssd.noaa.gov/goes/east/carb/flash-avn.html and put it between {literal} and {/literal}
Re: how to show more then one (embed)
Posted: Tue Jun 04, 2013 7:36 am
by velden
Just works on my install (1.11.7 "Genovesa"):
Code: Select all
<p><__iframe id='myframe' name='myframe' src='http://weather.unisys.com/hurricane/slp_24.gif' scrolling='no' marginwidth='0' marginheight='0' frameborder='0' style='overflow:visible; width:99%; display:none'></__iframe></p>
<p><__iframe id='myframe' name='myframe' src='http://www.ssd.noaa.gov/goes/east/carb/flash-avn.html' scrolling='no' marginwidth='0' marginheight='0' frameborder='0' style='overflow:visible; width:99%; display:none'></__iframe></p>
<p><__iframe id='myframe' name='myframe' src='http://www.nhc.noaa.gov/tafb_latest/atl24_latestBW.gif' scrolling='no' marginwidth='0' marginheight='0' frameborder='0' style='overflow:visible; width:99%; display:none'></__iframe></p>
<p><__iframe id='myframe' name='myframe' src='http://www.nhc.noaa.gov/tafb_latest/atl36_latestBW.gif' scrolling='no' marginwidth='0' marginheight='0' frameborder='0' style='overflow:visible; width:99%; display:none'></__iframe></p>
<p><__iframe id='myframe' name='myframe' src='http://www.nhc.noaa.gov/tafb_latest/atl48_latestBW.gif' scrolling='no' marginwidth='0' marginheight='0' frameborder='0' style='overflow:visible; width:99%; display:none'></__iframe></p>
<p><__iframe id='myframe' name='myframe' src='http://www.nhc.noaa.gov/tafb_latest/atl72_latestBW.gif' scrolling='no' marginwidth='0' marginheight='0' frameborder='0' style='overflow:visible; width:99%; display:none'></__iframe></p>
Re: how to show more then one (embed)
Posted: Tue Jun 04, 2013 1:46 pm
by alvin101
Well guys, its not working...
This works:
Code: Select all
<p><object data="http://www.ssd.noaa.gov/goes/east/carb/flash-avn.html" width="725" height="600"> Error: Embedded data could not be displayed. </object></p>
and this
Code: Select all
<p><img style="float: left;" src="http://weather.unisys.com/hurricane/slp_24.gif" alt="" width="700" /></p>
That is the best I can do...
It must be an iframe issue?
Re: how to show more then one (embed)
Posted: Tue Jun 04, 2013 3:01 pm
by staartmees
the code you use is completely wrong.
You must get the object-code from the html-page and put it between {literal} and {literal}