<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="bbPress/1.2" -->
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
		>
	<channel>
		<title>Feed Informer: Forums &#187; Topic: Scrolling text box not working</title>
		<link>https://feed.informer.com/forums/topic.php?id=12</link>
		<description>Feed Informer: Forums &#187; Topic: Scrolling text box not working</description>
		<language>en-US</language>
		<pubDate>Tue, 19 May 2026 09:26:21 +0000</pubDate>
		<generator>http://bbpress.org/?v=1.2</generator>
				<atom:link href="https://feed.informer.com/forums/rss.php?topic=12" rel="self" type="application/rss+xml" />

		<item>
			<title>admin on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-75</link>
			<pubDate>Sun, 11 Mar 2007 10:57:20 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">75@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Excellent! :)
</p>]]></description>
					</item>
		<item>
			<title>mashuptown on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-74</link>
			<pubDate>Sat, 10 Mar 2007 21:22:39 +0000</pubDate>
			<dc:creator>mashuptown</dc:creator>
			<guid isPermaLink="false">74@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>except now when you click on 'read more' a new  page does not open up and the link opens up in the iframe :(</p>
<p>edit:  fixed it with a &#60;base target="_blank"&#62;</p>
<p>thx.
</p>]]></description>
					</item>
		<item>
			<title>mashuptown on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-73</link>
			<pubDate>Sat, 10 Mar 2007 21:17:04 +0000</pubDate>
			<dc:creator>mashuptown</dc:creator>
			<guid isPermaLink="false">73@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>admin:</p>
<p>mad props. that is exactly the simple code I was looking for.  need to adjust the widths and such but now it works!</p>
<p>thx.</p>
<p>rt
</p>]]></description>
					</item>
		<item>
			<title>admin on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-39</link>
			<pubDate>Sat, 10 Mar 2007 13:55:32 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">39@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Or less difficult than that..</p>
<p>Put this code in your page instead:</p>
<p>&#60;iframe src="http://app.feeddigest.com/digest3/PUTYOURDIGESTIDHERE.html" width="200" height="300"&#62;&#60;/iframe&#62;</p>
<p>This will let you include the HTML version successfully. Make sure to use the right URL in there (copy and paste from the existing JavaScript call and then change the .js to .html)
</p>]]></description>
					</item>
		<item>
			<title>admin on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-38</link>
			<pubDate>Sat, 10 Mar 2007 13:53:08 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">38@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>In theory all you need to do is paste this in your TypePad template DIRECTLY ABOVE the JavaScript call to FeedDigest:</p>
<p>&#60;style type="text/css"&#62;</p>
<p>#marqueecontainer{<br />
position: relative;<br />
width: 200px; /*marquee width */<br />
height: 200px; /*marquee height */<br />
background-color: white;<br />
overflow: hidden;<br />
border: 3px solid orange;<br />
padding: 2px;<br />
padding-left: 4px;<br />
}</p>
<p>&#60;/style&#62;</p>
<p>&#60;script type="text/javascript"&#62;</p>
<p>/***********************************************<br />
* Cross browser Marquee II- Â© Dynamic Drive (www.dynamicdrive.com)<br />
* This notice MUST stay intact for legal use<br />
* Visit <a href="http://www.dynamicdrive.com/" rel="nofollow">http://www.dynamicdrive.com/</a> for this script and 100s more.<br />
***********************************************/</p>
<p>var delayb4scroll=2000 //Specify initial delay before marquee starts to scroll on page (2000=2 seconds)<br />
var marqueespeed=2 //Specify marquee scroll speed (larger is faster 1-10)<br />
var pauseit=1 //Pause marquee onMousever (0=no. 1=yes)?</p>
<p>////NO NEED TO EDIT BELOW THIS LINE////////////</p>
<p>var copyspeed=marqueespeed<br />
var pausespeed=(pauseit==0)? copyspeed: 0<br />
var actualheight=''</p>
<p>function scrollmarquee(){<br />
if (parseInt(cross_marquee.style.top)&#62;(actualheight*(-1)+8)) //if scroller hasn't reached the end of its height<br />
cross_marquee.style.top=parseInt(cross_marquee.style.top)-copyspeed+"px" //move scroller upwards<br />
else //else, reset to original position<br />
cross_marquee.style.top=parseInt(marqueeheight)+8+"px"<br />
}</p>
<p>function initializemarquee(){<br />
cross_marquee=document.getElementById("vmarquee")<br />
cross_marquee.style.top=0<br />
marqueeheight=document.getElementById("marqueecontainer").offsetHeight<br />
actualheight=cross_marquee.offsetHeight //height of marquee content (much of which is hidden from view)<br />
if (window.opera &#124;&#124; navigator.userAgent.indexOf("Netscape/7")!=-1){ //if Opera or Netscape 7x, add scrollbars to scroll and exit<br />
cross_marquee.style.height=marqueeheight+"px"<br />
cross_marquee.style.overflow="scroll"<br />
return<br />
}<br />
setTimeout('lefttime=setInterval("scrollmarquee()",30)', delayb4scroll)<br />
}</p>
<p>if (window.addEventListener)<br />
window.addEventListener("load", initializemarquee, false)<br />
else if (window.attachEvent)<br />
window.attachEvent("onload", initializemarquee)<br />
else if (document.getElementById)<br />
window.onload=initializemarquee</p>
<p>&#60;/script&#62;</p>
<p>&#60;div id="marqueecontainer" onMouseover="copyspeed=pausespeed" onMouseout="copyspeed=marqueespeed"&#62;<br />
&#60;div id="vmarquee" style="position: absolute; width: 98%;"&#62;</p>
<p>And then this below..</p>
<p>&#60;/div&#62;<br />
&#60;/div&#62;</p>
<p>..</p>
<p>Do not copy this from above in case the forum software has messed it up. However, this code is available to copy and paste from your digest edit panel when using the Scrolling Box template.
</p>]]></description>
					</item>
		<item>
			<title>mashuptown on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-37</link>
			<pubDate>Sat, 10 Mar 2007 12:54:00 +0000</pubDate>
			<dc:creator>mashuptown</dc:creator>
			<guid isPermaLink="false">37@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>admin,</p>
