<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Leaving the cave</title>
	<atom:link href="http://blog.dblancquaert.be/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.dblancquaert.be</link>
	<description>About learning, technology and raising kids…</description>
	<lastBuildDate>Mon, 20 Feb 2012 22:03:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Put your #AdobeCaptivate animation in the middle of the page</title>
		<link>http://blog.dblancquaert.be/2012/01/put-your-adobecaptivate-animation-in-the-middle-of-the-page/</link>
		<comments>http://blog.dblancquaert.be/2012/01/put-your-adobecaptivate-animation-in-the-middle-of-the-page/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 20:16:40 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Adobe Captivate]]></category>
		<category><![CDATA[E-learning]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/?p=162</guid>
		<description><![CDATA[When you publish a Captivate project to HTML, the animation is always at the top of the page. Let&#8217;s say you want the animation to be in the center of the screen, e.g. because the animation will run fullscreen. How &#8230; <a href="http://blog.dblancquaert.be/2012/01/put-your-adobecaptivate-animation-in-the-middle-of-the-page/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>When you publish a Captivate project to HTML, the animation is always at the top of the page.</p>
<p>Let&#8217;s say you want the animation to be in the center of the screen, e.g. because the animation will run fullscreen. How can you do this?</p>
<p>You just have to change some of the HTML in the published .htm file.</p>
<p>This is the business part of the default htm file for a project of 1024*768 (lines 17 and 18 in HTML output, lines 212 and 213 in SCORM 1.2 output):</p>
<p style="padding-left: 30px;"><span style="color: #000080;"><code>&lt;div id="CaptivateContent"&gt;&amp;nbsp;<br />
&lt;/div&gt;</code></span></p>
<p><code></code>The only thing you need to do is change the style of the &lt;div&gt; tag like this (found it <a href="http://tutorialzine.com/2010/03/centering-div-vertically-and-horizontally/">here</a>):</p>
<p style="padding-left: 30px;"><span style="color: #000080;"><code>&lt;div id="CaptivateContent" style="position:absolute; top:50%; left:50%; margin-top:-384px; margin-left:-512px;"&gt;&amp;nbsp;<br />
&lt;/div&gt;</code></span></p>
<p><code></code>Let&#8217;s take a look at what this piece of code does.</p>
<p>1. Position: absolute<br />
This is used to detach the div from the rest of the page content.</p>
<p>2. Top:50% and left:50%<br />
This code sets the top left corner of the animation in the middle of the screen.</p>
<p>3. Margin-top:-384px and margin-left:-512px<br />
We change the position of the div with negative margins half the amount of the size of the swf.</p>
<p>Let&#8217;s take another example:</p>
<p style="padding-left: 30px;"><span style="color: #000080;"><code>&lt;div id="CaptivateContent" style="position:absolute; top:50%; left:50%; margin-top:-300px; margin-left:-400px;"&gt;&amp;nbsp;<br />
&lt;/div&gt;</code></span></p>
<p><code></code>Can you guess for what size of project the code above is?</p>
<p>Are all of your projects the same size and do you always want them centered?</p>
<p>For the HTML output, change the file &#8220;Standard.htm&#8221; in this (default Win7 64bit) location: C:\Program Files (x86)\Adobe\Adobe Captivate 5.5\Templates\Publish. This file is used as a template when publishing the project. All projects published after you changed this file, will have the changed code in it.</p>
<p>Easy, if you know it.</p>
<p>BTW, the project site of the last example is 800*600. I guess you figured it out by now.</p>
<div class='ez_cc_license_block'></div><div class='ez_cc_license_block'></div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2012/01/put-your-adobecaptivate-animation-in-the-middle-of-the-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Touch interface and games &#8211; Vice Versa</title>
		<link>http://blog.dblancquaert.be/2012/01/touch-interface-and-games-vice-versa/</link>
		<comments>http://blog.dblancquaert.be/2012/01/touch-interface-and-games-vice-versa/#comments</comments>
		<pubDate>Wed, 18 Jan 2012 21:11:41 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/?p=151</guid>
		<description><![CDATA[As discussed in a previous blogpost, the interface is important for a game. I gave an example of a PC game that was recoded for an iOS device. This time it&#8217;s the other way around. If you are familiar with &#8230; <a href="http://blog.dblancquaert.be/2012/01/touch-interface-and-games-vice-versa/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>As discussed in a <a title="Touch interface and games" href="http://blog.dblancquaert.be/2011/12/touch-interface-and-games/">previous blogpost</a>, the interface is important for a game. I gave an example of a PC game that was recoded for an iOS device.</p>
<p>This time it&#8217;s the other way around. If you are familiar with iOS games, you certainly know Angry Birds. Something similar is the game Cut The Rope (<a href="http://itunes.apple.com/nl/app/cut-the-rope/id380293530?mt=8" target="_blank">iTunes Link</a>). Since a few weeks, it is available as a browser game, completely written in HTML5: <a href="http://www.cuttherope.ie/" target="_blank">http://www.cuttherope.ie/</a> (I tried it in IE9 and Chrome).</p>
<p>This game has been around for a while. If you do not know it, a look at the trailer will learn you a lot more: <a href="http://youtu.be/8xPUdFaraoQ" target="_blank">http://youtu.be/8xPUdFaraoQ</a>.</p>
<p>Having played Cut the Rope from time to time, I really enjoy it. The only thing that can be frustrating is that sometimes I am not fast enough. Yes, you read that correctly, not fast enough. Even with TEN fingers.</p>
<p>If you are from time to time not fast enough with ten fingers, how can you be fast enough with one mousepointer in the browser version?</p>
<p>The developers are no idiots, and that&#8217;s probably one of the reasons why some levels from the iOS app are not available in the browser version.</p>
<p>Let&#8217;s take a look at two identical levels in the two versions:</p>
<p><a href="http://blog.dblancquaert.be/wp-content/uploads/CtR_iOS.png"><img class="alignleft size-medium wp-image-153" title="CtR_iOS" src="http://blog.dblancquaert.be/wp-content/uploads/CtR_iOS-225x300.png" alt="" width="225" height="300" /></a><a href="http://blog.dblancquaert.be/wp-content/uploads/CtR_IE.png"><img class="alignright size-medium wp-image-152" title="CtR_IE" src="http://blog.dblancquaert.be/wp-content/uploads/CtR_IE-300x202.png" alt="" width="300" height="202" /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>As you can see, there is no real difference in look.</p>
<p>The difference is the interface. This game works great if you can control it with your fingers, and cut the ropes, or push the balloons. When using a mousepointer, you lose all the feeling.</p>
<p>On the plus side, the browser version is a great demo for the capabilities of HTML5.</p>
<div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2012/01/touch-interface-and-games-vice-versa/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2012/01/touch-interface-and-games-vice-versa/" rel="dct:source">blog.dblancquaert.be</a>.</div><div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2012/01/touch-interface-and-games-vice-versa/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2012/01/touch-interface-and-games-vice-versa/" rel="dct:source">blog.dblancquaert.be</a>.</div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2012/01/touch-interface-and-games-vice-versa/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Touch interface and games</title>
		<link>http://blog.dblancquaert.be/2011/12/touch-interface-and-games/</link>
		<comments>http://blog.dblancquaert.be/2011/12/touch-interface-and-games/#comments</comments>
		<pubDate>Wed, 28 Dec 2011 20:56:34 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Education]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/?p=142</guid>
		<description><![CDATA[I use my iPad for casual gaming, and discovered something annoying. IMHO, it is not possible to transfer all games to a touch interface. Take these two examples. 1. Bejeweled Blitz (iTunes App Store link) Most of you are familiar &#8230; <a href="http://blog.dblancquaert.be/2011/12/touch-interface-and-games/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I use my iPad for casual gaming, and discovered something annoying.</p>
<p>IMHO, it is not possible to transfer all games to a touch interface. Take these two examples.</p>
<p>1. Bejeweled Blitz (<a href="http://itunes.apple.com/be/app/bejeweled-blitz/id469960709?l=nl&amp;mt=8" target="_blank">iTunes App Store link</a>)</p>
<p>Most of you are familiar with the concept of this game, but for those who are not: you must score as many points as possible within 60 seconds by aligning three or more identical gems. You can only switch the position of two adjacent gems, if one of those gems will form a line of three or more. You tap the gems to select them.</p>
<p>This is the interface:</p>
<p><a href="http://blog.dblancquaert.be/wp-content/uploads/Bejeweled-Blitz-e1325105392988.jpg"><img class="aligncenter size-medium wp-image-146" title="Bejeweled Blitz" src="http://blog.dblancquaert.be/wp-content/uploads/Bejeweled-Blitz-225x300.jpg" alt="" width="225" height="300" /></a></p>
<p>&nbsp;</p>
<p>2. Diamond Dash (<a href="http://itunes.apple.com/be/app/diamond-dash/id461402734?l=nl&amp;mt=8" target="_blank">iTunes App Store link</a>)</p>
<p>A very similar game. Within 60 seconds, you must score as many points as possible by removing three or more adjacent blocks. In order to remove the blocks, you need to tap on them.</p>
<p>This is the &#8211; rather equal &#8211; interface:</p>
<p><a href="http://blog.dblancquaert.be/wp-content/uploads/Diamond-Dash-e1325105463674.jpg"><img class="aligncenter size-medium wp-image-147" title="Diamond Dash" src="http://blog.dblancquaert.be/wp-content/uploads/Diamond-Dash-300x225.jpg" alt="" width="300" height="225" /></a></p>
<p>Here is the issue I face: being a lefty (and proud of it), and tapping along the right side of my iPad screen, I cannot see the left side of the screen. How can I play a game like that, when I cannot see half the interface?</p>
<p>Is it me? Should I use both my hands? Being in my early thirties, I am not yet trained to do that.</p>
<p>Or are the game developers jumping on the iOS cart, because it still is the mobile operating system with the largest user base?</p>
<p>Whatever the reason, it is not a given that everything that works on desktop computer with a mouse, can work as well on a touchscreen device. Just like learning content: because a presentation works in a classroom environment, it will not (a priori) work in standalone mode with a voiceover&#8230;</p>
<p>&nbsp;</p>
<div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/12/touch-interface-and-games/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/12/touch-interface-and-games/" rel="dct:source">blog.dblancquaert.be</a>.</div><div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/12/touch-interface-and-games/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/12/touch-interface-and-games/" rel="dct:source">blog.dblancquaert.be</a>.</div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2011/12/touch-interface-and-games/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hide and seek</title>
		<link>http://blog.dblancquaert.be/2011/08/hide-and-seek/</link>
		<comments>http://blog.dblancquaert.be/2011/08/hide-and-seek/#comments</comments>
		<pubDate>Sat, 20 Aug 2011 19:41:58 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Education]]></category>
		<category><![CDATA[evolution]]></category>
		<category><![CDATA[kids]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/2011/08/hide-and-seek/</guid>
		<description><![CDATA[Ever since my kids were born, I wondered how they would perform in the hide and seek game. I now have a 2y and a 4y old. You can spot them both in the picture below. And there are some &#8230; <a href="http://blog.dblancquaert.be/2011/08/hide-and-seek/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ever since my kids were born, I wondered how they would perform in the hide and seek game. I now have a 2y and a 4y old. You can spot them both in the picture below.</p>
<p><a href="http://blog.dblancquaert.be/wp-content/uploads/20082011515.jpg"><img class="aligncenter size-large wp-image-136" title="20082011515" src="http://blog.dblancquaert.be/wp-content/uploads/20082011515-1024x768.jpg" alt="" width="620" height="465" /></a></p>
<p>And there are some things I noticed:<br />
The 2y old does not get it (neither did the older one when she was 2), but learns fast by imitating his sister.<br />
The 4y old starts to get it, but does not yet realise that her hiding place must be a secret. When she is hidden, she do is invisible for me (most of the time, not when she hides behind a tree). But she must always make some noice, like saying &#8220;I am here&#8221;.<br />
And she understands the concept of the game: someone counts, the others hide, and then the searching starts.<br />
Nevertheless, it is a great game to play regularly. Each time we play it, she learns a new hiding place, and she even find new ones.<br />
Kids are so great!</p>
<div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/08/hide-and-seek/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/08/hide-and-seek/" rel="dct:source">blog.dblancquaert.be</a>.</div><div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/08/hide-and-seek/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/08/hide-and-seek/" rel="dct:source">blog.dblancquaert.be</a>.</div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2011/08/hide-and-seek/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>One week of Google+</title>
		<link>http://blog.dblancquaert.be/2011/07/one-week-of-google/</link>
		<comments>http://blog.dblancquaert.be/2011/07/one-week-of-google/#comments</comments>
		<pubDate>Mon, 25 Jul 2011 18:58:02 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/?p=130</guid>
		<description><![CDATA[It has been more than a week since I&#8217;ve been using Google+. Here are my findings so far: Circles are a great concept, but the more you think about it, the more difficult it gets. It has to do with &#8230; <a href="http://blog.dblancquaert.be/2011/07/one-week-of-google/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>It has been more than a week since I&#8217;ve been using Google+.</p>
<p>Here are my findings so far:</p>
<ul>
<li>Circles are a great concept, but the more you think about it, the more difficult it gets. It has to do with the whole platform. I&#8217;ll come to that in a sec.</li>
<li>If you want something in your stream, you must follow enough people. This certainly is caused by the the fact that there are not enough users on G+ from e.g. my Twitter community.</li>
<li>I really like the idea to share stuff with circles, like my family. The problem here is that G+ is &#8211; in it&#8217;s current form &#8211; way too difficult for them. I am by far the only geek in our (small) family. It would be great to organise hangouts with my aunts in France and the US, e.g.</li>
<li>This is the first platform where I can target my shares based on language, i.e. I have a Dutch circle to post in Dutch. When I post in English, I posted publicly or to theme circles.</li>
<li>There seems to be much more engagement, which is a good thing.</li>
<li>There are a few annoying things currently, like the order of posts in the timeline, the lack of a default circle for your stream, the diarrhea of comments on some posts (not mine),&#8230; Some of those things can already be solved with browser extensions, but that can easily become a myriad of plugins and settings. I am certain this platform will grow out of these annoyances.</li>
</ul>
<p>Google+ first reminded me of Twitter, but I got it all wrong. I heard <a href="http://twitter.com/jeffjarvis" target="_blank">@JeffJarvis</a> discuss  this on <a href="http://twit.tv/twig" target="_blank">TWiG</a>: it is a sharing platform. In my opinion, Twitter was as well. But there is a huge difference.<br />
When using Twitter, you share everything publicly, or private. This means, if you follow people, you can read everything they post. On Google+, on the contrary, you van only read public posts of the people your following, except if they put you in a circle. Furthermore, you have no clue in what circle others put you. This implies that you do not know what your followers share with you&#8230;</p>
<p>This bring me to the ambiguity of circles. You can organize them to share (push content to), and/or to read them in a stream (pull content from). Is it me or do you need different circles to achieve both functionalities? If so, you would have too much circles to manage (say 8 circles for 200 people).</p>
<p>I can certainly see the value of this net platform, but it does not have a purpose yet. If I compare with Twitter, it took about a year before I discovered the value of it. So I will give it more time, and see how it goes&#8230;</p>
<p>Feel free to give your comments, opinions,&#8230;</p>
<div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/07/one-week-of-google/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/07/one-week-of-google/" rel="dct:source">blog.dblancquaert.be</a>.</div><div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/07/one-week-of-google/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/07/one-week-of-google/" rel="dct:source">blog.dblancquaert.be</a>.</div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2011/07/one-week-of-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>G+ again</title>
		<link>http://blog.dblancquaert.be/2011/07/g-again/</link>
		<comments>http://blog.dblancquaert.be/2011/07/g-again/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 19:24:34 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/?p=121</guid>
		<description><![CDATA[I just gained access to Google+. From now on I will use it for a week, and write down my thoughts on the use of it. You can find me here: gplus.to/dblancquaert Just yesterday, I had the idea to use &#8230; <a href="http://blog.dblancquaert.be/2011/07/g-again/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>I just gained access to Google+. From now on I will use it for a week, and write down my thoughts on the use of it. You can find me here: <a href="http://gplus.to/dblancquaert">gplus.to/dblancquaert</a></p>
<p>Just yesterday, I had the idea to use it as a your personal home page, and perhaps as my own PLN.</p>
<p>Let&#8217;s see in about a week.</p>
<p>Oh, and if you want an invite, you&#8217;ll find me <img src='http://blog.dblancquaert.be/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> .</p>
<div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/07/g-again/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/07/g-again/" rel="dct:source">blog.dblancquaert.be</a>.</div><div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/07/g-again/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/07/g-again/" rel="dct:source">blog.dblancquaert.be</a>.</div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2011/07/g-again/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>XML won’t import #AdobeCaptivate</title>
		<link>http://blog.dblancquaert.be/2011/06/xml-won%e2%80%99t-import-adobecaptivate/</link>
		<comments>http://blog.dblancquaert.be/2011/06/xml-won%e2%80%99t-import-adobecaptivate/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 14:32:15 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[E-learning]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[AdobeCaptivate]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/?p=115</guid>
		<description><![CDATA[In Captivate, you&#8217;ve exported an XML file and got it translated. When importing the translation, Captivate tells you everything went well, but in fact, it didn&#8217;t. How come? The reason for this is the fact that an (invisible) special character &#8230; <a href="http://blog.dblancquaert.be/2011/06/xml-won%e2%80%99t-import-adobecaptivate/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>In Captivate, you&#8217;ve exported an XML file and got it translated. When importing the translation, Captivate tells you everything went well, but in fact, it didn&#8217;t. How come?</p>
<p>The reason for this is the fact that an (invisible) special character is used in a &#8216;Text Caption&#8217;, like e.g. a bullet point or a soft return.</p>
<p>This special character was possibly copied from Word or some kind of other word processor. More often than not, you copy some (invisible) code.</p>
<p>How can you solve this?</p>
<p>Execute these steps to remove the special characters:</p>
<ol style="margin-left: 38pt;">
<li>Open the XML file in a simple text editor (I always use <a href="http://notepad-plus-plus.org/">Notepad++</a>).</li>
<li>Scroll through the text until you see this:<br />
<img src="http://blog.dblancquaert.be/wp-content/uploads/061711_1432_XMLwontimpo1.png" alt="" /></li>
<li>Select the code &#8220;ETX&#8221;.</li>
<li>In the menu bar, select <strong>Search &gt; Replace</strong>.</li>
<li>The in step 3 selected code (e.g. a square) is already copied in the <strong>Find What</strong> field.</li>
<li>Leave the <strong>Replace with</strong> field empty.</li>
<li>Click the button <strong>Replace All</strong>.</li>
<li>Save the XML file.</li>
<li>Try the import again.<br />
If the file will not import, scroll a second time through the text, there could be another special character in the text.</li>
</ol>
<p>Good luck!</p>
<div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/06/xml-won%e2%80%99t-import-adobecaptivate/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/06/xml-won%e2%80%99t-import-adobecaptivate/" rel="dct:source">blog.dblancquaert.be</a>.</div><div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/06/xml-won%e2%80%99t-import-adobecaptivate/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/06/xml-won%e2%80%99t-import-adobecaptivate/" rel="dct:source">blog.dblancquaert.be</a>.</div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2011/06/xml-won%e2%80%99t-import-adobecaptivate/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Theme</title>
		<link>http://blog.dblancquaert.be/2011/06/new-theme/</link>
		<comments>http://blog.dblancquaert.be/2011/06/new-theme/#comments</comments>
		<pubDate>Fri, 10 Jun 2011 19:27:10 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/?p=111</guid>
		<description><![CDATA[Today I changed the theme on my blog, and added a few bells and whistles. Do you like it? Leaving the cave by Dieter is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License.Based on a work at blog.dblancquaert.be.]]></description>
			<content:encoded><![CDATA[<p>Today I changed the theme on my blog, and added a few bells and whistles.</p>
<p>Do you like it?</p>
<div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/06/new-theme/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/06/new-theme/" rel="dct:source">blog.dblancquaert.be</a>.</div><div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/06/new-theme/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/06/new-theme/" rel="dct:source">blog.dblancquaert.be</a>.</div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2011/06/new-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Progress indicator #AdobeCaptivate 5</title>
		<link>http://blog.dblancquaert.be/2011/05/progress-indicator-adobecaptivate-5/</link>
		<comments>http://blog.dblancquaert.be/2011/05/progress-indicator-adobecaptivate-5/#comments</comments>
		<pubDate>Sat, 14 May 2011 20:03:26 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[E-learning]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[AdobeCaptivate]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/?p=100</guid>
		<description><![CDATA[This post is a comment on @lilybiri&#8217;s article Customized Progress Indicator. In this article she explains how to use advanced actions to create a custom progress indicator for Quizzes. Having needed this functionality, I had a few remarks, and an issue &#8230; <a href="http://blog.dblancquaert.be/2011/05/progress-indicator-adobecaptivate-5/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>This post is a comment on @lilybiri&#8217;s article <a href="http://lilybiri.posterous.com/customized-progress-indicator">Customized  Progress Indicator</a>. In this article she explains how to use advanced actions to create a custom progress indicator for Quizzes.</p>
<p>Having needed this functionality, I had a few remarks, and an issue with it.</p>
<p>Let&#8217;s start off with the remark: the whole process looked fairly complex for something simple like a progress indicator. This is not an offense, it worked great. However a colleague of mine had an issue with it: to give feedback on a HotSpot question, he added a slide with the correct answer. In that case, the method described in the referenced article, cannot be used, because of the use of the system variable &#8216;rdinfoCurrentSlide&#8217;.</p>
<p>So I created another, more easy solution:</p>
<ol>
<li>Create a user variable v_Q_Nr to store the number of the question. Make sure the value is 0 (zero).</li>
<li>Create an advanced action like this:<br />
<a href="http://blog.dblancquaert.be/wp-content/uploads/Adv_interaction_progress_ind.png"><img class="alignnone size-full wp-image-101" title="Advanced interaction for a progress indicator." src="http://blog.dblancquaert.be/wp-content/uploads/Adv_interaction_progress_ind.png" alt="Advanced interaction for a progress indicator." width="643" height="105" /><br />
</a>All it does is take the current question number, and add 1.</li>
<li> Put the variable v_Q_Nr on a master slide to use for the question slides like this: &#8220;Question $$v_Q_Nr of $$cpQuizInfoTotalQuestionsPerProject$$.&#8221;</li>
<li>Set the &#8220;On Enter&#8221; action of each question slide to trigger the advanced action created in step 2.<br />
<a href="http://blog.dblancquaert.be/wp-content/uploads/On_Enter_Adv_Action.png"><img class="alignnone size-full wp-image-102" title="Trigger the advanced action on enter of each question slide." src="http://blog.dblancquaert.be/wp-content/uploads/On_Enter_Adv_Action.png" alt="" width="320" height="119" /></a></li>
<li>Preview your project.</li>
</ol>
<p>I believe this to be as effective as the method described by @lilybiri, and more easy and flexible to use and control.</p>
<p>Feel free to post your comments here.</p>
<p>&nbsp;</p>
<div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/05/progress-indicator-adobecaptivate-5/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/05/progress-indicator-adobecaptivate-5/" rel="dct:source">blog.dblancquaert.be</a>.</div><div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/05/progress-indicator-adobecaptivate-5/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/05/progress-indicator-adobecaptivate-5/" rel="dct:source">blog.dblancquaert.be</a>.</div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2011/05/progress-indicator-adobecaptivate-5/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Social Media during Belgian event. #edubit #elearningday</title>
		<link>http://blog.dblancquaert.be/2011/03/social-media-during-belgian-event-edubit-elearningday/</link>
		<comments>http://blog.dblancquaert.be/2011/03/social-media-during-belgian-event-edubit-elearningday/#comments</comments>
		<pubDate>Tue, 29 Mar 2011 17:59:41 +0000</pubDate>
		<dc:creator>Dieter</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://blog.dblancquaert.be/2011/03/social-media-during-belgian-event-edubit-elearningday/</guid>
		<description><![CDATA[Yesterday it was Elearning day 2011 in Brussels (http://www.elearningday.be/). As I could not be there, I checked Twitter to follow the event, and had to set up two columns in Tweetdeck. This was necessary because apparently two hashtags were used: &#8230; <a href="http://blog.dblancquaert.be/2011/03/social-media-during-belgian-event-edubit-elearningday/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Yesterday it was Elearning day 2011 in Brussels (<a href="http://www.elearningday.be/">http://www.elearningday.be/</a>).
</p>
<p>As I could not be there, I checked Twitter to follow the event, and had to set up two columns in Tweetdeck. <br/>This was necessary because apparently two hashtags were used: #edubit and #elearningday. It is also possible other hashtags were used, but I did not check.
</p>
<p>This brings me to a first point. A conference about e-learning is taking place, and there is no &#8216;official&#8217; hashtag. Even some shows on national television have official hashtags nowadays!
</p>
<p>The second point is the number of tweets. I was told there were around 300 visitors. <br/>#elearningday has 31 tweets, #edubit 24. Some of them are the same. Is it me, or are those numbers really low?
</p>
<p>Timeline for #elearningday
</p>
<p><img src="http://blog.dblancquaert.be/wp-content/uploads/032911_1759_SocialMedia1.png" alt=""/>
	</p>
<p>Timeline for #edubit
</p>
<p><img src="http://blog.dblancquaert.be/wp-content/uploads/032911_1759_SocialMedia2.png" alt=""/>
	</p>
<p> And finally there is the content of the tweets: presenters announcing their presentation, visitors telling they have arrived, and more tweets that are irrelevant for people who try to follow the event on Twitter.
</p>
<p><strong>What could be the reasons for this?<br />
</strong></p>
<p>Let&#8217;s give it a try:
</p>
<p>Twitter is not big in Belgium. In The Netherlands, the opposite is true.<br/>Furthermore, it was an event with a lot of visitors from the education world. Twitter is not very well known in the education world (<a href="http://www.slideshare.net/paljasken/waarom-het-onderwijs-geeks-nodig-heeft">shame</a>). Again, in The Netherlands, they stream <a href="http://en.wikipedia.org/wiki/TeachMeet">Teachmeets</a>.
</p>
<p>Can I conclude that the Belgian e-learning scene needs to play a game of catch-up?</p>
<div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/03/social-media-during-belgian-event-edubit-elearningday/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/03/social-media-during-belgian-event-edubit-elearningday/" rel="dct:source">blog.dblancquaert.be</a>.</div><div class='ez_cc_license_block'><a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/"><img alt="Creative Commons License" style="border-width:0" src="http://i.creativecommons.org/l/by-nc-sa/3.0/88x31.png"/></a><br/><span xmlns:dct="http://purl.org/dc/terms/" href="http://purl.org/dc/dcmitype/Text" property="dct:title" rel="dct:type">Leaving the cave</span> by <a xmlns:cc="http://creativecommons.org/ns#" href="http://blog.dblancquaert.be/2011/03/social-media-during-belgian-event-edubit-elearningday/" property="cc:attributionName" rel="cc:attributionURL">Dieter</a> is licensed under a <a rel="license" href="http://creativecommons.org/licenses/by-nc-sa/3.0/">Creative Commons Attribution-NonCommercial-ShareAlike 3.0 Unported License</a>.<br/>Based on a work at <a xmlns:dct="http://purl.org/dc/terms/" href="http://blog.dblancquaert.be/2011/03/social-media-during-belgian-event-edubit-elearningday/" rel="dct:source">blog.dblancquaert.be</a>.</div>]]></content:encoded>
			<wfw:commentRss>http://blog.dblancquaert.be/2011/03/social-media-during-belgian-event-edubit-elearningday/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

