﻿<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/">
  <channel>
    <title>ToolBookConsulting Blog</title>
    <description>ToolBookConsultings ToolBook blog </description>
    <link>http://www.toolbookconsulting.com/Blog/BlogId/1.aspx</link>
    <language>en-US</language>
    <managingEditor>tlund@elearningspecialist.com</managingEditor>
    <webMaster>tlund@elearningspecialist.com</webMaster>
    <pubDate>Thu, 11 Mar 2010 07:30:16 GMT</pubDate>
    <lastBuildDate>Thu, 11 Mar 2010 07:30:16 GMT</lastBuildDate>
    <docs>http://backend.userland.com/rss</docs>
    <generator>Blog RSS Generator Version 3.4.0.39853</generator>
    <item>
      <title>Formatted Question Feedback </title>
      <description>&lt;p&gt;Today I am launching my first product for sale:&lt;/p&gt;
&lt;p&gt;Formatted Feedback Editor for ToolBook.&lt;/p&gt;
&lt;p&gt;I am very excited about this launch and hope that you will find it useful.&lt;/p&gt;
&lt;p&gt;In short the tool allows you to use text formatting in the feedback you specify for your ToolBook questions - without using hidden fields or any action editor code.&lt;/p&gt;
&lt;p&gt;Here is a screenshot of the editor.&lt;/p&gt;
&lt;p&gt;&lt;img height="232" alt="Screenshot" width="391" src="/Portals/10/Products/formattedfeedbackeditor/RichEditor.gif" /&gt; &lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.toolbookconsulting.com/LinkClick.aspx?link=238&amp;tabid=200"&gt;See a sample and read more here&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;I plan to make more of my tools available for sale in the time to come. So stay tuned.&lt;/p&gt;
&lt;p&gt;PS. parts of the code in this tool is based on code originally written by Simon Price. (&lt;a rel="bookmark" href="http://www.toolbook.org/2003/08/04/xhtml/"&gt;XHTML to ToolBook Text Formatting&lt;/a&gt;)&lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/25.aspx</link>
      <author>tlund@elearningspecialist.com</author>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/25.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=25</guid>
      <pubDate>Mon, 23 Feb 2009 22:23:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=25</trackback:ping>
    </item>
    <item>
      <title>Disable browser printing in ToolBook</title>
      <description>&lt;h1&gt;Disable browser printing in ToolBook&lt;/h1&gt;