<p>thanks for your help.  don't want to change the template - most likely will f things up for rest of the site.</p>
<p>raising the white flag.  will settle for plain digest.</p>
<p>if anyone has other suggestions lemme know.
</p>]]></description>
					</item>
		<item>
			<title>admin on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-35</link>
			<pubDate>Sat, 10 Mar 2007 12:26:30 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">35@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>You just have the plain digest on your page now, hence no scrolling. You still need to extract the scrolling JavaScript from the scrolling template and place that on to your TypePad template as well (and keep the rest of the template intact).
</p>]]></description>
					</item>
		<item>
			<title>mashuptown on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-33</link>
			<pubDate>Fri, 09 Mar 2007 18:50:21 +0000</pubDate>
			<dc:creator>mashuptown</dc:creator>
			<guid isPermaLink="false">33@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>admin,</p>
<p>thanks for the 411.  put java script into side bar.  it shows up but does not scroll :(<br />
you can see at <a href="http://www.mashuptown.com" rel="nofollow">http://www.mashuptown.com</a>  left column near bottom.</p>
<p>upgraded account anyway.  hope i can get this working.</p>
<p>thx.
</p>]]></description>
					</item>
		<item>
			<title>admin on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-31</link>
			<pubDate>Fri, 09 Mar 2007 15:13:20 +0000</pubDate>
			<dc:creator>admin</dc:creator>
			<guid isPermaLink="false">31@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>mashuptown: Just use our JavaScript code, but don't use the scrolling template. All of the other templates will work okay.</p>
<p>If using a scrolling template is absolutely essential, this is possible to do with some tweaking in the manual view. I think all you'd need to do is copy and paste the JavaScript scroller code from the header template into your actual page template at TypePad, and then remove it from the FeedDigest header.
</p>]]></description>
					</item>
		<item>
			<title>mashuptown on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-28</link>
			<pubDate>Fri, 09 Mar 2007 13:42:22 +0000</pubDate>
			<dc:creator>mashuptown</dc:creator>
			<guid isPermaLink="false">28@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>ya real problems with using this on my blog in a side bar.</p>
<p>don't you have simple html code that will allow someone to use the digest in a sidebar (i use typepad)</p>
<p>thanks.
</p>]]></description>
					</item>
		<item>
			<title>peter on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-19</link>
			<pubDate>Sat, 03 Mar 2007 05:40:03 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">19@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Oh, even if I deleted it from the listing, it doesn't mean it'd break any pre-existing usages :) Template code is stored separately for every digest, so even if we make changes to templates, they don't reflect and change anything you already have going on.</p>
<p>Perhaps adding a note to this template to specify its anti-JS properties will be a better course of action though.
</p>]]></description>
					</item>
		<item>
			<title>dragonscavern on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-18</link>
			<pubDate>Sat, 03 Mar 2007 05:00:07 +0000</pubDate>
			<dc:creator>dragonscavern</dc:creator>
			<guid isPermaLink="false">18@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Please don't drop this template. I'm using the php version on my site; <a href="http://www.dragonscavern.co.uk/start.php" rel="nofollow">http://www.dragonscavern.co.uk/start.php</a> and it's working just fine!
</p>]]></description>
					</item>
		<item>
			<title>peter on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-17</link>
			<pubDate>Fri, 02 Mar 2007 12:41:15 +0000</pubDate>
			<dc:creator>peter</dc:creator>
			<guid isPermaLink="false">17@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>Ah.. I think I'll need to drop that template. I added it in rather a hurry, but you're right.. it's an HTML-only thing unfortunately. The reason is that the effect uses JavaScript to work, but enclosing JavaScript within Javascript breaks it.</p>
<p>Do you have the capability to use the PHP code instead? It's possible to make normal .html files contain PHP so it might be workable :) Otherwise.. in theory you can copy and paste the scroller code separately and tweak your template to just output the digest section and it'd work, but it'll require a little editing.
</p>]]></description>
					</item>
		<item>
			<title>lawilson2 on "Scrolling text box not working"</title>
			<link>https://feed.informer.com/forums/topic.php?id=12#post-16</link>
			<pubDate>Fri, 02 Mar 2007 08:47:34 +0000</pubDate>
			<dc:creator>lawilson2</dc:creator>
			<guid isPermaLink="false">16@https://feed.informer.com/forums/</guid>
			<description><![CDATA[<p>I set up this scrolling text box to test it out on a site.  <a href="http://app.feeddigest.com/digest3/QWW1PPYIV8.html" rel="nofollow">http://app.feeddigest.com/digest3/QWW1PPYIV8.html</a></p>
<p>It works via the link above, but not when the javascript code is embedded into my site.  Is something wrong with this feature?
</p>]]></description>
					</item>

	</channel>
</rss>
