<?xml version="1.0" encoding="UTF-8"?><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"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Slide Show Beta 2</title>
	<atom:link href="http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/feed/" rel="self" type="application/rss+xml" />
	<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/</link>
	<description>Things that Eric A. Meyer, CSS expert, writes about on his personal Web site; it&#039;s largely Web standards and Web technology, but also various bits of culture, politics, personal observations, and other miscellaneous stuff</description>
	<lastBuildDate>Fri, 10 May 2013 11:50:23 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
	<item>
		<title>By: robonoob</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-564516</link>
		<dc:creator>robonoob</dc:creator>
		<pubDate>Tue, 05 Jul 2011 03:21:53 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-564516</guid>
		<description><![CDATA[Thanks Eric for the great S5.

I read the comment about Slippy the HTML Presentation and find your comment (http://seld.be/notes/introducing-slippy-html-presentations). In fact, I used S5 quite a lot well before finding Slippy.

As S5 was released quite a long time ago, I am thinking if there is an updated version available with adoption of HTML5 and jQuery. If not, I may try to follow the S5v2Beta or Slippy and develop on top of that.]]></description>
		<content:encoded><![CDATA[<p>Thanks Eric for the great S5.</p>
<p>I read the comment about Slippy the HTML Presentation and find your comment (<a href="http://seld.be/notes/introducing-slippy-html-presentations" rel="nofollow">http://seld.be/notes/introducing-slippy-html-presentations</a>). In fact, I used S5 quite a lot well before finding Slippy.</p>
<p>As S5 was released quite a long time ago, I am thinking if there is an updated version available with adoption of HTML5 and jQuery. If not, I may try to follow the S5v2Beta or Slippy and develop on top of that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Matthias Ebert</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-7749</link>
		<dc:creator>Matthias Ebert</dc:creator>
		<pubDate>Sat, 29 Oct 2005 17:29:01 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-7749</guid>
		<description><![CDATA[I&#039;ve got Two Change Requests for S5-Slideshows

E-Mail: Matthias.Ebert@gmx.de
Tested on Version: S5.1
 
Recommendations:
1) ALLOW DIRECT LINKS FROM OUTSIDE
2) SLIDE-LOOP toggled on/off by variable

1) ALLOW DIRECT LINKS FROM OUTSIDE
----------------------------------
To allow a direct link from outside to a specific slide,
I recommend to use the usual parameters behind the URL-name,
i.e. s5-demo.html?3
This example presents slide3 in the browser.

HOWTO:
You can simply add the following javascript function to slide.js:

&lt;code&gt;
function getParameter()
{
    var url   = window.location.href;
    parameter = url.split(&quot;?&quot;);
    return parameter[1];
}
&lt;/code&gt;
This function has to be called in the last row of startup()
&lt;code&gt;
function startup()
{
	...
	goTo(getParameter());
}
&lt;/code&gt;

2) SLIDE-LOOPS controlled by the variable loop
----------------------------------------------
Endless slide-loops are importent i.e. on fares, 
where a endless presentation is going on while the crowd walks by

HOWTO:
Two new global variables are needed:
&lt;code&gt;
var loop = true;
var loop_timeout =10000; // im miliseconds 
&lt;/code&gt;
Then add the following javascript function to slide.js:
&lt;code&gt;
function nextSlide()
{
	 var target = snum+1;
	 if (target &gt;= smax) target = 0;
	 var url = window.location.href;
    	 parameter = url.split(&quot;?&quot;);
    	 document.location.href = parameter[0] + &quot;?&quot; + target;
}
&lt;/code&gt;
This function has to be called in:
- the startup(),to be used by slide0 
- the last row of go(), to be used by all other slides
&lt;code&gt;
function startup()
{
	...
	if (loop) setTimeout(&#039;nextSlide()&#039;, loop_timeout); 
	goTo(getParameter());
}
  
function go()
{
	...
	if (loop) setTimeout(&#039;nextSlide()&#039;, loop_timeout); 
}
&lt;/code&gt;
TODO
----
- The variables should be controlled by the user! 
- The user-interaction-menu didn&#039;t work when loop=true.
- The loop didn&#039;t show the sub-steps  ]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve got Two Change Requests for S5-Slideshows</p>
<p>E-Mail: <a href="mailto:Matthias.Ebert@gmx.de">Matthias.Ebert@gmx.de</a><br />
Tested on Version: S5.1</p>
<p>Recommendations:<br />
1) ALLOW DIRECT LINKS FROM OUTSIDE<br />
2) SLIDE-LOOP toggled on/off by variable</p>
<p>1) ALLOW DIRECT LINKS FROM OUTSIDE<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
To allow a direct link from outside to a specific slide,<br />
I recommend to use the usual parameters behind the URL-name,<br />
i.e. s5-demo.html?3<br />
This example presents slide3 in the browser.</p>
<p>HOWTO:<br />
You can simply add the following javascript function to slide.js:</p>
<p><code><br />
function getParameter()<br />
{<br />
    var url   = window.location.href;<br />
    parameter = url.split("?");<br />
    return parameter[1];<br />
}<br />
</code><br />
This function has to be called in the last row of startup()<br />
<code><br />
function startup()<br />
{<br />
	...<br />
	goTo(getParameter());<br />
}<br />
</code></p>
<p>2) SLIDE-LOOPS controlled by the variable loop<br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Endless slide-loops are importent i.e. on fares,<br />
where a endless presentation is going on while the crowd walks by</p>
<p>HOWTO:<br />
Two new global variables are needed:<br />
<code><br />
var loop = true;<br />
var loop_timeout =10000; // im miliseconds<br />
</code><br />
Then add the following javascript function to slide.js:<br />
<code><br />
function nextSlide()<br />
{<br />
	 var target = snum+1;<br />
	 if (target &gt;= smax) target = 0;<br />
	 var url = window.location.href;<br />
    	 parameter = url.split("?");<br />
    	 document.location.href = parameter[0] + "?" + target;<br />
}<br />
</code><br />
This function has to be called in:<br />
- the startup(),to be used by slide0<br />
- the last row of go(), to be used by all other slides<br />
<code><br />
function startup()<br />
{<br />
	...<br />
	if (loop) setTimeout('nextSlide()', loop_timeout);<br />
	goTo(getParameter());<br />
}</p>
<p>function go()<br />
{<br />
	...<br />
	if (loop) setTimeout('nextSlide()', loop_timeout);<br />
}<br />
</code><br />
TODO<br />
&#8212;-<br />
- The variables should be controlled by the user!<br />
- The user-interaction-menu didn&#8217;t work when loop=true.<br />
- The loop didn&#8217;t show the sub-steps  </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Meyer</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-5685</link>
		<dc:creator>Eric Meyer</dc:creator>
		<pubDate>Sun, 29 May 2005 19:13:42 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-5685</guid>
		<description><![CDATA[Hi Jeroen-- type-number-to-jump is already in the latest version of S5; this post is very old and doesn&#039;t come close to representing the latest code.  Most if not all of the variable declarations were fixed as well.  See http://meyerweb.com/eric/thoughts/2005/02/03/s5-11b5/ for the latest beta version of S5 1.1, and http://meyerweb.com/eric/thoughts/category/tech/s5/ for all posts referncing S5.]]></description>
		<content:encoded><![CDATA[<p>Hi Jeroen&#8211; type-number-to-jump is already in the latest version of S5; this post is very old and doesn&#8217;t come close to representing the latest code.  Most if not all of the variable declarations were fixed as well.  See <a href="http://meyerweb.com/eric/thoughts/2005/02/03/s5-11b5/" rel="nofollow">http://meyerweb.com/eric/thoughts/2005/02/03/s5-11b5/</a> for the latest beta version of S5 1.1, and <a href="http://meyerweb.com/eric/thoughts/category/tech/s5/" rel="nofollow">http://meyerweb.com/eric/thoughts/category/tech/s5/</a> for all posts referncing S5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeroen van der Vegt</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-5683</link>
		<dc:creator>Jeroen van der Vegt</dc:creator>
		<pubDate>Sun, 29 May 2005 18:09:27 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-5683</guid>
		<description><![CDATA[Hi, this seems to have evolved to something quite usable, but development seems halted. Before I make any contributions, I&#039;d rather know if Eric still feels like updating the program (I would like adding functional (b)lack/(w)hite keys, and #56).

I also found that variable &#039;n&#039; or &#039;i&#039; is often not declared properly, and the function names could use an update (function names starting with a capital, a function called &#039;showHide&#039;....)]]></description>
		<content:encoded><![CDATA[<p>Hi, this seems to have evolved to something quite usable, but development seems halted. Before I make any contributions, I&#8217;d rather know if Eric still feels like updating the program (I would like adding functional (b)lack/(w)hite keys, and #56).</p>
<p>I also found that variable &#8216;n&#8217; or &#8216;i&#8217; is often not declared properly, and the function names could use an update (function names starting with a capital, a function called &#8216;showHide&#8217;&#8230;.)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Everman</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-5193</link>
		<dc:creator>Eric Everman</dc:creator>
		<pubDate>Tue, 08 Mar 2005 17:24:32 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-5193</guid>
		<description><![CDATA[I&#039;ve noticed that in the current version (as of March 2005), clicking a slide in Firefox will cause the &#039;blinking cursor&#039; to remain on the screen.  With large font sizes, this is a REALLY BIG blinking cursor which means the clicking is not a usable way to go to the next slide.

Has anyone come up with a fix for this?

Thanks

--Also, is there a more appropriate user&#039;s discussion list? --]]></description>
		<content:encoded><![CDATA[<p>I&#8217;ve noticed that in the current version (as of March 2005), clicking a slide in Firefox will cause the &#8216;blinking cursor&#8217; to remain on the screen.  With large font sizes, this is a REALLY BIG blinking cursor which means the clicking is not a usable way to go to the next slide.</p>
<p>Has anyone come up with a fix for this?</p>
<p>Thanks</p>
<p>&#8211;Also, is there a more appropriate user&#8217;s discussion list? &#8211;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Johan Steenkamp</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-4365</link>
		<dc:creator>Johan Steenkamp</dc:creator>
		<pubDate>Mon, 10 Jan 2005 03:23:05 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-4365</guid>
		<description><![CDATA[1. I added a cookie to retain the current slide. I found this useful in cases where you leave the presentation to visit another site or link in a slide that does not open a new window. Hitting your browser back button would take you back to the start of the preso - the cookie solves that problem. The cookie is set to expire within 1 dayso you can take a lunch break and pick up where you left off :-)

http://www.assetnow.com/anx/index.cfm/1,8,106,html

2. Also made a variation on the S5 script to allow paged content. Divide a long document into div&#039;s with class=&quot;page&quot; and it display one page at a time like the slide show.

http://www.assetnow.com/anx/index.cfm/1,8,167,html]]></description>
		<content:encoded><![CDATA[<p>1. I added a cookie to retain the current slide. I found this useful in cases where you leave the presentation to visit another site or link in a slide that does not open a new window. Hitting your browser back button would take you back to the start of the preso &#8211; the cookie solves that problem. The cookie is set to expire within 1 dayso you can take a lunch break and pick up where you left off :-)</p>
<p><a href="http://www.assetnow.com/anx/index.cfm/1,8,106,html" rel="nofollow">http://www.assetnow.com/anx/index.cfm/1,8,106,html</a></p>
<p>2. Also made a variation on the S5 script to allow paged content. Divide a long document into div&#8217;s with class=&#8221;page&#8221; and it display one page at a time like the slide show.</p>
<p><a href="http://www.assetnow.com/anx/index.cfm/1,8,167,html" rel="nofollow">http://www.assetnow.com/anx/index.cfm/1,8,167,html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jon Malachowski</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1994</link>
		<dc:creator>Jon Malachowski</dc:creator>
		<pubDate>Mon, 22 Nov 2004 03:05:02 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1994</guid>
		<description><![CDATA[Thank you so much for this.  I am an Engineer at George Mason and I think this is a great solution to basic presentations.  I made one for class and the professor was impressed.  I left s^5 on the footer for you! If anyone would like to see: http://mason.gmu.edu/~jmalacho/prsp.html]]></description>
		<content:encoded><![CDATA[<p>Thank you so much for this.  I am an Engineer at George Mason and I think this is a great solution to basic presentations.  I made one for class and the professor was impressed.  I left s^5 on the footer for you! If anyone would like to see: <a href="http://mason.gmu.edu/~jmalacho/prsp.html" rel="nofollow">http://mason.gmu.edu/~jmalacho/prsp.html</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce D'Arcus</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1358</link>
		<dc:creator>Bruce D'Arcus</dc:creator>
		<pubDate>Fri, 22 Oct 2004 13:01:49 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1358</guid>
		<description><![CDATA[Also, I think I&#039;d like to remove the images from the outline view, but am not sure how to do that.]]></description>
		<content:encoded><![CDATA[<p>Also, I think I&#8217;d like to remove the images from the outline view, but am not sure how to do that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Bruce D'Arcus</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1357</link>
		<dc:creator>Bruce D'Arcus</dc:creator>
		<pubDate>Fri, 22 Oct 2004 12:48:10 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1357</guid>
		<description><![CDATA[I&#039;m trying to work out how best to deal with image inclusion via CSS.  I&#039;ve wrapped each image in a div with an &quot;image&quot; class.  Any suggestions on how to best modify my definition to properly handle sizing?  I&#039;m tranforming via XSLT, so don&#039;t want to hard code sizing information in the img elements.  I just want to constrain the div to a certain proportion of the &quot;slide.&quot;

div.image {float: right;}]]></description>
		<content:encoded><![CDATA[<p>I&#8217;m trying to work out how best to deal with image inclusion via CSS.  I&#8217;ve wrapped each image in a div with an &#8220;image&#8221; class.  Any suggestions on how to best modify my definition to properly handle sizing?  I&#8217;m tranforming via XSLT, so don&#8217;t want to hard code sizing information in the img elements.  I just want to constrain the div to a certain proportion of the &#8220;slide.&#8221;</p>
<p>div.image {float: right;}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: headsfromspace</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1244</link>
		<dc:creator>headsfromspace</dc:creator>
		<pubDate>Sat, 09 Oct 2004 17:57:07 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1244</guid>
		<description><![CDATA[Eric ::

re: #59

Thanks for the tip.  I did play around with assigning display: none to the div control tag but found the arrows and toggle switch disappeared too--I&#039;d like those to display. I&#039;ll fool around with it some more but if you have an idea of how to get just the linkbox to not display I&#039;d appreciate it. 

-heads]]></description>
		<content:encoded><![CDATA[<p>Eric ::</p>
<p>re: #59</p>
<p>Thanks for the tip.  I did play around with assigning display: none to the div control tag but found the arrows and toggle switch disappeared too&#8211;I&#8217;d like those to display. I&#8217;ll fool around with it some more but if you have an idea of how to get just the linkbox to not display I&#8217;d appreciate it. </p>
<p>-heads</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael Guitton</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1206</link>
		<dc:creator>Michael Guitton</dc:creator>
		<pubDate>Thu, 07 Oct 2004 10:43:05 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1206</guid>
		<description><![CDATA[Apologies for duplicate comment entries in #47, #50 and #51. When I posted #47 using Camino, this browser freezed (!) and when I visited this page subsequently using Safari and IE, my comment was nowhere to be seen... making me think the previous POST request did not succeed.]]></description>
		<content:encoded><![CDATA[<p>Apologies for duplicate comment entries in #47, #50 and #51. When I posted #47 using Camino, this browser freezed (!) and when I visited this page subsequently using Safari and IE, my comment was nowhere to be seen&#8230; making me think the previous POST request did not succeed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1205</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Thu, 07 Oct 2004 09:06:53 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1205</guid>
		<description><![CDATA[I see, sorry, you&#039;re right. 

( i have hade in mind just the technical point of view )]]></description>
		<content:encoded><![CDATA[<p>I see, sorry, you&#8217;re right. </p>
<p>( i have hade in mind just the technical point of view )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1203</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Thu, 07 Oct 2004 00:04:09 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1203</guid>
		<description><![CDATA[&lt;blockquote&gt;
The content of a slide must be enclosed by a div with a class=&quot;slide&quot; attribute and a unique id=&quot;slide[counter]&quot; where the [counter] is replaced by the slide number. The id is required to be able to link to specific slides in a presentation.
&lt;/blockquote&gt;
&lt;p&gt;
From &lt;a href=&quot;http://my.opera.com/community/dev/operashow/documentation/doc_fileformat.html&quot;&gt;Opera Show Format 1.0 documentation&lt;/a&gt;.  In the format I&#039;ve created, the slide IDs are dynamically assigned instead of placed in the XHTML, but they use exactly the same format (slide&lt;i&gt;nn&lt;/i&gt;).
&lt;/p&gt;
&lt;p&gt;
So taking out those divs would, in fact, make the format more incompatible with OSF 1.0.
&lt;/p&gt;]]></description>
		<content:encoded><![CDATA[<blockquote><p>
The content of a slide must be enclosed by a div with a class=&#8221;slide&#8221; attribute and a unique id=&#8221;slide[counter]&#8221; where the [counter] is replaced by the slide number. The id is required to be able to link to specific slides in a presentation.
</p></blockquote>
<p>
From <a href="http://my.opera.com/community/dev/operashow/documentation/doc_fileformat.html">Opera Show Format 1.0 documentation</a>.  In the format I&#8217;ve created, the slide IDs are dynamically assigned instead of placed in the XHTML, but they use exactly the same format (slide<i>nn</i>).
</p>
<p>
So taking out those divs would, in fact, make the format more incompatible with OSF 1.0.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: christian</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1202</link>
		<dc:creator>christian</dc:creator>
		<pubDate>Wed, 06 Oct 2004 23:31:07 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1202</guid>
		<description><![CDATA[It does not break the OSF 1.0, actually the idea was to make it more similar to it (in the projection css: body&gt;h1, body&gt;h2 {page-break-before: always;} and in the js: var slides=[&#8217;h1&#8242;,&#8217;h2&#8242;]; ). You can test it ( &lt;a href=&#039;http://aleto.ch/test/slide2.html&#039;&gt;still here&lt;/a&gt; ), with js disabled it does work as normal OSF in projection mode ( little problem with the test image, which is a little bit to high, and the whole thing is still just a sketch ) and with js enabled it does work on the same way as in the Fox and in ie.

( i think i could be possible to &#039; parse &#039; the projection css for the Fox and for ie, so that it would work with such a js module with no more additional adaptions, but perhaps a little bit to much &#039; music &#039; )

But it&#039;s more for personal interests, your current solution is sure ok. 

( and i am a Opera user, so i would never work contra my browser :) )]]></description>
		<content:encoded><![CDATA[<p>It does not break the OSF 1.0, actually the idea was to make it more similar to it (in the projection css: body>h1, body>h2 {page-break-before: always;} and in the js: var slides=[&#8217;h1&#8242;,&#8217;h2&#8242;]; ). You can test it ( <a href='http://aleto.ch/test/slide2.html'>still here</a> ), with js disabled it does work as normal OSF in projection mode ( little problem with the test image, which is a little bit to high, and the whole thing is still just a sketch ) and with js enabled it does work on the same way as in the Fox and in ie.</p>
<p>( i think i could be possible to &#8216; parse &#8216; the projection css for the Fox and for ie, so that it would work with such a js module with no more additional adaptions, but perhaps a little bit to much &#8216; music &#8216; )</p>
<p>But it&#8217;s more for personal interests, your current solution is sure ok. </p>
<p>( and i am a Opera user, so i would never work contra my browser :) )</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric</title>
		<link>http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1200</link>
		<dc:creator>Eric</dc:creator>
		<pubDate>Wed, 06 Oct 2004 22:09:36 +0000</pubDate>
		<guid isPermaLink="false">http://meyerweb.com/eric/thoughts/2004/10/02/slide-show-beta-2/#comment-1200</guid>
		<description><![CDATA[&lt;a href=&quot;#comment-1192&quot;&gt;Val&lt;/a&gt;: I would say that this system, like OSF, is something that SlideML could use as a target format.  In other words, someone could create a SlideML document and then run a transform to turn it into OSF or this format.  There is certainly overlap in terms of intended use, but that doesn&#039;t strike me as being a problem.

&lt;a href=&quot;#comment-1197&quot;&gt;Mikael&lt;/a&gt;: That would be nice, but won&#039;t be part of the initial release.  I&#039;ll have to look at doing that in a later version.

&lt;a href=&quot;#comment-1198&quot;&gt;Christian&lt;/a&gt;: My original Opera Show files did exactly that, only without the JavaScript.  I&#039;ve instituted the &lt;code&gt;class=&quot;slide&quot;&lt;/code&gt; constructs because it&#039;s more compatible with OSF 1.0.  Okay, to be totally honest, originally I instituted them because it was easier to process the DOM structure that way, but at this point they&#039;re staying in due to OSF 1.0 compatibility.

&lt;a href=&quot;#comment-1199&quot;&gt;Heads&lt;/a&gt;: &lt;code&gt;div#controls {display: none !important;}&lt;/code&gt; or a rule to that effect.  Alternatively, &lt;code&gt;div#controls {position: absolute; top: -1000em;}&lt;/code&gt;.]]></description>
		<content:encoded><![CDATA[<p><a href="#comment-1192">Val</a>: I would say that this system, like OSF, is something that SlideML could use as a target format.  In other words, someone could create a SlideML document and then run a transform to turn it into OSF or this format.  There is certainly overlap in terms of intended use, but that doesn&#8217;t strike me as being a problem.</p>
<p><a href="#comment-1197">Mikael</a>: That would be nice, but won&#8217;t be part of the initial release.  I&#8217;ll have to look at doing that in a later version.</p>
<p><a href="#comment-1198">Christian</a>: My original Opera Show files did exactly that, only without the JavaScript.  I&#8217;ve instituted the <code>class="slide"</code> constructs because it&#8217;s more compatible with OSF 1.0.  Okay, to be totally honest, originally I instituted them because it was easier to process the DOM structure that way, but at this point they&#8217;re staying in due to OSF 1.0 compatibility.</p>
<p><a href="#comment-1199">Heads</a>: <code>div#controls {display: none !important;}</code> or a rule to that effect.  Alternatively, <code>div#controls {position: absolute; top: -1000em;}</code>.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->