<?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"
	>

<channel>
	<title>Kombine News</title>
	<atom:link href="http://www.kombine.net/news/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.kombine.net/news</link>
	<description>Web Designers in Fort Collins, CO</description>
	<pubDate>Wed, 27 Aug 2008 17:21:07 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
	<language>en</language>
			<item>
		<title>CRM manager - New Site Launched</title>
		<link>http://www.kombine.net/news/crm-manager-new-site-launched-today/</link>
		<comments>http://www.kombine.net/news/crm-manager-new-site-launched-today/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 17:20:26 +0000</pubDate>
		<dc:creator>Luca Lepori</dc:creator>
		
		<category><![CDATA[Recent Work]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/?p=29</guid>
		<description><![CDATA[We launched the new CRM manager site today - http://www.crm-manager.net. Both the client and ourselves are very pleased with the results. It's a bespoke design by Kreg and is based on WordPress which has been great to work with...]]></description>
			<content:encoded><![CDATA[<p>We launched the new <a href="http://www.crm-manager.net">CRM manager</a> site today. Both the client and ourselves are very pleased with the results. It&#8217;s a bespoke design by Kreg and is based on WordPress which has been great to work with from both a design/deployment perspective, and, going forward, a self-serve content management perspective for the client. We&#8217;re grateful to have had this opportunity to deliver a shiny new site for the folks at CRM manager.</p>
<p><a href="http://www.kombine.net/contact.php">Contact us</a> if you&#8217;d like to learn more about this project and/or if you&#8217;re interested in a new custom site with great features that is also easy to maintain.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/crm-manager-new-site-launched-today/feed/</wfw:commentRss>
		</item>
		<item>
		<title>MooTools Poof Effect</title>
		<link>http://www.kombine.net/news/mootools-poof-effect/</link>
		<comments>http://www.kombine.net/news/mootools-poof-effect/#comments</comments>
		<pubDate>Fri, 18 Jul 2008 10:12:48 +0000</pubDate>
		<dc:creator>Kreg Wallace</dc:creator>
		
		<category><![CDATA[MooTools]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/?p=27</guid>
		<description><![CDATA[Here&#8217;s a quick update on the jQuery Poof Effect I described recently: Keith Baker has ported the effect to the MooTools JavaScript library and posted the code on his bestpract.us wiki. Great stuff. Check out the demo.
]]></description>
			<content:encoded><![CDATA[<p>Here&#8217;s a quick update on the <a href="http://www.kombine.net/news/jquery-poof-effect/">jQuery Poof Effect</a> I described recently: Keith Baker has <a href="http://ikeif.net/2008/07/12/the-problem-with-web-developers-and-web-put-your-title-here/">ported the effect</a> to the <a href="http://www.mootools.net/">MooTools</a> JavaScript library and posted the code on his <a href="http://bestpract.us/doku.php?id=poof">bestpract.us</a> wiki. Great stuff. Check out the <a href="http://bestpract.us/mootools/poof/index-class.html">demo</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/mootools-poof-effect/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery UI Cursor Selection</title>
		<link>http://www.kombine.net/news/jquery-ui-cursors/</link>
		<comments>http://www.kombine.net/news/jquery-ui-cursors/#comments</comments>
		<pubDate>Sat, 28 Jun 2008 01:27:12 +0000</pubDate>
		<dc:creator>Kreg Wallace</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/?p=25</guid>
		<description><![CDATA[An examination of the appropriate cursor properties to be used with jQuery UI-enabled page elements. Working examples for draggable(), resizeable() and AJAX post are provided. <a href="http://www.kombine.net/examples/icons/jquery/cursors/">See the working examples</a>.]]></description>
			<content:encoded><![CDATA[<p>In a recent post on providing <a href="http://www.kombine.net/news/jquery-draggable-icons/">jQuery UI Draggable Icons</a>, I noted that switching the cursor setting to &#8220;pointer&#8221; on draggable page elements was a good idea because it indicated that the draggable element was actionable. While this was an improvement over the text-selection cursor the browser provided by default, I completely overlooked the existence of the <strong style="cursor: move;border-bottom: 1px dotted #ddd;">move cursor</strong>. The move cursor is clearly the better choice in this case and I have updated my <a href="http://www.kombine.net/examples/icons/jquery/draggable/">example code</a> to use it.</p>
<p>I searched around and it turns out there are around thirty different cursors available to the browser that can easily be set with CSS. The Mozilla Developer Center offers a handy <a href="http://developer.mozilla.org/en/docs/CSS:cursor#Supported_CSS_standard_values">cursor test page</a>, allowing us to view each of the standard cursors in action (by mousing over the values in the &#8220;CSS name&#8221; column). So, how can we use these cursor options to improve the usability of jQuery UI effects?</p>
<h2>Resizables</h2>
<p>Eight of those cursors are handles for manipulating the edges and corners of resizable elements. jQuery UI includes a resizable method, so let&#8217;s test it out. This is the HTML element we&#8217;ll be resizing:<br />
<code class="html"><br />
&lt;div class="resizable"&gt;I'm resizable&lt;/div&gt;<br />
</code></p>
<p>And this is the jQuery UI JavaScript code need to make it resizable:<br />
<code class="js"><br />
$('.resizable').resizable();<br />
</code></p>
<p>And a little CSS to style our HTML:<br />
<code class="css"><br />
.resizable {<br />
	background-color: #ff8998;<br />
	border: 2px solid #d2412c;<br />
	height: 100px;<br />
	text-align: center;<br />
	width: 100px;<br />
}<br />
</code></p>
<div style="margin: 2em 0;"><a href="http://www.kombine.net/examples/icons/jquery/cursors/jquery_cursors.zip"><img class="alignnone size-medium wp-image-26" style="margin-bottom: -16px;" title="Get the code from Kombine" src="http://www.kombine.net/news/wp-content/uploads/2008/06/btn_getthecode.gif" alt="" width="138" height="42" /></a> or <a href="http://www.kombine.net/examples/icons/jquery/cursors/">See the working examples</a></div>
<p><strong>Not bad at all!</strong> Notice how the correct cursor styles are displayed by the resizable handles even though we haven&#8217;t assigned any cursor styles in our CSS. jQuery UI takes care of selecting the cursors for us by default. It&#8217;s a great example of foresight by the jQuery UI team. But what about those draggables?</p>
<h2>Draggables?</h2>
<p>Unfortunately, jQuery UI does not automatically set the cursor to &#8220;move&#8221; when the user hovers over a draggable element. This seems like an oversight to me, but perhaps a default move cursor for draggables will make it&#8217;s way into a future release. In any case, it&#8217;s simple enough to set this property for ourselves. Just add <strong>cursor: move</strong> to the CSS definitions of all of your draggable elements.</p>
<h2>What about AJAX?</h2>
<p>AJAX routines are another aspect of jQuery that could be improved with some default cursor styling. Did you notice the animated <strong style="cursor: progress;border-bottom: 1px dotted #ddd;">progress cursor</strong> example on the Mozilla page? This is a great cursor for indicating that a process is operating in the background which will be completed shortly.</p>
<h3>Where to attach it?</h3>
<p>When we try to use this cursor on an AJAX form submission, one question quickly becomes apparent: Where should we attach it? <strong>Cursors change in accordance with the page element that is being hovered.</strong> But we want the progress cursor to remain on display regardless of which element the user hovers over, until the AJAX operation returns it&#8217;s data from the server. The solution is to assign the &#8220;progress&#8221; cursor to the &lt;body&gt; tag when the form is submitted and then reset the &lt;body&gt; tag&#8217;s cursor to &#8220;auto&#8221; when the return data arrives from the server. We can accomplish this with the following commands:<br />
<code class="js"><br />
document.body.style.cursor = 'progress';<br />
</code></p>
<p>and:<br />
<code class="js"><br />
document.body.style.cursor = 'auto';<br />
</code></p>
<p>Here&#8217;s how they might be used in an AJAX request script:<br />
<code class="js"><br />
$('#my_form').submit(function() {<br />
	document.body.style.cursor = 'progress';<br />
	$.post('my_script.php', {<br />
		my_key: my_input_field_value<br />
	},<br />
	function(data) {<br />
		code_to_update_page;<br />
		document.body.style.cursor = 'auto';<br />
	});<br />
	return false;<br />
});<br />
</code></p>
<h3>Pseudo example</h3>
<p>On my example page, the &#8220;ajax post&#8221; box provides a visual example of this effect. However, it is not a true working example, as no AJAX routine is actually being performed. Clicking the box simply sets the &lt;body&gt; cursor to &#8220;progress&#8221; for three seconds and then resets it to &#8220;auto&#8221;.</p>
<div style="margin: 2em 0 2em 0;"><a href="http://www.kombine.net/examples/icons/jquery/cursors/jquery_cursors.zip"><img class="alignnone size-medium wp-image-26" style="margin-bottom: -16px;" title="Get the code from Kombine" src="http://www.kombine.net/news/wp-content/uploads/2008/06/btn_getthecode.gif" alt="" width="138" height="42" /></a> or <a href="http://www.kombine.net/examples/icons/jquery/cursors/">See the working examples</a></div>
<h2>Useful links:</h2>
<ul>
<li><a href="http://jquery.com/">Get jQuery</a></li>
<li><a href="http://ui.jquery.com/">Get jQuery UI</a></li>
</ul>
<p style="margin-top: 1em"><strong>[UPDATE]:</strong> I changed the AJAX example above to reset the <body> cursor to &#8220;auto&#8221;, instead of resetting it to &#8220;default&#8221; as I had originally written. Using default will force the arrow cursor to display, while using auto allows the browser to display whichever cursor is appropriate to the page element that is being hovered, and is thus the preferred solution.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/jquery-ui-cursors/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery Poof Effect</title>
		<link>http://www.kombine.net/news/jquery-poof-effect/</link>
		<comments>http://www.kombine.net/news/jquery-poof-effect/#comments</comments>
		<pubDate>Tue, 24 Jun 2008 17:55:24 +0000</pubDate>
		<dc:creator>Kreg Wallace</dc:creator>
		
		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/?p=22</guid>
		<description><![CDATA[A Mac OS X dock - style "poof" sprite animation effect for use with jQuery hide(), remove(), and fadeOut() methods. Free original poof source graphics and example JavaScript code are provided. <a href="http://www.kombine.net/news/jquery-poof-effect/">See the working examples</a>.]]></description>
			<content:encoded><![CDATA[<p>Following up on my last post, <a href="http://www.kombine.net/news/jquery-draggable-icons/">jQuery UI Draggable Icons</a>, which offered a way of presenting visual cues to help users identify draggable page elements, this article examines a technique for providing visual feedback when a page element is removed.</p>
<h2>The poof effect</h2>
<p>Mac OS X users will be familiar with the poof animation that occurs when application icons are removed from the dock. The animation looks nice, is unobtrusive, and provides a clear indication of the function being performed. Why not bring this effect to the web?</p>
<div class="download" style="margin-top: 1.5em">
	<a href="http://www.kombine.net/examples/icons/jquery/poof/jquery_poof_effect.zip"><img src="http://www.kombine.net/news/wp-content/uploads/2008/06/btn_getthepoof.gif" width="138" height="42" alt="Get the poof" style="margin-bottom: -16px;" /></a> or <a href="http://www.kombine.net/examples/icons/jquery/poof/">see the example</a>
</div>
<h2 style="margin-top: 2em;">Hiding and removing elements with jQuery</h2>
<p>The jQuery library provides several methods for hiding the display of page elements or removing them entirely from the document tree. The <strong>remove()</strong> and <strong>hide()</strong> methods cause elements to disappear instantaneously. The sudden disappearance can leave your site visitors wondering exactly what happened when they clicked that delete button. The <strong>fadeOut()</strong> method, however, provides a more graceful exit. We&#8217;ll use that in our example. Let&#8217;s get started with the code:<br />
<code class="html"><br />
&lt;div class=&quot;deleteme&quot;&gt;<br />
	delete me<br />
&lt;/div&gt;<br />
</code></p>
<p>Above is the HTML for the element we&#8217;ll be removing from the page. Now let&#8217;s remove it with jQuery:<br />
<code class="js"><br />
$(document).ready(function() {<br />
	$(&#39;.deleteme&#39;).click(function() {<br />
		$(this).fadeOut(&#39;fast&#39;);<br />
	});<br />
});<br />
</code></p>
<p>Here we use the standard jQuery technique of attaching event handlers to page elements when the document structure has finished loading. In the above code, each element that has a class name of &#8220;deleteme&#8221; is assigned an onclick event that when performed, causes the clicked element to quickly fade and become hidden. It works nicely and provides a base level of visual feedback for the user. But we can do better.</p>
<h2>Elements of a poof</h2>
<p><img src="http://www.kombine.net/news/wp-content/uploads/2008/06/poof.png" alt="" title="poof" width="32" height="160" class="alignright size-full wp-image-23" />We&#8217;ll be creating our poof using sprite animation. Sprite animation is a technique in which all of the frames used in an animation sequence are collected side-by-side in a single image file. Only a small portion, or frame, of the complete image is displayed at a given time and the animation is composed by sequentially adjusting the visible portion of the image, much like a filmstrip. You can see the image we&#8217;ll be using for our animation to the right. It is divided into five frames.</p>
<h2>Why use sprite animation?</h2>
<p>Using an animated GIF might be easier and wouldn&#8217;t require as much coding, but sprite animation offers two distinct advantages: First, with sprite animation we have the option of using PNG images with alpha transparency (GIF offers only binary transparency and <a href="http://www.libpng.org/pub/mng/">MNG</a> support by the major browsers just never took off). Second, we can control the frame rate of sprite animations programatically, so a single image file can be animated at any speed by simply typing in the desired frame rate&mdash;no need to create a whole new version of the image file.</p>
<h2>Displaying and animating the sprite</h2>
<p>First, we&#8217;ll place an empty &lt;div&gt; tag on the page to hold the poof sprite:<br />
<code class="html"><br />
&lt;div class=&quot;poof&quot;&gt;&lt;/div&gt;<br />
</code></p>
<p>Then we can style it with CSS:<br />
<code class="css"><br />
.poof {<br />
	background: transparent url(../images/poof.png) no-repeat 0 0;<br />
	cursor: pointer;<br />
	display: none;<br />
	height: 32px;<br />
	position: absolute;<br />
	width: 32px;<br />
}<br />
</code></p>
<p>Here, the poof sprite (poof.png) is set as the background image and its top and left positions are both set to 0. The display is set to none, so the element is currently invisible. The height and width are both set to 32 pixels, which is the size of each frame in our animation. We have set the position type to absolute, but have not specified the top and left values. These we will handle in JavaScript with jQuery:<br />
<code class="js"><br />
$(document).ready(function() {<br />
	$(&#39;.deleteme&#39;).click(function(e) {<br />
		var xOffset = 24;<br />
		var yOffset = 24;<br />
&nbsp;<br />
		$(this).fadeOut(’fast’);<br />
&nbsp;<br />
		$(’.poof’).css({<br />
			left: e.pageX - xOffset + ‘px’,<br />
			top: e.pageY - yOffset + ‘px’<br />
		}).show();<br />
&nbsp;<br />
		animatePoof();<br />
	});<br />
});<br />
</code></p>
<p>Now, when the &#8220;.deleteme&#8221; element is clicked, the &#8220;.poof&#8221; animation is positioned next to our cursor (see the <a href="http://docs.jquery.com/Tutorials:Mouse_Position">jQuery&nbsp;docs</a> for more on how to use <strong>pageX</strong> and <strong>pageY</strong> to determine the cursor position). Its position relative to the cursor is determined by the <strong>xOffset</strong> and <strong>yOffset</strong> variables we defined. Next, we use .show() to turn the display of the poof animation on and run the animation by calling a separate function, <strong>animatePoof()</strong>:<br />
<code class="js"><br />
function animatePoof() {<br />
	var bgTop = 0;<br />
	var frames = 5;<br />
	var frameSize = 32;<br />
	var frameRate = 80;<br />
&nbsp;<br />
	for(i = 1; i &lt; frames; i ++) {<br />
		$(&#39;.poof&#39;).animate({<br />
			backgroundPosition: &#39;0 &#39; + (bgTop - frameSize) + &#39;px&#39;<br />
		}, frameRate);<br />
&nbsp;<br />
		bgTop -= frameSize;<br />
	}<br />
&nbsp;<br />
	setTimeout(&quot;$(&#39;.poof&#39;).hide()&quot;, frames * frameRate);<br />
}<br />
</code></p>
<p>The animatePoof() function is composed of a loop that resets the background-position of the .poof &lt;div&gt; by the height of one frame per iteration, creating a simple animation effect. The <strong>bgPosition</strong> variable represents the initial top position of the background-image. This value is decreased by 32 pixels on each iteration of the loop. The <strong>frameRate</strong> variable determines the speed of the animation. Here, each frame is displayed for 80 milliseconds. Once the animation has completed, we need to hide the poof &lt;div&gt; so that its presence (though invisible) will not block attempts to click other elements we want to delete. This is accomplished with the <strong>setTimeout</strong> call.</p>
<h2>License</h2>
<p>The poof image used in this example was created by <a href="http://www.kombine.net/">The&nbsp;Kombine&nbsp;Group</a> and is modeled after the Apple OS X dock poof. It is provided here for free and is licensed under both the GPL and MIT licenses&mdash;the same licensing used by the jQuery library itself.</p>
<h2>Download</h2>
<p>Clicking the “Get the poof” button below will download a ZIP file containing the poof as a PNG file, a copy of the working example code, the MIT and GPL licenses and a layered PSD source file. In the PSD, each frame is 128 &times; 128 pixels, so you can use it for creating much larger poofs if you desire.</p>
<div class="download" style="margin-top: 1.5em">
	<a href="http://www.kombine.net/examples/icons/jquery/poof/jquery_poof_effect.zip"><img src="http://www.kombine.net/news/wp-content/uploads/2008/06/btn_getthepoof.gif" width="138" height="42" alt="Get the poof" style="margin-bottom: -16px;" /></a> or <a href="http://www.kombine.net/examples/icons/jquery/poof/">see the example</a>
</div>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/jquery-poof-effect/feed/</wfw:commentRss>
		</item>
		<item>
		<title>jQuery UI Draggable Icons</title>
		<link>http://www.kombine.net/news/jquery-draggable-icons/</link>
		<comments>http://www.kombine.net/news/jquery-draggable-icons/#comments</comments>
		<pubDate>Mon, 23 Jun 2008 06:27:03 +0000</pubDate>
		<dc:creator>Kreg Wallace</dc:creator>
		
		<category><![CDATA[Icons]]></category>

		<category><![CDATA[jQuery]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/?p=18</guid>
		<description><![CDATA[An original icon design (two icons, actually) for indicating which HTML page elements are draggable. Made for use with the jQuery UI JavaScript library. The icon is free and licensed under GPL and MIT. A layered source PSD is also provided. <a href="http://www.kombine.net/news/jquery-draggable-icons/">See the working examples</a>.]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve recently been working with <a href="http://ui.jquery.com/">jQuery UI</a> draggable and droppable components and while the functionality is great and easy to implement, drag-and-drop does present a potential usability problem: drag-and-drop components are not yet in widespread use on the web and the average web surfer will not be expecting to discover them on your web site. Because of this, drag-and-drop components could get overlooked completely. How do we solve the problem?</p>
<p><a href="http://www.kombine.net/examples/icons/jquery/draggable/jquery_draggable_icons.zip"><img style="margin-bottom: -16px;" src="http://www.kombine.net/examples/icons/jquery/draggable/images/btn_gettheicons.gif" alt="Get the icons" width="138" height="42" /></a> or <a title="jQuery UI draggable icons example" href="http://www.kombine.net/examples/icons/jquery/draggable/">see the example</a></p>
<p></p>
<h2>Users need a hint</h2>
<p>We could provide text instructions on the page, explaining which objects are draggable and what to do with them, but we all know that people don&#8217;t <em>read</em> on the web; they scan. So, let&#8217;s give visitors a <strong>visual cue</strong> to help them quickly identify draggable components.</p>
<h2>The icons</h2>
<p>I&#8217;ve created a draggable icon to help address the problem. Actually, there are two icons: one for use on light backgrounds and another for dark backgrounds. The icons are 16 × 16 pixel PNG images with alpha transparency. Here&#8217;s the quick preview:</p>
<table cellpadding="0" cellspacing="0 border="0" width="64" height="32" style="margin-bottom: 1em;">
<tr>
<td style="background-color: #000;padding: 8px;" width="32" heigh="32">
<img src="http://www.kombine.net/news/wp-content/uploads/2008/06/icon_draggable_dark.png" alt="" title="icon_draggable_dark" width="16" height="16" class="alignnone size-medium wp-image-20" />
</td>
<td style="background-color: #fff;padding: 8px;" width="32" heigh="32">
<img src="http://www.kombine.net/news/wp-content/uploads/2008/06/icon_draggable_light.png" alt="" title="icon_draggable_light" width="16" height="16" class="alignnone size-medium wp-image-21" />
</td>
</tr>
</table>
<p>You can see the draggable icons in action on the <a title="jQuery UI draggable icons example" href="http://www.kombine.net/examples/icons/jquery/draggable/">example&nbsp;page</a>.</p>
<h2>Making use of the icons</h2>
<p>In the example, I put the icons to use as background images in the headers of my draggable boxes. Here is the HTML:<br />
<code class="html"><br />
&lt;div class=&quot;draggable dark&quot;&gt;<br />
	&lt;h3 class=&quot;title&quot;&gt;Dark background&lt;/h3&gt;<br />
&lt;/div&gt;<br />
</code></p>
<p>In the CSS, .draggable h3 gets the background image and is assigned a 24 pixel left padding. Its line height is also set to 24 pixels and the icon is positioned 4 pixels from the top of it&#8217;s containing h3 tag in order to keep everything vertically aligned. Here is that bit of CSS:<br />
<code class="css"><br />
.dark h3.title {<br />
	background: #36c url(../images/icon_draggable_dark.png) no-repeat 2px 4px;<br />
	color: #fff;<br />
	font-size: 12px;<br />
	font-weight: bold;<br />
	line-height: 24px;<br />
	margin: 0;<br />
	padding-left: 24px;<br />
}<br />
</code></p>
<p><strong>Note:</strong> line-height and padding-left should be set to at least 16 pixels each in order to display the full icon. </p>
<p><del>Also note that the draggable boxes have been assigned cursor: pointer in their CSS styles in order to display the pointing hand cursor when a user hovers over them.</del> [<b>Update:</b> The cursor style has now been changed to "move". This is the better option and one I had previously overlooked.] This helps to indicate that the draggable box is an actionable object. Without this style, the default cursor in our example would have been the text selector, which is less suited to the functionality we are trying to emphasize.</p>
<h2>License</h2>
<p>The jQuery UI draggable icons are free and licensed under both the GPL and MIT licenses—the same licensing used for the jQuery JavaScript library itself. Basically, you can put the icons to any use you wish, whether personal or commercial, and you won&#8217;t have to jump through any special hoops in order to do so.</p>
<h2>Download</h2>
<p>Clicking the &#8220;Get the icons&#8221; button below will download a ZIP file containing the two icons as PNG files, a copy of the working example code, the MIT and GPL licenses and a layered PSD source file, which is useful if you wish to customize the icon images in some way.</p>
<p><a href="http://www.kombine.net/examples/icons/jquery/draggable/jquery_draggable_icons.zip"><img style="margin-bottom: -16px;" src="http://www.kombine.net/examples/icons/jquery/draggable/images/btn_gettheicons.gif" alt="Get the icons" width="138" height="42" /></a> or <a title="jQuery UI draggable icons example" href="http://www.kombine.net/examples/icons/jquery/draggable/">see the example</a></p>
<p></p>
<h2>Useful links:</h2>
<ul>
<li><a href="http://jquery.com/">Get jQuery</a></li>
<li><a href="http://ui.jquery.com/">Get jQuery UI</a></li>
<li><a href="http://docs.jquery.com/UI/Draggables">jQuery UI Draggables documentation</a></li>
<li><a href="http://docs.jquery.com/UI/Droppables">jQuery UI Droppables documentation</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/jquery-draggable-icons/feed/</wfw:commentRss>
		</item>
		<item>
		<title>WebAppers Icon Giveaway</title>
		<link>http://www.kombine.net/news/webappers-icon-giveaway/</link>
		<comments>http://www.kombine.net/news/webappers-icon-giveaway/#comments</comments>
		<pubDate>Tue, 11 Sep 2007 23:04:54 +0000</pubDate>
		<dc:creator>Kreg Wallace</dc:creator>
		
		<category><![CDATA[Icons]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/webappers-icon-giveaway/</guid>
		<description><![CDATA[Kombine and WebAppers.com are teaming up to give away a free set of the Kombine Pro toolbar icons. That&#8217;s 264 icons for your software or web application—a $59.95 value. To win, just mosey on over to the WebAppers article and post a comment stating how you intend to use the icons. A lucky winner will [...]]]></description>
			<content:encoded><![CDATA[<p>Kombine and WebAppers.com are teaming up to give away a free set of the <a href="http://www.kombine.net/icons.php">Kombine Pro toolbar icons</a>. That&#8217;s 264 icons for your software or web application—a $59.95 value. To win, just mosey on over to the <a href="http://www.webappers.com/2007/09/10/giving-away-one-set-of-264-apples-os-x-toolbar-icons/">WebAppers article</a> and post a comment stating how you intend to use the icons. A lucky winner will be picked on September 24. Good Luck!</p>
<p><a href="http://webappers.com/" title="WebAppers"><img src="http://www.kombine.net/news/wp-content/uploads/2007/09/webappers.gif" title="WebAppers" alt="WebAppers" align="middle" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/webappers-icon-giveaway/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Toolbar Icons Update</title>
		<link>http://www.kombine.net/news/toolbar-icons-update/</link>
		<comments>http://www.kombine.net/news/toolbar-icons-update/#comments</comments>
		<pubDate>Thu, 02 Aug 2007 21:40:52 +0000</pubDate>
		<dc:creator>Kreg Wallace</dc:creator>
		
		<category><![CDATA[Icons]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/?p=13</guid>
		<description><![CDATA[The Kombine toolbar icon sets have received a new update today. We&#8217;ve added 10 new icons in both 32&#215;32 pixel and 16&#215;16 pixel sizes (for a total of 20 new images). New additions to the set include icons for podcasts, music, movies, news and RSS feeds. And there&#8217;s an update to the iPhone icon (now [...]]]></description>
			<content:encoded><![CDATA[<p>The Kombine toolbar icon sets have received a new update today. We&#8217;ve added 10 new icons in both 32&#215;32 pixel and 16&#215;16 pixel sizes (for a total of 20 new images). New additions to the set include icons for podcasts, music, movies, news and RSS feeds. And there&#8217;s an update to the iPhone icon (now that we&#8217;ve finally had a look at the thing).</p>
<p>Use these icons to add a professional design touch to your web or desktop application. Check out the <a href="http://www.kombine.net/icons.php#free">free icon set</a>, which includes the new news icon, or jump right into the full <a href="http://www.kombine.net/icons.php">Pro set of 266 icons</a> for $59.95.</p>
<p><a href="http://www.kombine.net/icons.php" title="Kombine Pro toolbar icons"><img src="http://www.kombine.net/news/wp-content/uploads/2007/08/preview_pro1.png" alt="Kombine Pro toolbar icons" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/toolbar-icons-update/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Toolbar Icons</title>
		<link>http://www.kombine.net/news/toolbar-icons/</link>
		<comments>http://www.kombine.net/news/toolbar-icons/#comments</comments>
		<pubDate>Thu, 01 Feb 2007 19:09:43 +0000</pubDate>
		<dc:creator>Kreg Wallace</dc:creator>
		
		<category><![CDATA[Icons]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/?p=8</guid>
		<description><![CDATA[Today Kombine released a new set of OS X-style toolbar icons for Mac application developers. The set includes 244 toolbar icons consisting of 32 x 32 pixel and 16 x 16 pixel images. There are also a few specialized buttons in different sizes for multimedia controls and the like. These icons will fit smoothly into [...]]]></description>
			<content:encoded><![CDATA[<p>Today Kombine released a new set of <a href="http://www.kombine.net/icons.php">OS X-style toolbar icons</a> for Mac application developers. The set includes 244 toolbar icons consisting of 32 x 32 pixel and 16 x 16 pixel images. There are also a few specialized buttons in different sizes for multimedia controls and the like. These icons will fit smoothly into the look of Apple&#8217;s OS X operating system. You can use them in your shipping software product or to rapidly prototype something new. The complete set costs $59.95 and may be purchased via PayPal.</p>
<p>If you&#8217;re not ready to make a purchase right away, have a look at our set of <a href="http://www.kombine.net/icons.php#free">45 free toolbar icons</a> or check out the <a href="http://www.kombine.net/download/kombine_icons_reference.pdf">Quick Reference Card</a> for the full set.</p>
<p><a href="http://www.kombine.net/icons.php" title="Kombine Pro toolbar icons preview"><img src="http://www.kombine.net/news/wp-content/uploads/2007/08/icons_pro_thumb.png" alt="Kombine Pro toolbar icons preview" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/toolbar-icons/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Kombine Style Switcher</title>
		<link>http://www.kombine.net/news/kombine-style-switcher/</link>
		<comments>http://www.kombine.net/news/kombine-style-switcher/#comments</comments>
		<pubDate>Sun, 31 Dec 2006 05:11:51 +0000</pubDate>
		<dc:creator>Kreg Wallace</dc:creator>
		
		<category><![CDATA[Recent Work]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/?p=7</guid>
		<description><![CDATA[We recently considered redesigning our website here at Kombine. It’s a hazard of the web design profession—the urge to constantly tinker with whatever is currently online. The problem is that we still like the current (classic) design and have gotten a lot of positive feedback on it. We didn’t want to abandon it, but we’re [...]]]></description>
			<content:encoded><![CDATA[<p>We recently considered redesigning our website here at Kombine. It’s a hazard of the web design profession—the urge to constantly tinker with whatever is currently online. The problem is that we still like the current (classic) design and have gotten a lot of positive feedback on it. We didn’t want to abandon it, but we’re also interested in trying something new.</p>
<p>A solution to our dilemma arrived in the form of CSS themes. After a bit of fiddling with JavaScript and alternate stylesheets, visitors to our site can now select a theme of their choice and completely refashion the look of the site with a single click. Give it a try—you can choose a theme by selecting it in the drop-down menu in the upper-right corner of this page.</p>
<p>We’ve set up two main themes (&#8221;classic&#8221; and &#8220;cool breeze&#8221;) with large print alternatives for each. Plus there&#8217;s a high contrast version (larger print with light text on a dark background) as well as a completely unstyled version in case you’re into that sort of thing.</p>
<p>Offering alternate site themes that radically reshape page layout and design (such as switching from &#8220;classic&#8221; to &#8220;cool breeze&#8221;) makes sense on a site offering web design services, but would probably not benefit many other businesses. The ability to offer large print versions of a site however, has a universal application and should be more pervasive on the web.</p>
<p>Setting up a website for theming requires a strict separation between structure and style. We eliminated inline styles and image tags as much as possible and of course, laying out the pages with CSS rather than tables is imperative. The graphic look of our themes is created with CSS and background images and the style switching is handled with a slightly modified version of the script described in <a href="http://www.alistapart.com/articles/alternate/" title="Working With Alternate Style Sheets by Paul Sowden">this article</a> on A List Apart.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/kombine-style-switcher/feed/</wfw:commentRss>
		</item>
		<item>
		<title>Vienna with Prague</title>
		<link>http://www.kombine.net/news/vienna-with-prague/</link>
		<comments>http://www.kombine.net/news/vienna-with-prague/#comments</comments>
		<pubDate>Sat, 25 Nov 2006 03:49:55 +0000</pubDate>
		<dc:creator>Kreg Wallace</dc:creator>
		
		<category><![CDATA[Recent Work]]></category>

		<guid isPermaLink="false">http://www.kombine.net/news/?p=5</guid>
		<description><![CDATA[Some time ago, I submitted a custom CSS page style for Vienna, an open source newsreader for the Mac. Today, I went to the downloads page to update my copy of Vienna and discovered that the style I submitted, &#8220;Prague&#8221; is now bundled with the software. Sweet.
If you haven&#8217;t tried Vienna yet, give it a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.opencommunity.co.uk/vienna2.php" title="Vienna RSS Reader"><img src="http://www.kombine.net/news/wp-content/uploads/2007/08/vienna.png" title="Vienna RSS Reader icon" alt="Vienna RSS Reader icon" style="padding: 0pt 0pt 10px 10px" align="right" /></a>Some time ago, I submitted a custom CSS page style for <a href="http://www.opencommunity.co.uk/vienna2.php">Vienna</a>, an open source newsreader for the Mac. Today, I went to the <a href="http://www.opencommunity.co.uk/vienna_files.php">downloads page</a> to update my copy of Vienna and discovered that the style I submitted, &#8220;Prague&#8221; is now bundled with the software. Sweet.</p>
<p>If you haven&#8217;t tried Vienna yet, give it a shot—it&#8217;s an excellent, full-featured and free alternative to paid newsreaders. And you can give Prague a whirl by selecting it from the View / Style menu.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.kombine.net/news/vienna-with-prague/feed/</wfw:commentRss>
		</item>
	</channel>
</rss>
