<?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>AddictiveTips &#187; buttons</title>
	<atom:link href="http://www.addictivetips.com/tag/buttons/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.addictivetips.com</link>
	<description>Tips, Freewares, Downloads, Reviews, And More</description>
	<lastBuildDate>Thu, 09 Feb 2012 15:29:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>How To Add &#8220;Forward&#8221; &amp; &#8220;Find On Page&#8221; Shortcuts To IE 9 In WP Mango</title>
		<link>http://www.addictivetips.com/mobile/how-to-add-forward-find-on-page-shortcuts-to-ie-9-in-wp-mango/</link>
		<comments>http://www.addictivetips.com/mobile/how-to-add-forward-find-on-page-shortcuts-to-ie-9-in-wp-mango/#comments</comments>
		<pubDate>Tue, 25 Oct 2011 09:32:14 +0000</pubDate>
		<dc:creator>Hamza</dc:creator>
				<category><![CDATA[Mobile]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[favorites]]></category>
		<category><![CDATA[Internet Explorer 9]]></category>
		<category><![CDATA[show]]></category>
		<category><![CDATA[Windows Phone 7]]></category>
		<category><![CDATA[Windows Phone 7 Mango]]></category>

		<guid isPermaLink="false">http://www.addictivetips.com/?p=81568</guid>
		<description><![CDATA[Even though Mango is awesome, and there are a ton of new features in it, some of the changes might feel a little annoying to the users. One such controversial change is in Internet Explorer. With IE9, the interface of Windows Phone 7’s web browser has become completely uncluttered and simplistic. This might be a [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>Even though <a href="http://addictivetips.com/tag/windows-phone-7-mango">Mango</a> is awesome, and <a href="http://www.addictivetips.com/mobile/10-awesome-new-features-in-windows-phone-7-5-mango/">there are a ton of new features in it</a>, some of the changes might feel a little annoying to the users. One such controversial change is in <a href="http://addictivetips.com/tag/internet-explorer">Internet Explorer</a>. With IE9, the interface of <a href="http://addictivetips.com/tag/windows-phone-7">Windows Phone 7</a>’s web browser has become completely uncluttered and simplistic. This might be a good thing in most respects, but things can get a little annoying when you want to find a particular snippet of text on the page, and the Find Text button just isn’t there. Thanks to the development community, you can still put these functionalities in IE9 without even having an unlocked device. Read on to find out how.</p>
<p><span id="more-81568"></span></p>
<p><img style="background-image: none; margin: 0px 0px 18px; padding-left: 0px; padding-right: 0px; display: inline; float: right; padding-top: 0px; border: 0px;" title="Internet-Explorer-Windows-Phone-Mango" src="http://www.addictivetips.com/wp-content/uploads/2011/10/Internet-Explorer-Windows-Phone-Mango.jpg" alt="Internet-Explorer-Windows-Phone-Mango" width="324" height="530" align="right" border="0" />The method might sound a little un-intuitive, but it is better than nothing. It&#8217;s based upon adding a <em>forward</em> and <em>find</em> button in the favorites menu of WP7’s IE9. Here’s how you can do it.</p>
<p><strong>Instructions:</strong></p>
<ol>
</ol>
<ol>
<li>Open the Internet Explorer in your phone, and go to any page.</li>
<li>Open the options menu located below the browser’s address bar.</li>
<li>From among the opened options, choose “<em>add to favorites</em>”.</li>
<li>In the add menu, edit the name field to whatever you want the shortcut to be called. For example, you can name it “Next” for the forward button and “in-page search” for the find button.</li>
<li>Now for forward, edit the address field to<br />
javascript<strong></strong>:history.forward()</li>
<li>For creating the Find shortcut, put the following lines in the address field:</li>
</ol>
<pre>javascript:(function(){function G(){var pf=doc.getElementById('pf');var qt=doc.getElementById('qt');if(null==pf){pf=doc.createElement('div');pf.id='pf';var s=pf.style;s.position='absolute';s.zIndex='99';s.top=(scT||scBT)+'px';s.left=(scL||scBL)+'px';s.width='100%';s.backgroundColor='#FFFF00';pf.appendChild(doc.createTextNode('Search: '));qt=doc.createElement('input');qt.id='qt';qt.type='text';pf.appendChild(qt);var sb=doc.createElement('input');sb.type='button';sb.value='Find';sb.onclick=function(){P(qt.value)};pf.appendChild(sb);doc.body.appendChild(pf);}else{pf.style.display='inline';count=0;}}function P(s){document.getElementById('pf').style.display='none';if(s==='')return;var n=srchNode(document.body,s.toUpperCase(),s.length);alert("Found "+count+" occurrence"+(count==1?"":"s")+" of '"+s+"'.");pf.parentNode.removeChild(pf);return n;}function srchNode(node,te,len){var pos,skip,spannode,middlebit,endbit,middleclone;skip=0;if(node.nodeType==3){pos=node.data.toUpperCase().indexOf(te);if(pos&gt;=0){spannode=document.createElement("SPAN");spannode.style.backgroundColor="red";middlebit=node.splitText(pos);endbit=middlebit.splitText(len);middleclone=middlebit.cloneNode(true);spannode.appendChild(middleclone);middlebit.parentNode.replaceChild(spannode,middlebit);++count;skip=1;}}else{if(node.nodeType==1&amp;&amp;node.childNodes&amp;&amp;node.tagName.toUpperCase()!="SCRIPT"&amp;&amp;node.tagName.toUpperCase!="STYLE"){for(var child=0;child&lt;node.childNodes.length;++child){child=child+srchNode(node.childNodes[child],te,len);}}}return skip;}var count=0,scL=0,scT=0,scBL=0,scBT=0;var w=window,doc=document;if(typeof doc.body!='undefined'&amp;&amp;typeof doc.body.scrollLeft!='undefined'){scBL=doc.body.scrollLeft;scBT=doc.body.scrollTop;}if(typeof doc.documentElement!='undefined'&amp;&amp;typeof doc.documentElement.scrollLeft!='undefined'){scL=doc.documentElement.scrollLeft;scT=doc.documentElement.scrollTop;}G();})()</pre>
<p>If you don’t want to do all that typing, visit this page (that you are currently reading) on your mobile phone, and copy/paste the above code to the address field of the bookmark.</p>
<ol>Now, whenever you want to make use of these functions, open the favorites tab and get cracking.</ol>
<h6>[via <a href="http://www.liveside.net/2011/10/21/tip-how-to-get-forward-and-find-on-page-back-in-ie9-mobile-on-windows-phone-7-5/">LiveSide.net</a>]</h6>
</div><h3>More On AddictiveTips Right Now</h3>

<ul>
		
	<li >
		<a href="http://www.addictivetips.com/mobile/add-connectivity-shortcuts-to-windows-phone-mango-start-screen/" class="related-image"><img src="http://www.addictivetips.com/wp-content/uploads/2011/09/ConnectivityShortcuts-185x130.jpg" width="150" height="105"/></a><a href="http://www.addictivetips.com/mobile/add-connectivity-shortcuts-to-windows-phone-mango-start-screen/" rel="bookmark">Add Connectivity Shortcuts To Windows Phone Mango Start Screen</a></li>
	
		
	<li >
		<a href="http://www.addictivetips.com/internet-tips/customize-firefox-shortcuts-to-perform-actions-customizable-shortcuts/" class="related-image"><img src="http://www.addictivetips.com/wp-content/uploads/2011/05/customizable-shortcuts-185x130.jpg" width="150" height="105"/></a><a href="http://www.addictivetips.com/internet-tips/customize-firefox-shortcuts-to-perform-actions-customizable-shortcuts/" rel="bookmark">Customize Firefox Shortcuts To Perform Actions Using Customizable Shortcuts</a></li>
	
		
	<li >
		<a href="http://www.addictivetips.com/mobile/facebook-page-likes-widget-for-android-shows-page-likes-on-homescreen/" class="related-image"><img src="http://www.addictivetips.com/wp-content/uploads/2011/04/Registeringapage-185x130.jpg" width="150" height="105"/></a><a href="http://www.addictivetips.com/mobile/facebook-page-likes-widget-for-android-shows-page-likes-on-homescreen/" rel="bookmark">Facebook-Page Likes Widget For Android Shows Page Likes On Homescreen</a></li>
	
	
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.addictivetips.com/mobile/how-to-add-forward-find-on-page-shortcuts-to-ie-9-in-wp-mango/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Lock/Unlock Keyboard Keys Or Mouse Buttons Easily</title>
		<link>http://www.addictivetips.com/windows-tips/how-to-lockunlock-keyboard-keys-or-mouse-buttons-easily/</link>
		<comments>http://www.addictivetips.com/windows-tips/how-to-lockunlock-keyboard-keys-or-mouse-buttons-easily/#comments</comments>
		<pubDate>Fri, 20 Feb 2009 11:56:26 +0000</pubDate>
		<dc:creator>Nakodari</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[howto]]></category>
		<category><![CDATA[kayboard]]></category>
		<category><![CDATA[kidkeylock]]></category>
		<category><![CDATA[kids]]></category>
		<category><![CDATA[lock]]></category>
		<category><![CDATA[mouse]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tool]]></category>
		<category><![CDATA[unlock]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.addictivetips.com/windows-tips/how-to-lockunlock-keyboard-keys-or-mouse-buttons-easily/</guid>
		<description><![CDATA[What’s the point of locking keyboard keys or mouse buttons? It’s the first question that comes to mind. If you are using a wheel mouse like me, you will know that there is a middle button. I have pressed this button thousand of times by mistake while scrolling down webpages, so I need to disable [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>What’s the point of locking keyboard keys or mouse buttons? It’s the first question that comes to mind. If you are using a wheel mouse like me, you will know that there is a middle button. I have pressed this button thousand of times by mistake while scrolling down webpages, so I need to disable it in some way. <a href="http://www.100dof.com/kidkeylock.html">Kid-Key-Lock</a> is a simple free program that lets you lock keyboard and mouse functions easily.</p>
<p>Once you run this tool, it will sit silently on the system tray. Double-click this program icon and a Setup window will open.</p>
<p><img title="kid key lock setup" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="370" alt="kid key lock setup" src="http://www.addictivetips.com/wp-content/uploads/2009/02/kidkeylocksetup.jpg" width="421" border="0" /></p>
<p> <span id="more-4217"></span>
<p>Now there is a quick way to lock/unlock buttons. Just right-click the icon, go to Locks and select the function you want to lock/unlock.</p>
<p><img title="lock-unlock keyboard and mouse fucntions" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="313" alt="lock-unlock keyboard and mouse fucntions" src="http://www.addictivetips.com/wp-content/uploads/2009/02/lockunlockkeyboardandmousefucntions.jpg" width="444" border="0" /> </p>
<p>When I am browsing the web or watching a movie, I usually lock the keyboard. Once done, I can unlock it within seconds. During setup, you can also choose this tool to run during startup. It is the fastest lock/unlock tool I have come across which doesn&#8217;t take much system resources to run. Enjoy!</p>
</div><h3>More On AddictiveTips Right Now</h3>

<ul>
		
	<li >
		<a href="http://www.addictivetips.com/windows-tips/lock-keyboard-mouse-cd-drive-of-your-windows-pc/" class="related-image"><img src="http://www.addictivetips.com/wp-content/uploads/2010/10/toddler1-185x130.jpg" width="150" height="105"/></a><a href="http://www.addictivetips.com/windows-tips/lock-keyboard-mouse-cd-drive-of-your-windows-pc/" rel="bookmark">Lock Keyboard, Mouse, CD Drive With Toddler Keys</a></li>
	
		
	<li >
		<a href="http://www.addictivetips.com/windows-tips/lock-your-keyboard-and-mouse-with-keyfreeze/" class="related-image"><img src="http://www.addictivetips.com/wp-content/uploads/2011/02/KeyFreeze-185x130.jpg" width="150" height="105"/></a><a href="http://www.addictivetips.com/windows-tips/lock-your-keyboard-and-mouse-with-keyfreeze/" rel="bookmark">Lock Your Keyboard And Mouse With KeyFreeze</a></li>
	
		
	<li >
		<a href="http://www.addictivetips.com/mac-os/lock-me-now-easily-enable-keyboard-shortcut-to-lock-your-screen-mac/" class="related-image"><img src="http://www.addictivetips.com/wp-content/uploads/2012/01/Lock-Me-Now-150x105.jpg" width="150" height="105"/></a><a href="http://www.addictivetips.com/mac-os/lock-me-now-easily-enable-keyboard-shortcut-to-lock-your-screen-mac/" rel="bookmark">Lock Me Now: Easily Enable Keyboard Shortcut To Lock Your Screen [Mac]</a></li>
	
	
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.addictivetips.com/windows-tips/how-to-lockunlock-keyboard-keys-or-mouse-buttons-easily/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Create Buttons For Your Website Or Blog Instantly With DeKnop</title>
		<link>http://www.addictivetips.com/windows-tips/create-buttons-for-your-website-or-blog-instantly-with-deknop/</link>
		<comments>http://www.addictivetips.com/windows-tips/create-buttons-for-your-website-or-blog-instantly-with-deknop/#comments</comments>
		<pubDate>Tue, 13 Jan 2009 16:17:29 +0000</pubDate>
		<dc:creator>Nakodari</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[blog]]></category>
		<category><![CDATA[buttons]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[editing]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[graphic]]></category>
		<category><![CDATA[how]]></category>
		<category><![CDATA[how to]]></category>
		<category><![CDATA[website]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://www.addictivetips.com/windows-tips/create-buttons-for-your-website-or-blog-instantly-with-deknop/</guid>
		<description><![CDATA[If you are looking for a tool that can help create some professional looking buttons without any graphic design experience, you came to the right place. DeKnop(dutch for “The Button”) is a free graphic editing tool that is designed specifically for creating buttons for your website or blog instantly. By default it comes with two [...]]]></description>
			<content:encoded><![CDATA[<div class="KonaBody"><p>If you are looking for a tool that can help create some professional looking buttons without any graphic design experience, you came to the right place. <a href="http://deknop.sjfrancke.nl/index.html">DeKnop</a>(dutch for “The Button”) is a free graphic editing tool that is designed specifically for creating buttons for your website or blog instantly. By default it comes with two languages Netherlands and English, if you are looking to add your local language you can download the language pack from their website and install it separately.</p>
<p><span id="more-3579"></span></p>
<p>After you have installed the program, you will see the default button load up. You can play around for few minutes to familiarize yourself with this tool since it is a little tricky.</p>
<p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="DeKnop creating button" src="http://www.addictivetips.com/wp-content/uploads/2009/01/deknopcreatingbutton.jpg" border="0" alt="DeKnop creating button" width="544" height="429" /></p>
<p>The best way to start is to navigate to neo buttons tab and enable the checkbox. Under caption type the name that you would like to include in the button and press the *Green Plus* button next to it.</p>
<p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="neobook buttons" src="http://www.addictivetips.com/wp-content/uploads/2009/01/neobookbuttons.jpg" border="0" alt="neobook buttons" width="544" height="429" /></p>
<p>Now you can use different tabs to edit the font, style, text, positions, textures, gradient, colors, etc. Once you are done your button will be previewed below. To save the button, click Files &gt; Save Project. Here is the image of the button I created after playing around for 5 minutes.</p>
<p><img style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" title="up_addictivetips" src="http://www.addictivetips.com/wp-content/uploads/2009/01/up-addictivetips.jpg" border="0" alt="up_addictivetips" width="304" height="104" /></p>
<p>Doesn’t it look hot? <img src='http://www.addictivetips.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Enjoy!</p>
<p><strong>Note:</strong> Few people are having trouble finding the download link on their website, you can download directly from <a href="http://deknop.sjfrancke.nl/deknop.zip">here</a>.</p>
</div><h3>More On AddictiveTips Right Now</h3>

<ul>
		
	<li >
		<a href="http://www.addictivetips.com/internet-tips/how-to-create-your-own-website-or-blog-for-free-using-weebly/" class="related-image"><img src="http://www.addictivetips.com/wp-content/uploads/2008/10/untitled24-185x130.jpg" width="150" height="105"/></a><a href="http://www.addictivetips.com/internet-tips/how-to-create-your-own-website-or-blog-for-free-using-weebly/" rel="bookmark">How To Create Your Own Website Or Blog For Free Using Weebly</a></li>
	
		
	<li >
		<a href="http://www.addictivetips.com/internet-tips/website-indexer/" class="related-image"><img src="http://www.addictivetips.com/wp-content/uploads/2010/07/websiteindexer-185x130.jpg" width="150" height="105"/></a><a href="http://www.addictivetips.com/internet-tips/website-indexer/" rel="bookmark">Get Your Blog Or Website Indexed With Website Indexer</a></li>
	
		
	<li >
		<a href="http://www.addictivetips.com/internet-tips/how-to-extract-colors-from-any-website-or-blog/" class="related-image"><img src="http://www.addictivetips.com/wp-content/uploads/2009/02/extractcolorsfromwebsites-185x130.jpg" width="150" height="105"/></a><a href="http://www.addictivetips.com/internet-tips/how-to-extract-colors-from-any-website-or-blog/" rel="bookmark">How To Extract Colors From Any Website Or Blog</a></li>
	
	
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.addictivetips.com/windows-tips/create-buttons-for-your-website-or-blog-instantly-with-deknop/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

