<?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>It's Called Web Design &#187; click</title>
	<atom:link href="http://itscalledwebdesign.com/tag/click/feed/" rel="self" type="application/rss+xml" />
	<link>http://itscalledwebdesign.com</link>
	<description>Web 2.0 is so 2004. . . .</description>
	<lastBuildDate>Fri, 27 Jan 2012 16:59:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Flash button click-to URL</title>
		<link>http://itscalledwebdesign.com/tutorials/flash/flash-button-click-to-url/</link>
		<comments>http://itscalledwebdesign.com/tutorials/flash/flash-button-click-to-url/#comments</comments>
		<pubDate>Tue, 11 Nov 2008 16:57:24 +0000</pubDate>
		<dc:creator>eckert</dc:creator>
				<category><![CDATA[Flash]]></category>
		<category><![CDATA[button]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[url]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=555</guid>
		<description><![CDATA[Maybe if I did Flash stuff more often, I wouldn&#8217;t always forget this. If you have a button in flash that you want to click to a web URL, simply right click the object and click &#8220;convert to symbol&#8221;. Choose button and name it if you&#8217;re so inclined. Next, with your button selected, go to [...]]]></description>
			<content:encoded><![CDATA[<p>Maybe if I did Flash stuff more often, I wouldn&#8217;t always forget this.<br />
<span id="more-555"></span><br />
If you have a button in flash that you want to click to a web URL, simply right click the object and click &#8220;convert to symbol&#8221;.  Choose button and name it if you&#8217;re so inclined.</p>
<p>Next, with your button selected, go to the top nav bar and highlight &#8220;Window&#8221; then select &#8220;Behaviors&#8221;.</p>
<p>Select &#8220;+&#8221; and then &#8220;Web&#8221; &#8211; &#8220;Go to Webpage&#8221;.</p>
<p>Type in the URL and set your Open in command.</p>
<p>Click OK and you are set.</p>
]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/flash/flash-button-click-to-url/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Search Box</title>
		<link>http://itscalledwebdesign.com/tutorials/search-box/</link>
		<comments>http://itscalledwebdesign.com/tutorials/search-box/#comments</comments>
		<pubDate>Fri, 19 Sep 2008 04:16:44 +0000</pubDate>
		<dc:creator>eckert</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[absolute]]></category>
		<category><![CDATA[box]]></category>
		<category><![CDATA[click]]></category>
		<category><![CDATA[on]]></category>
		<category><![CDATA[onclick]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[search]]></category>

		<guid isPermaLink="false">http://itscalledwebdesign.com/?p=10</guid>
		<description><![CDATA[This is the search box that I always use.  It has &#62;&#62; for the button and a value of &#8220;Search&#8230;&#8221; that disappears when clicked. &#60;form method="get" id="searchform" action="http://mrcomplain.com/"&#62; &#60;div&#62;&#60;input type="text" value="Search" onclick="value=''" name="s" id="s" /&#62; &#60;input type="submit" id="searchsubmit" value="&#62;&#62;" /&#62; &#60;/div&#62; &#60;/form&#62; You can then position the search form using CSS.  The following is an  [...]]]></description>
			<content:encoded><![CDATA[<p>This is the search box that I always use.  It has &gt;&gt; for the button and a value of &#8220;Search&#8230;&#8221; that disappears when clicked.<br />
<span id="more-10"></span></p>
<pre id="line111">&lt;<span class="start-tag">form</span><span class="attribute-name"> method</span>=<span class="attribute-value">"get" </span><span class="attribute-name">id</span>=<span class="attribute-value">"searchform" </span><span class="attribute-name">action</span>=<span class="attribute-value">"http://mrcomplain.com/"</span>&gt;
&lt;<span class="start-tag">div</span>&gt;&lt;<span class="start-tag">input</span><span class="attribute-name"> type</span>=<span class="attribute-value">"text" </span><span class="attribute-name">value</span>=<span class="attribute-value">"Search" </span><span class="attribute-name">onclick</span>=<span class="attribute-value">"value=''" </span><span class="attribute-name">name</span>=<span class="attribute-value">"s" </span><span class="attribute-name">id</span>=<span class="attribute-value">"s" </span><span class="error"><span class="attribute-name">/</span></span>&gt;
&lt;<span class="start-tag">input</span><span class="attribute-name"> type</span>=<span class="attribute-value">"submit" </span><span class="attribute-name">id</span>=<span class="attribute-value">"searchsubmit" </span><span class="attribute-name">value</span>=<span class="attribute-value">"&gt;&gt;" </span><span class="error"><span class="attribute-name">/</span></span>&gt;
&lt;/<span class="end-tag">div</span>&gt;
&lt;/<span class="end-tag">form</span>&gt;</pre>
<p>You can then position the search form using CSS.  The following is an  example, but you will obviously need to change the information contained therein to make it fit on your page -</p>
<pre>#searchform {
	position: absolute;
	top: 231px;
	left: 50%;
	margin-left: -250px;
	padding: 5px 3px;
	}

#searchform #s {
	width: 135px;
	padding: 2px;
	}

#searchsubmit {
	padding: 1px;
	}</pre>
]]></content:encoded>
			<wfw:commentRss>http://itscalledwebdesign.com/tutorials/search-box/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