&lt;p&gt;&lt;strong&gt;UPDATE 20 January 2009: Updated the sample and download to include some protection against the user pressing Printscreen.&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;This sample demonstrates how one can prevent users from printing elearning content created with ToolBook .&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Updated samples are here: &lt;a href="http://www.toolbookconsulting.com/Portals/10/blogfiles/DisablePrint2/index.html"&gt;Live version&lt;/a&gt; or download the source from &lt;/strong&gt;&lt;a href="http://www.toolbookconsulting.comhttp://www.toolbookconsulting.com/LinkClick.aspx?link=202&amp;tabid=200"&gt;&lt;strong&gt;the Download page&lt;/strong&gt;&lt;/a&gt;&lt;strong&gt; (file is called DisablePrint2(9)).&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strike&gt;See &lt;/strike&gt;&lt;a href="http://www.toolbookconsulting.com/Portals/10/blogfiles/DisablePrint/index.html"&gt;&lt;strike&gt;the old version of the live version of the sample&lt;/strike&gt;&lt;/a&gt;&lt;strike&gt; or download the source from &lt;/strike&gt;&lt;a href="http://www.toolbookconsulting.comhttp://www.toolbookconsulting.com/LinkClick.aspx?link=202&amp;tabid=200"&gt;&lt;strike&gt;the Download page&lt;/strike&gt;&lt;/a&gt;&lt;strike&gt; (file is called DisablePrint(9)).&lt;/strike&gt; Note to access the downloads page you need to create a free account on this site.&lt;/p&gt;
&lt;h2&gt;Here is how it works&lt;/h2&gt;
&lt;p&gt;On the background of this page there is an on load background action which calls a JavaScript function which is responsible for dynamically loading a css file.&lt;/p&gt;
&lt;p&gt;The contents of the css file is a clever way to prevent printing: &lt;br /&gt;
@media print { &lt;br /&gt;
body { &lt;br /&gt;
display:none &lt;br /&gt;
} &lt;br /&gt;
}&lt;/p&gt;
&lt;p&gt;Here is how to read it: The style sheet will only be in effect when the document is printed (eg @media print)&lt;br /&gt;
There is only one css selector (body) which basically means the html document for our purposes has its display property set to none (display:none) which will make it invisible.&lt;/p&gt;
&lt;p&gt;To clarify: While the print dialog is still enabled, the result is that a blank page is printed. Note I didn’t invent this CSS trick, I merely integrated it into ToolBook. To test this try printing this page by pressing CTRL+P (if you know how to, please print to a pdf or similar file to save some trees:-))&lt;/p&gt;
&lt;p&gt;Note 1. Despite the added security of the printscreen prevention measures in this sample in this updated sample- This is NOT a 100% certain approach - nothing is 100% certain (except taxes and death). However in case this level of security is sufficient for some, I will refrain from providing "inspiration" to those trying to bypass the protection by going in more detail on how one might do that.&lt;/p&gt;
&lt;p&gt;Note 2. This builds on &lt;a href="http://www.toolbookconsulting.com/blog/entryid/15.aspx"&gt;a previous blog post&lt;/a&gt; I did on using an external css style sheet to change the visual appearance of ToolBook content when published to HTML.&lt;/p&gt;
&lt;p&gt;Note 3. The css file is included in a hidden file placeholder on the last page of this book. The page has skipnavigation set to true to prevent it from being displayed. This automatically ensures that the file is copied to the media directory when the file is published to html. (For some reason my trick described in  "&lt;a href="http://www.toolbookconsulting.com/blog/entryid/9.aspx"&gt;Adding files to HTML media directory&lt;/a&gt;" doesn’t work with css files)&lt;/p&gt;
&lt;p&gt; &lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/24.aspx</link>
      <author>tlund@elearningspecialist.com</author>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/24.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=24</guid>
      <pubDate>Mon, 12 Jan 2009 13:08:00 GMT</pubDate>
      <slash:comments>2</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=24</trackback:ping>
    </item>
    <item>
      <title>Using ToolBook to create Surveys</title>
      <description>&lt;p&gt;&lt;span id="dnn_ctr660_MainView_ViewEntry_lblEntry"&gt;
&lt;p&gt;Did you know that you can use ToolBook to create surveys and use your LMS to collect the information you collect?&lt;/p&gt;
&lt;p&gt;The only thing that is required is ToolBook and an LMS which is able to show question level feedback in reports.&lt;/p&gt;
&lt;p&gt;I have created a sample that you can download but will also explain what is required.&lt;/p&gt;
&lt;/span&gt;&lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/23.aspx</link>
      <author>tlund@elearningspecialist.com</author>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/23.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=23</guid>
      <pubDate>Mon, 01 Dec 2008 14:32:00 GMT</pubDate>
      <slash:comments>9</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=23</trackback:ping>
    </item>
    <item>
      <title>Download a free ToolBook SmartStyle and learn how to build one yourself</title>
      <description>&lt;p&gt;&lt;em&gt;Build a smartstyle, or download a free SmartStyle, or win a custom SmartStyle&lt;/em&gt;&lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/22.aspx</link>
      <author>tlund@elearningspecialist.com</author>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/22.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=22</guid>
      <pubDate>Mon, 01 Dec 2008 14:10:00 GMT</pubDate>
      <slash:comments>1</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=22</trackback:ping>
    </item>
    <item>
      <title>ToolBook 9.5 HTML Content on Google Chrome</title>
      <description>&lt;p&gt;I have tested HTML output from ToolBook 9 and&amp;#160;&amp;#160;ToolBook 9.5&amp;#160;on Googles new internet browser called Google Chrome and guess what, it works!&lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/21.aspx</link>
      <author>tlund@elearningspecialist.com</author>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/21.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=21</guid>
      <pubDate>Wed, 03 Sep 2008 08:44:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=21</trackback:ping>
    </item>
    <item>
      <title>Controlling the Browser Window x</title>
      <description>&lt;p&gt;This article and sample files demonstrates how one can control if the user clicks the window x rather than the navigation provided within the content. This solves a very common problem which causes a lot of support: Users close a course using the x one last page thinking they passed a test, only to find later that the course was marked as incomplete.&lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/20.aspx</link>
      <author>tlund@elearningspecialist.com</author>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/20.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=20</guid>
      <pubDate>Tue, 26 Aug 2008 13:17:00 GMT</pubDate>
      <slash:comments>5</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=20</trackback:ping>
    </item>
    <item>
      <title>Two online learning standards - twice as good as one?</title>
      <description>&lt;p&gt;There seems to be what I would describe as an elearning standards war looming: ADL recently announcing the Letsi initiative and SCORM 2.0 and late last week I got an email from IMS/GLC with a link to a FAQ about Common Cartridge.&lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/19.aspx</link>
      <author>tlund@elearningspecialist.com</author>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/19.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=19</guid>
      <pubDate>Fri, 22 Aug 2008 09:17:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=19</trackback:ping>
    </item>
    <item>
      <title>KeyBoard shortcuts 3 - Alt key shortcuts</title>
      <description>&lt;p&gt;Implement keyboard navigation using the ALT key in combination with the arrow keys. Learn how to attach custom JavaScript handlers to DOM elements in ToolBook HTML files -&amp;#160;without editing the ToolBook HTML files.&lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/18.aspx</link>
      <author>tlund@elearningspecialist.com</author>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/18.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=18</guid>
      <pubDate>Wed, 13 Aug 2008 23:12:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=18</trackback:ping>
    </item>
    <item>
      <title>Keyboard shortcuts in ToolBook HTML 2</title>
      <description>&lt;p&gt;In my previous article "Keyboard shortcuts in ToolBook HTML" I showed how one can implement keyboard shortcuts using the arrow keys to navigate between the pages.&lt;/p&gt;
&lt;p&gt;Now what if you wanted to use a combination of keys to navigate?&lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/17.aspx</link>
      <author>tlund@elearningspecialist.com</author>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/17.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=17</guid>
      <pubDate>Wed, 13 Aug 2008 11:08:00 GMT</pubDate>
      <slash:comments>0</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=17</trackback:ping>
    </item>
    <item>
      <title>Keyboard shortcuts in ToolBook HTML</title>
      <description>&lt;p&gt;Improve the accessibility and usability of your ToolBook HTML content by providing keyboard shortcuts in addition to the onscreen navigation.&lt;/p&gt;</description>
      <link>http://www.toolbookconsulting.com/Blog/EntryID/16.aspx</link>
      <comments>http://www.toolbookconsulting.com/Blog/EntryID/16.aspx#Comments</comments>
      <guid isPermaLink="true">http://www.toolbookconsulting.com/Default.aspx?tabid=200&amp;EntryID=16</guid>
      <pubDate>Thu, 31 Jul 2008 22:59:00 GMT</pubDate>
      <slash:comments>6</slash:comments>
      <trackback:ping>http://www.toolbookconsulting.com/DesktopModules/Blog/Trackback.aspx?id=16</trackback:ping>
    </item>
  </channel>
</rss>