<?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>one man writes &#187; Author-it</title>
	<atom:link href="http://www.onemanwrites.co.uk/category/author-it/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.onemanwrites.co.uk</link>
	<description>musings on technical communications</description>
	<lastBuildDate>Wed, 18 Jan 2012 20:01:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How to embed linked images in Word 2010</title>
		<link>http://www.onemanwrites.co.uk/2011/09/13/how-to-embed-linked-images-in-word-2010/</link>
		<comments>http://www.onemanwrites.co.uk/2011/09/13/how-to-embed-linked-images-in-word-2010/#comments</comments>
		<pubDate>Tue, 13 Sep 2011 19:23:32 +0000</pubDate>
		<dc:creator>Gordon McLean</dc:creator>
				<category><![CDATA[Author-it]]></category>
		<category><![CDATA[Software]]></category>

		<guid isPermaLink="false">http://www.onemanwrites.co.uk/?p=815</guid>
		<description><![CDATA[One of the most popular posts on my blog was written a few years ago but still gets a lot of visits and comments; How to embed linked images in Word 2007. Some of the comments have offered better solutions and one in particular I found myself searching for today. Having upgrade to Office 2010 [...]]]></description>
			<content:encoded><![CDATA[<p>One of the most popular posts on my blog was written a few years ago but still gets a lot of visits and comments; <a href="http://www.onemanwrites.co.uk/2009/03/16/how-to-embed-linked-images-in-word-2007/">How to embed linked images in Word 2007</a>.</p>
<p>Some of the comments have offered better solutions and one in particular I found myself searching for today. Having upgrade to Office 2010 I&#8217;ve realised that Microsoft has, again, &#8220;improved&#8221; the user interface by moving things around!</p>
<p style="text-align: center;"><a href="http://www.onemanwrites.co.uk/blog/wp-content/uploads/2011/09/Word2010.png"><img class="size-medium wp-image-818 aligncenter" title="Word 2010 screenshot" src="http://www.onemanwrites.co.uk/blog/wp-content/uploads/2011/09/Word2010-300x198.png" alt="" width="234" height="155" /></a></p>
<p><br clear="all"><br />
So, <a href="http://www.onemanwrites.co.uk/2009/03/16/how-to-embed-linked-images-in-word-2007/#comment-51845">courtesy of Sarah</a>, here are the updated instructions for how to embed linked images in Microsoft Word 2010:</p>
<ol>
<li>With your Word document open, click the <strong>File </strong>tab, top-left of the window.</li>
<li>On the left-hand side, select <strong>Info</strong>.</li>
<li>On the right-hand side, near the bottom, click <strong>Edit Links to Files</strong>.</li>
<li>In the dialog that is displayed, select and highlight the images you want to convert from the list.</li>
<li>Check the <strong>Save picture in document</strong> checkbox.</li>
<li>Click the <strong>Break Link</strong> button.</li>
<li>Click <strong>OK</strong> to confirm.</li>
</ol>
<p>The links are removed and the images are now embedded in your Word document.</p>
<p>A quick check of the filesize of the Word document should show a marked increase and you can now distribute the Word document, and the Word document only, safe in the knowledge that the images are embedded.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemanwrites.co.uk/2011/09/13/how-to-embed-linked-images-in-word-2010/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Further Webhelp hacking</title>
		<link>http://www.onemanwrites.co.uk/2010/03/12/further-webhelp-hacking/</link>
		<comments>http://www.onemanwrites.co.uk/2010/03/12/further-webhelp-hacking/#comments</comments>
		<pubDate>Fri, 12 Mar 2010 08:14:03 +0000</pubDate>
		<dc:creator>Gordon McLean</dc:creator>
				<category><![CDATA[Author-it]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.onemanwrites.co.uk/?p=599</guid>
		<description><![CDATA[I mentioned in my previous post that we run a webhelp build of our content (a.k.a. our Knowledge Centre) on our developer community website, and that it was hosted in an iframe. I thought it worthwhile fleshing out the detail of that as it includes a bit of custom code some others might find useful. [...]]]></description>
			<content:encoded><![CDATA[<p>I mentioned in my previous post that we run a webhelp build of our content (a.k.a. our Knowledge Centre) on our developer community website, and that it was hosted in an iframe. I thought it worthwhile fleshing out the detail of that as it includes a bit of custom code some others might find useful.</p>
<p>As our content is locked behind a login, we need to be sure that only people who are logged in can access it. This is achieved by a couple of simple checks.</p>
<p>1. When the Knowledge Centre is loaded, a script runs that checks it has been loaded within the correct iFrame within our website. If it&#8217;s not, the user is redirected to the login page. </p>
<p>The javascript for this is added to the webhelp.js file (around line 106):</p>
<blockquote><p>//&#8212;&#8212;&#8212;&#8211; init function &#8212;&#8212;&#8212;&#8212;<br />
Kbase.init = function() {</p>
<p>	//OUR redirect<br />
	if(window.top.location==window.location) {<br />
		window.top.location = &#8216;URLTOYOURIFRAME&#8217;;<br />
		}</p></blockquote>
<p>2. If the Knowledge Centre has been loaded in the correct iFrame (in other words the above javascript is happy), the website checks for a cookie (checking for login) and then either loads the Knowledge Centre, or, again, redirects the user to the login page. The javascript for this is standard cookie checking stuff (google will find you a zillion solutions).</p>
<p>And that&#8217;s it. Nothing particularly clever, but a useful way to (lightly) protect the content of our Knowledge Centre.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemanwrites.co.uk/2010/03/12/further-webhelp-hacking/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Hacking Author-it Webhelp</title>
		<link>http://www.onemanwrites.co.uk/2010/03/02/hacking-author-it-webhelp/</link>
		<comments>http://www.onemanwrites.co.uk/2010/03/02/hacking-author-it-webhelp/#comments</comments>
		<pubDate>Tue, 02 Mar 2010 10:04:48 +0000</pubDate>
		<dc:creator>Gordon McLean</dc:creator>
				<category><![CDATA[Author-it]]></category>

		<guid isPermaLink="false">http://www.onemanwrites.co.uk/?p=595</guid>
		<description><![CDATA[Finding the right solution for a problem isn&#8217;t always easy but sometimes, if you are very lucky, the solution will fall straight into your lap. Such was the case with our switch to Author-it even though we didn&#8217;t fully realise it at the time. I&#8217;ve covered our reasons for switching from FrameMaker to Author-it elsewhere, [...]]]></description>
			<content:encoded><![CDATA[<p>Finding the right solution for a problem isn&#8217;t always easy but sometimes, if you are very lucky, the solution will fall straight into your lap. Such was the case with our switch to Author-it even though we didn&#8217;t fully realise it at the time.</p>
<p>I&#8217;ve covered our reasons for switching from FrameMaker to Author-it elsewhere, and once we had converted our content we started to look at how we could get the most from the other output formats available. We already had ideas on how we could use the provided HTML based publishing formats to provide a better solution to the problem of finding information, and we were planning on generate  HTML versions of the entire documentation set to be hosted, and searchable, on our community website. </p>
<p>It was right about then that Author-it announced their new &#8216;Webhelp&#8217; format which would include a (very) quick search in a nice modern looking format. Given that one issue we were addressing was how hard it is to search across multiple PDFs (which presumes the poor reader knows which PDF they should start with) it looked like an excellent solution.</p>
<p>And it is.</p>
<p>We now host a specific build of all of our content within our developer community (which is password protected I&#8217;m afraid so you&#8217;ll just have to trust me), which allows the developers, partners and customers, to search across everything we have. However we have had to customise the output a little to meet our needs, and this is where the hacking starts.<br />
<span id="more-595"></span><br />
First things first, the Webhelp output is built using HTML templates (for the layout and structure), CSS (for the styling) and is powered using Javascript. If you are competent in HTML and CSS you can do a lot of tweaking of the templates, although <a href="http://www.hamishblunck.com/authorit/aitconfig/">a good place to start is this excellent configuration wizard</a> so generously created by Hamish Blunck. </p>
<p>So what is so special about our Webhelp? </p>
<p><strong>1. Cookie detection</strong><br />
As we publish our webhelp to our developer community website, we want to make sure that only people who are logged in to the website can access the content. So we&#8217;ve added some javascript to the webhelp.js file which does just that. The code itself came from our webmaster but it was easy to take it and drop it in. If you aren&#8217;t logged in, you get redirected to the login page.</p>
<p><strong>2. Tweaking the look and feel</strong><br />
As I mentioned earlier, after looking at the HTML and CSS myself, I happened across this configuration wizard. It covers most of the basic things most people will be concerned about and after running through the wizard, all I did was change some of the underlying images (to include our logo instead of the &#8220;built by Author-it&#8221;) and added in a copyright message to the footer. Both of those changes are made in the index.htm template file (around lines 50 to 70). Thankfully the colour scheme of our community website is based around blue so I didn&#8217;t have to tweak the colours (<a href="http://www.hamishblunck.com/index.php/author-it/author-it-tips-and-tricks/63-creating-an-author-it-web-help-theme">Hamish offers some tips on that as well</a>).</p>
<p><strong>3. Google Analytics</strong><br />
Tracking what people are viewing what topics is our ultimate aim. Unfortunately the way the Webhelp system is designed makes that very hard. Without getting into too much detail, whilst there are HTML template files (index.htm which sets the 3-pane view, and topic.htm which styles the topics themselves) the topic content is pulled through some clever javascript before it is displayed. Google Analytics requires a &#8216;hook&#8217; to be able to track which topic people are looking at and as the javascript method used doesn&#8217;t provide that, we are currently blind as to what people are looking at once they get into our webhelp system. </p>
<p>That said, I&#8217;ve logged a Support call with Author-it and they are looking at (they are very good that way!). I&#8217;m hoping to get a resolution to this as I&#8217;d imagine more people might start looking at this area in the future.</p>
<p><strong>4. Automated Build</strong><br />
This isn&#8217;t strictly a hack of the Webhelp but I think it&#8217;s worth mentioning. Author-it offers a mechanism for publishing via batch file, and we now have a dedicated machine which has a Scheduled Task to run the command line that builds the webhelp. Each Sunday it runs the correct build, and FTPs the files to the webserver. This means we always have the latest documentation available, making it much easier for us to get the information published as soon as possible, removing the constrains of the product release schedules. Whilst working in Author-it, we keep draft information out of the books that will be published until they are complete so there is no danger of the wrong information being published.</p>
<p>And that&#8217;s about it.</p>
<p>The published webhelp includes, as the &#8216;homepage&#8217;, a topic that lists all the recent updates the documentation, including links through to the updated topic, but the most impressive thing for the people who use it is the speed of the search. A direct quote from one of our developers, when I showed him how it worked, was &#8220;ohhh now THAT&#8217;S cool!&#8221;, and our Support team are actively pushing customers towards it as well. As making it easy for the technical users to find information was one of the main reasons why we chose this format (and ultimately why we switched to Author-it) I consider that job done.</p>
<p>For now at least.</p>
<p>So, with webhelp published to an area of our community website (it runs in an iframe there, the website itself runs on Joomla), we have an excellent place to direct technical users of our product. The recent updates page also allows me to do a little soft &#8216;marketing&#8217; in the form of a fortnightly &#8220;What&#8217;s New&#8221; email which I send out to the relevant audience, which helps raise awareness.</p>
<p>The last thing to mention about the webhelp format is that it looks good. That&#8217;s one of the instant barriers removed, and everyone who has seen it has said something similar. It looks good, it looks professional and whilst I&#8217;m more concerned about the content within it, getting people to like something is sometimes the hardest battle of all. If they like it, they&#8217;ll use it and, so far, they are using it in droves.</p>
<p>Update: A quick screenshot of our <a href="http://www.onemanwrites.co.uk/blog/wp-content/uploads/2010/03/KnowledgeCentre.jpg">webhelp based Knowledge Centre</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemanwrites.co.uk/2010/03/02/hacking-author-it-webhelp/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
		</item>
		<item>
		<title>Analyse this</title>
		<link>http://www.onemanwrites.co.uk/2010/01/08/analyse-this/</link>
		<comments>http://www.onemanwrites.co.uk/2010/01/08/analyse-this/#comments</comments>
		<pubDate>Fri, 08 Jan 2010 10:56:03 +0000</pubDate>
		<dc:creator>Gordon McLean</dc:creator>
				<category><![CDATA[Author-it]]></category>
		<category><![CDATA[Technology]]></category>

		<guid isPermaLink="false">http://www.onemanwrites.co.uk/?p=554</guid>
		<description><![CDATA[Let me tell you a story. In it our hero (me) fights valiantly against two Javascript dragons called Webhelp and Google Analytics. It&#8217;s a bloody battle and at the end, when all the fighting is done, well &#8230; you&#8217;ll have to read on and find out. Some background first. We have a developer community website [...]]]></description>
			<content:encoded><![CDATA[<p>Let me tell you a story. In it our hero (me) fights valiantly against two Javascript dragons called Webhelp and Google Analytics. It&#8217;s a bloody battle and at the end, when all the fighting is done, well &#8230; you&#8217;ll have to read on and find out.</p>
<p>Some background first. </p>
<p>We have a developer community website which hosts downloads of our software and all the documentation in PDF format. To make it easier for people to find information in the product documentation, we also host a Webhelp version of each and every document in one master Webhelp system so you can search across the entire thing. It works really well.</p>
<p>To track how the other areas of the website are used, we have a Google Analytics account and the necessary code has been added. For the Webhelp, the code is in both the index.htm and topic.htm files. </p>
<p>But, and this is where the story begins, it doesn&#8217;t work properly.</p>
<p>Google Analytics will happily track every visit to the WebHelp system, but it stops there. Any click made within the system is recorded as a click but there is no detail on WHAT topic was viewed. We had hoped to get stats on this to allow us to better focus on the areas of the product people were enquiring about but we are, essentially, blind.</p>
<p>It&#8217;s very annoying.</p>
<p>Why is this so? Well I think it&#8217;s to do with the way WebHelp is created. It uses a Javascript library called <a href="http://www.extjs.com/">Ext JS</a> which, amongst other things, means that every time you open a topic in the Webhelp, it&#8217;s loaded through a Javascript call so Google Analytics never &#8216;sees&#8217; a new HTML page (a new topic) being loaded so doesn&#8217;t know what you are viewing.</p>
<p>I think. I&#8217;m not 100% sure to be honest.</p>
<p>I&#8217;ve logged a somewhat vague Support call with Author-it, and have enlisted the help of our own webmaster. Next step will be to beg and plead with some of the developers for some of their brain power (most of them have a fair bit to spare).</p>
<p>It&#8217;s hugely annoying, being so close to what we want but not able to fix it myself, but sometimes you just have to admit defeat.</p>
<p>Of the battle, that is. I WILL win the war!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemanwrites.co.uk/2010/01/08/analyse-this/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Numbers game</title>
		<link>http://www.onemanwrites.co.uk/2009/12/03/numbers-game/</link>
		<comments>http://www.onemanwrites.co.uk/2009/12/03/numbers-game/#comments</comments>
		<pubDate>Thu, 03 Dec 2009 08:12:38 +0000</pubDate>
		<dc:creator>Gordon McLean</dc:creator>
				<category><![CDATA[Author-it]]></category>
		<category><![CDATA[Theory]]></category>

		<guid isPermaLink="false">http://www.onemanwrites.co.uk/?p=521</guid>
		<description><![CDATA[Better documentation lowers support calls, is a widely held assumption and one I&#8217;m hoping to prove in the coming months. With our new knowledge centre in place, and Google Analytics tracking how many people are visiting it, I&#8217;ll soon have stats for my side of the fence. Early numbers (from the past two weeks) show [...]]]></description>
			<content:encoded><![CDATA[<p>Better documentation lowers support calls, is a widely held assumption and one I&#8217;m hoping to prove in the coming months. With our new knowledge centre in place, and Google Analytics tracking how many people are visiting it, I&#8217;ll soon have stats for my side of the fence.</p>
<p>Early numbers (from the past two weeks) show that more people are looking at the Documentation area of our website than are looking at the Support area, but then the knowledge centre (part of the Documentation area) is new so that&#8217;s only to be expected and I&#8217;m really not expecting to get a true picture of how things are going until late January next year.</p>
<p>Fingers crossed.</p>
<p>With thanks to Rachel Potts for her post on <a href="http://communicationcloud.wordpress.com/2009/11/19/what-can-web-analytics-do-for-technical-communications/">what web analytics can do for technical communications</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.onemanwrites.co.uk/2009/12/03/numbers-game/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

