<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2enclosuresfull.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>Creative Grease</title>
	
	<link>http://hotgluemedia.com/blog</link>
	<description>stains on the driveway of hot glue media</description>
	<lastBuildDate>Thu, 29 Jul 2010 23:05:04 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CreativeGrease" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="creativegrease" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">CreativeGrease</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>WordPress Custom Fields Explained For Normal People (I hope)</title>
		<link>http://hotgluemedia.com/blog/wordpress-custom-fields-explained-for-normal-people-i-hope/</link>
		<comments>http://hotgluemedia.com/blog/wordpress-custom-fields-explained-for-normal-people-i-hope/#comments</comments>
		<pubDate>Thu, 29 Jul 2010 22:45:14 +0000</pubDate>
		<dc:creator>mer</dc:creator>
				<category><![CDATA[Tech Splatters]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=632</guid>
		<description><![CDATA[I was sitting here trying to write up a post on how to make e-commerce a little bit easier, and I got hung up. My favorite solution for simplifying e-commerce is to use custom fields in WordPress, and they&#8217;re really easy to use, but really hard to explain to someone who isn&#8217;t already familiar with [...]]]></description>
			<content:encoded><![CDATA[<p>I was sitting here trying to write up a post on how to make e-commerce a little bit easier, and I got hung up. My favorite solution for simplifying e-commerce is to use custom fields in WordPress, and they&#8217;re really easy to use, but really hard to explain to someone who isn&#8217;t already familiar with them. Worse yet, they&#8217;re based on fundamental WordPress concepts that normal people never have to deal with. After all, we use WordPress so that a lot of the complicated programmery stuff is already done for us. So if I&#8217;m going to describe custom fields, I need to explain how pretty much all of WordPress works in the process.</p>
<p>The payoff will be my next post on how to use Paypal and WordPress Custom Fields to create simple, elegant and fast e-commerce pages. Stay tuned for that.</p>
<p>So, what is a custom field? It&#8217;s a key/value pair. What the hell does that mean?</p>
<p>In WordPress, there is a fundamental divide between data and display (it&#8217;s a simplistic view, but if that bugs you, you probably don&#8217;t need to read this article, then). If you&#8217;ve ever installed WordPress before, you know that it&#8217;s a two-part operation: you upload .php files to your server, and you connect those files to a mySQL database. The parts that display live on the server, and the data lives in the database.</p>
<p>Imagine making 100 people fill out a form. Each person fills out the same form with different information. Think of it as 1 form filled out 100 times. Now, go find a magician, and give him your stack of 100 forms. He will shake them over a box so all the words fall off into the box, hand you the box, and leave. Now you&#8217;ve really got something interesting.</p>
<p>Sit down with your box-full-of-words and declare &#8220;Show me the name and age of the 61st person!&#8221; Out of the box flies &#8220;Margaret V., 34&#8243;. Next, declare &#8220;Show me the name, age, and eye color of all the people named John!&#8221; The details for four different Johns appears. &#8220;Show me the last form filled out!&#8221; and the information person 100 put down appears.</p>
<p>Are you getting the idea? The magical box-full-of-words is your mySQL database, and your commands are the .php files on your server. When you look at a .php file on the internet, the .php files say &#8220;<strong>TITLE</strong> goes here, <strong>DATE</strong> goes over there and the <strong>CONTENT</strong> goes underneath that&#8221;, reaches into the database, pulls out, say, post #34, and populates <strong>TITLE</strong>, <strong>DATE</strong>, and <strong>CONTENT</strong> with the information saved under that post.</p>
<p>It might be something like:</p>
<blockquote>
<h4>My Day</h4>
<p><em>posted 3/04/2010</em></p>
<p>Today was wonderful! I got icecream!</p></blockquote>
<p>So, are you starting to get an idea of how the data is stored? For post #34,</p>
<ul>
<li><strong>TITLE</strong>:My Day,</li>
<li><strong>DATE</strong>:03.04.2010</li>
<li><strong>CONTENT</strong>:Today was wonderful! I got icecream!</li>
</ul>
<p>For post #35, it could be</p>
<ul>
<li><strong>TITLE</strong>:I have a Cat</li>
<li><strong>DATE</strong>:03.26.2010</li>
<li><strong>CONTENT</strong>:My cat is really cute when she lays on her back</li>
</ul>
<p>We have defined information types, and the various information filed under them. The information types are <strong>KEYS</strong>, and the various information under are the <strong>VALUES</strong>. Collectively, we make <strong>KEY/VALUE PAIRS</strong>.</p>
<p>WordPress comes with tons of pre-defined key/value pairs already. Why do you care? Because you can take those <strong>KEYS</strong>, and put them in the .php files in your WordPress theme and make them display <strong>VALUES</strong>.</p>
<p>One of the things that&#8217;s awesome about WordPress is that, if you like, you can make up your own keys on the fly, and display them in your themes. That&#8217;s what a custom field is. (We&#8217;ve finally come back around to what a custom field is, yay!) A custom field is just an arbitrary key/value pair that you make up and use for your own sinister purposes.</p>
<p>For example, say you want your blog posts to display your mood. In your post, you go to your custom field, create a new key called &#8220;mood&#8221;, then set it to &#8220;bouncy&#8221;. Then, in your theme, under<strong> TITLE</strong>, <strong>DATE</strong> and <strong>CONTENT</strong>, you can add <strong>MOOD</strong>, and for every post you put a &#8220;mood&#8221; custom field in, it&#8217;ll output your mood in the blog.</p>
<p>Cool, huh?</p>
<p>I’ve tried to make this really simple, but what I hope was conveyed is that custom fields can be a powerful tool. In my next post, I’ll show you how you can use custom fields to create a quick-n-dirty e-commerce application for your WordPress website.</p>
<p>If you have any questions at all, please hit me up in the comments. I would HATE to have gone through all that and still be unclear.</p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/wordpress-custom-fields-explained-for-normal-people-i-hope/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Hyphen Available Now!, or, Well That Was Fast</title>
		<link>http://hotgluemedia.com/blog/hyphen-available-now-or-well-that-was-fast/</link>
		<comments>http://hotgluemedia.com/blog/hyphen-available-now-or-well-that-was-fast/#comments</comments>
		<pubDate>Mon, 19 Jul 2010 22:37:19 +0000</pubDate>
		<dc:creator>mer</dc:creator>
				<category><![CDATA[Audio]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=620</guid>
		<description><![CDATA[Everything keeps happening here at once. Hyphen was released by Mangatune this weekend, and it&#8217;s already been featured in an ambient music podcast! Ok, so, it&#8217;s the Magnatune promotional ambient music podcast, so it&#8217;s not THAT big of a deal, but still. Kinda cool. Hyphen hasn&#8217;t made it out to iTunes or the Amazon music [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://hotgluemedia.com/blog/wp-content/uploads/2010/07/hyphen-front-rev.jpg" rel="lightbox[620]"><img class="alignleft size-medium wp-image-611" title="hyphen-front-rev" src="http://hotgluemedia.com/blog/wp-content/uploads/2010/07/hyphen-front-rev-300x300.jpg" alt="Hyphen cover" width="300" height="300" /></a>Everything keeps happening here at once. Hyphen was released by <a href="http://magnatune.com/artists/albums/brain-hyphen">Mangatune this weekend</a>, and it&#8217;s already been featured in an ambient music podcast!</p>
<p>Ok, so, it&#8217;s the <a href="http://magnatune.com/podcasts/details/magnatune_ambient_podcast_2010_07_17">Magnatune promotional ambient music podcast</a>, so it&#8217;s not THAT big of a deal, but still. Kinda cool.</p>
<p>Hyphen hasn&#8217;t made it out to iTunes or the Amazon music store yet, that takes a couple of weeks, but if you want to purchase a copy now, <a href="http://braindouche.bandcamp.com/album/hyphen">I&#8217;ve published a copy of Hyphen at Bandcamp</a>. The individual tracks are a buck a piece, and I&#8217;ve set the album price to &#8220;whatever you like, as long as it&#8217;s 8 bucks or more&#8221;. Why would you want to pay more? You might love me, and be excited to know that this money is direct artist support, or if you pay $15 or more I&#8217;ll send you a physical CD to go along with your digital download. Shipping and handling will even be included. Ain&#8217;t that cool?</p>
<p>That&#8217;s not the only option, either. You can also go to Magnatune and <a href="http://magnatune.com/downloads">subscribe as a member</a>, and for $15 a month you can download Hyphen and every other album available on the website, DRM-free.</p>
<p>If you want to license a tune from this album, and use it attribution-free in whatever wacky project you have going on, Magnatune can <a href="https://magnatune.com/artists/license/?artist=Braindouche&amp;album=Hyphen&amp;genre=Ambient&amp;sitePrefix=">help you out</a> there. (And then send me a note. I love wacky projects.)</p>
<p>If you&#8217;ve got a podcast or a blog and you want to review Hyphen, kill some time talking to me, or play some of my music, <a href="http://www.hotgluemedia.com/contact/">just drop me a line</a>, and I&#8217;ll be happy to work with you.</p>
<p>And, finally, go to <a href="http://braindouche.net/">Braindouche!</a> and subscribe to the goddamn podcast already. It&#8217;s music and stuff. Some of it is quite pretty. It&#8217;s <strong>free</strong>.</p>
<p>So, to review:</p>
<p><a href="http://braindouche.bandcamp.com/album/hyphen">Buy Hyphen from me. </a></p>
<p><a href="http://magnatune.com/downloads">Buy a subscription at my label.</a></p>
<p><a href="http://braindouche.net/">Subscribe for free to my podcast. </a></p>
<p><a href="http://www.hotgluemedia.com/contact/">Drop me a line. </a></p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/hyphen-available-now-or-well-that-was-fast/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Stupid Internet Trick #313: Track a Package</title>
		<link>http://hotgluemedia.com/blog/stupid-internet-trick-313-track-a-package/</link>
		<comments>http://hotgluemedia.com/blog/stupid-internet-trick-313-track-a-package/#comments</comments>
		<pubDate>Sun, 18 Jul 2010 00:04:18 +0000</pubDate>
		<dc:creator>dani</dc:creator>
				<category><![CDATA[Random Drips]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=615</guid>
		<description><![CDATA[I don&#8217;t know about you, but I find tracking packages through the major carrier websites cumbersome. Tracking a package should be a simple, fast thing, yanno? Well, many thanks to Google for making it so. All you need to do is search for your tracking number, and you&#8217;ll get a link that says &#8220;track $carrier [...]]]></description>
			<content:encoded><![CDATA[<p>I don&#8217;t know about you, but I find tracking packages through the major carrier websites cumbersome. Tracking a package should be a simple, fast thing, yanno? Well, many thanks to Google for making it so. All you need to do is search for your tracking number, and you&#8217;ll get a link that says &#8220;track $carrier package $number&#8221;:<br />
<img class="alignnone size-medium wp-image-616" title="Track a Package" src="http://hotgluemedia.com/blog/wp-content/uploads/2010/07/Untitled-1-300x142.jpg" alt="track a Package" width="300" height="142" /></p>
<p>Click that link, and poof! You know where your package is.</p>
<p>I&#8217;ve been using this trick for years &#8211; probably read about it on Lifehacker or something &#8211; but I find that it&#8217;s something a lot of people don&#8217;t have in their database-o-internet-tricks. Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/stupid-internet-trick-313-track-a-package/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Announcing the release of my first album, Hyphen!</title>
		<link>http://hotgluemedia.com/blog/announcing-the-release-of-my-first-album-hyphen/</link>
		<comments>http://hotgluemedia.com/blog/announcing-the-release-of-my-first-album-hyphen/#comments</comments>
		<pubDate>Sat, 17 Jul 2010 00:57:03 +0000</pubDate>
		<dc:creator>mer</dc:creator>
				<category><![CDATA[Audio]]></category>
		<category><![CDATA[Random Drips]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=610</guid>
		<description><![CDATA[In the next 2 weeks or so, I, your humble web geek, will be releasing my first album, Hyphen. It&#8217;s experimental dark ambient music, and it&#8217;s coming out on the Magnatune label. How freakin&#8217; cool is that? The short version of the story goes something like this: I started 4 years ago, noodling around with [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://hotgluemedia.com/blog/wp-content/uploads/2010/07/hyphen-front-rev.jpg" rel="lightbox[610]"><img class="size-medium wp-image-611 alignleft" title="hyphen-front-rev" src="http://hotgluemedia.com/blog/wp-content/uploads/2010/07/hyphen-front-rev-300x300.jpg" alt="" width="300" height="300" /></a>In the next 2 weeks or so, I, your humble web geek, will be releasing my first album, Hyphen. It&#8217;s experimental dark ambient music, and it&#8217;s coming out on the Magnatune label.</p>
<p>How freakin&#8217; cool is that?</p>
<p>The short version of the story goes something like this: I started 4 years ago, noodling around with sound software and publishing it on a podcast, and then one day listened to a new Magnatune dark ambient album and thought &#8220;hell, I make music like this, and better&#8221;. I sent off some tracks to the label, they came back with a yes, and here we are.</p>
<p>The album cover is Dani&#8217;s work, and it&#8217;s a confirmed <em>awesome</em>.</p>
<p>As I get to it, there will be more information on the podcast site, <a href="http://braindouche.net/">braindouche.net</a>, but here&#8217;s what we know now: the release won&#8217;t be for a little while yet, but I&#8217;ll let you know when it&#8217;s live. It&#8217;ll be available for purchase on iTunes, Amazon MP3, and a few other places too, you can choose to get a subscription to Magnatune and get my album and a boatload of other great music for not a whole lot a month, and in the not-too-distant-future I will get some physical CDs printed up and let everyone know ahead of time, so we can have fun with preorders and whatnot.</p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/announcing-the-release-of-my-first-album-hyphen/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Featured Project: Rancho Puma</title>
		<link>http://hotgluemedia.com/blog/featured-project-rancho-puma/</link>
		<comments>http://hotgluemedia.com/blog/featured-project-rancho-puma/#comments</comments>
		<pubDate>Sat, 10 Jul 2010 04:30:47 +0000</pubDate>
		<dc:creator>dani</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=538</guid>
		<description><![CDATA[Late last year, we were contacted by a fellow Pennsylvanian (well, we were still Pennsylvanians at the time) via our Etsy shop with a new-to-us logo request: design a retro, lounge-style logo for a home that didn&#8217;t yet exist. Brief The client and her family were searching for the perfect vacation home in sunny California. [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-medium wp-image-594" title="Rancho Puma Final Logo" src="http://hotgluemedia.com/blog/wp-content/uploads/2010/07/Final-Logo-300x207.png" alt="Rancho Puma Final Logo" width="300" height="207" /></p>
<p>Late last year, we were contacted by a fellow Pennsylvanian (well, we were still Pennsylvanians at the time) via our <a href="http://www.etsy.com/shop/hotgluemedia">Etsy shop</a> with a new-to-us logo request: design a retro, lounge-style logo for a home that didn&#8217;t yet exist.</p>
<h3>Brief</h3>
<p>The client and her family were searching for the perfect vacation home in sunny California. Daydreams and plans led to a name and a decorating scheme, and they wanted to surprise a family member with notepads, towels, etc. personalized with the vacation home&#8217;s signature feel. The client&#8217;s initial concept was for a highly detailed, illustrated logo with multiple elements. To keep costs down, and to maximize suitability for embroidery and screenprinting, we worked with the client to create a simplified logo that maintained the relaxing-with-a-martini, retro lounge feel that they desired.</p>
<h3>Design</h3>
<p>After a few preliminary sketches, I headed straight for our font library. I played with a wide variety of retro fonts (boy howdy, do I love <a href="http://www.fontdiner.com/">Font Diner</a>) to create a number of electrodoodles inspired by drive-in movie signs, refrigerator emblems, hotels in Wildwood, NJ, retro geometry, and the shows I watched on TV Land as a kid (back when TV Land was still Nick at Nite. Hell, back when Nick at Nite was just, yanno, nighttime programming on Nickelodeon.) In the end, I presented three concepts:</p>
<p><a href="http://hotgluemedia.com/blog/wp-content/uploads/2010/07/09SAM-01-Initial-Concepts_Page_2-791x1024.png" rel="lightbox[538]"><img class="alignnone size-medium wp-image-589" title="Rancho Puma Initial Logo Concepts" src="http://hotgluemedia.com/blog/wp-content/uploads/2010/07/09SAM-01-Initial-Concepts_Page_2-231x300.png" alt="Rancho Puma Initial Logo Concepts" width="231" height="300" /></a></p>
<p>The bottom &#8220;bracketed&#8221; logo breaks all the damn rules. It&#8217;s hard to read. It wouldn&#8217;t embroider well. It&#8217;s hard to read. (Yes, that&#8217;s worth mentioning twice.) It&#8217;s still my favorite of the three, maybe because it looks like it should be the sign for a smoky underground lounge.</p>
<p>The center logo is sweet and saucy retro with a bit of slinky feline impact. Donna Reed meets Julie Newmar, if you will.</p>
<p>A variation of the top logo concept, with a splash of color, became the final logo, shown at the beginning of this post.</p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/featured-project-rancho-puma/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Facebook Fan Page Basics – Add a Blog</title>
		<link>http://hotgluemedia.com/blog/facebook-fan-page-basics-add-a-blog/</link>
		<comments>http://hotgluemedia.com/blog/facebook-fan-page-basics-add-a-blog/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 10:35:11 +0000</pubDate>
		<dc:creator>dani</dc:creator>
				<category><![CDATA[Social Media]]></category>
		<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=533</guid>
		<description><![CDATA[Another nifty thing you can do with your Facebook fan page is import your blog automatically via RSS, using the BlogTab application. Here&#8217;s how: Visit the BlogTab page and click the blue &#8220;Go To Application&#8221; button on the left. Review the request for permission and click &#8220;Allow&#8221; to proceed. Enter your blog&#8217;s RSS feed in [...]]]></description>
			<content:encoded><![CDATA[<p>Another nifty thing you can do with your <a href="http://hotgluemedia.com/blog/how-to-add-video-to-your-facebook-fan-page">Facebook fan page</a> is import your blog automatically via RSS, using the <a href="http://www.facebook.com/blogtab">BlogTab</a> application. Here&#8217;s how:</p>
<ol>
<li>Visit the <a href="http://www.facebook.com/blogtab">BlogTab page</a> and click the blue &#8220;Go To Application&#8221; button on the left.</li>
<li>Review the request for permission and click &#8220;Allow&#8221; to proceed.</li>
<li>Enter your blog&#8217;s RSS feed in the space provided, and click &#8220;Add Blog&#8221;.<br />
<strong>Note:</strong> this app requires an XML feed. If you&#8217;re running a self-hosted WordPress blog, this is likely http://yourblog.com/feed. However, if you&#8217;re using Feedburner, you&#8217;ll need to append &#8220;?format=xml&#8221; (without quotes) to the end of your Feedburner URL. For example, the Feedburner URL for this blog is <a href="http://feeds.feedburner.com/CreativeGrease" target="_blank">http://feeds.feedburner.com/CreativeGrease</a>, but the XML feed address required here is <a href="http://feeds.feedburner.com/CreativeGrease?format=xml" target="_blank">http://feeds.feedburner.com/CreativeGrease?format=xml</a>.</li>
<li>After your blog has been added, click the <a href="http://apps.facebook.com/myblogtab/pages.php">&#8220;Pages&#8221; tab</a> at the top of the BlogTab app page. You should see your Facebook Fan Pages listed. Tick the box for the Fan Page where you would like your blog to appear, and then click &#8220;Authorize&#8221;.</li>
<li>Return to the <a href="http://www.facebook.com/blogtab">main BlogTab page</a> and click the &#8220;Add to my Page&#8221; link on the left. Click the &#8220;Add to Page&#8221; button for the Page you&#8217;d like to add your blog to, and click Close.</li>
<li>Visit your Fan Page: click the &#8220;Account&#8221; dropdown in the upper right corner of the screen, and select the &#8220;Manage Pages&#8221; link to view a list of your fan pages. Click the &#8220;Go To Page&#8221; button directly to the right of the Page you wish to visit.</li>
<li>Click the plus sign on the rightmost tab on your Fan Page to add a new tab, and select &#8220;Blog&#8221;.</li>
<li>Poof! Your newest blog entries will appear on the &#8220;Blog&#8221; tab of your Fan Page.</li>
</ol>
<p>The unfortunate downside to this app is that it only lets you (that is, your personal Facebook account) have one blog feed. So if you have several Fan Pages for unrelated things, you&#8217;re limited to only one of them having a blog. (Unless you blog about all of them in one place; in that case, more power to you.)</p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/facebook-fan-page-basics-add-a-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Embedding Flash in a WordPress Post</title>
		<link>http://hotgluemedia.com/blog/embedding-flash-in-a-wordpress-post/</link>
		<comments>http://hotgluemedia.com/blog/embedding-flash-in-a-wordpress-post/#comments</comments>
		<pubDate>Tue, 29 Jun 2010 15:58:05 +0000</pubDate>
		<dc:creator>dani</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=526</guid>
		<description><![CDATA[There&#8217;s a thread on the WordPress forum over at LinkedIn about embedding SWF files in WordPress. We&#8217;ve used Kimili Flash Embed quite successfully in the past on several occasions (for example, it&#8217;s what we used to embed the SimpleViewer galleries here), with the following code: View Code [kml_flashembed publishmethod=&#34;static&#34; fversion=&#34;8.0.0&#34; movie=&#34;http://URLOFSWFFILE.swf&#34; width=&#34;800&#34; bgcolor=&#34;000000&#34; height=&#34;600&#34; targetclass=&#34;flashmovie&#34; [...]]]></description>
			<content:encoded><![CDATA[<p>There&#8217;s a thread on the WordPress forum over at LinkedIn about embedding SWF files in WordPress. We&#8217;ve used <a href="http://kimili.com/plugins/kml_flashembed">Kimili Flash Embed</a> quite successfully in the past on several occasions (for example, it&#8217;s what we used to embed the SimpleViewer galleries <a href="http://handmodelusa.com">here</a>), with the following code:</p>
<p><a class="dirtycode" title="Code" href="javascript:toggleLayer('dirtycode5261');">View Code</a></p>
<div id="dirtycode5261" class="dirtycode"><code>[kml_flashembed publishmethod=&quot;static&quot; fversion=&quot;8.0.0&quot; movie=&quot;http://URLOFSWFFILE.swf&quot; width=&quot;800&quot; bgcolor=&quot;000000&quot; height=&quot;600&quot; targetclass=&quot;flashmovie&quot; fvars=&quot;xmlDataPath = http://URLOFXMLFILE.xml&quot; ]<br />
<br />&lt;a href=&quot;http://adobe.com/go/getflashplayer&quot;&gt;&lt;img src=&quot;http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif&quot; alt=&quot;Get Adobe Flash player&quot; /&gt;&lt;/a&gt;<br />
<br />[/kml_flashembed]</code></div>
<p>That&#8217;s copied from the HTML tab &#8211; I don&#8217;t generally use the Visual Editor, so I can&#8217;t speak to the output of the Kimili button.</p>
<p>But once I thought about it for a while, I realized that I&#8217;ve embedded SWF files in other places as well, with nothing more than some basic embed codes in the HTML editor, like so:</p>
<p><object type="application/x-shockwave-flash" data="http://hotgluemedia.com/blog/slideshow.swf?file=http://hotgluemedia.com/blog/slideshows/main/slideshow.xml" width="260" height="179"><param name="movie" value="http://hotgluemedia.com/blog/slideshow.swf?file=http://hotgluemedia.com/blog/slideshows/main/slideshow.xml" /><img src="banner.gif" width="260" height="179" alt="banner" /></object></p>
<p>It&#8217;s a basic SWF slideshow with associated XML file, but it&#8217;s embedded with the help of no plugins at all using the following code:</p>
<p><a class="dirtycode" title="Code" href="javascript:toggleLayer('dirtycode5262');">View Code</a></p>
<div id="dirtycode5262" class="dirtycode"><code>&lt;object type=&quot;application/x-shockwave-flash&quot; data=&quot;http://hotgluemedia.com/blog/slideshow.swf?file=http://hotgluemedia.com/blog/slideshows/main/slideshow.xml&quot; width=&quot;260&quot; height=&quot;179&quot;&gt; &lt;param name=&quot;movie&quot; value=&quot;http://hotgluemedia.com/blog/slideshow.swf?file=http://hotgluemedia.com/blog/slideshows/main/slideshow.xml&quot; /&gt;&lt;img src=&quot;banner.gif&quot; width=&quot;260&quot; height=&quot;179&quot; alt=&quot;banner&quot; /&gt;&lt;/object&gt;</code></div>
<p>The code must be pasted into the HTML editor (HTML tab, as opposed to the Visual tab). This blog is running WP3.0, so I don&#8217;t know if this will work on previous versions (although I may check that later if I have a moment.)</p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/embedding-flash-in-a-wordpress-post/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<enclosure url="http://hotgluemedia.com/blog/slideshow.swf?file=http://hotgluemedia.com/blog/slideshows/main/slideshow.xml" length="89571" type="application/x-shockwave-flash" /></item>
		<item>
		<title>How to Add Video to Your Facebook Fan Page</title>
		<link>http://hotgluemedia.com/blog/how-to-add-video-to-your-facebook-fan-page/</link>
		<comments>http://hotgluemedia.com/blog/how-to-add-video-to-your-facebook-fan-page/#comments</comments>
		<pubDate>Mon, 28 Jun 2010 22:49:30 +0000</pubDate>
		<dc:creator>dani</dc:creator>
				<category><![CDATA[Social Media]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=512</guid>
		<description><![CDATA[A step-by-step tutorial for adding video to your Facebook Fan Page, including fan page creation and video uploading.]]></description>
			<content:encoded><![CDATA[<p>Facebook fan pages are hip, hip, hip these days, and videos are all the rage. Combine the two? Not as easy as it probably should be. But (as with most things internet), it&#8217;s totally do-able, given enough time and know-how. Got the time, need the know-how? Here you go, from beginning to end.</p>
<p>You don&#8217;t need knowledge of HTML or FBML to follow along, but basic internet knowledge and the willingness to muck around a bit are required. :)</p>
<p><strong>Preliminaries</strong><br />
Well, to start, you need a Facebook account, a YouTube (or Vimeo, or other video hosting service) account, and a video that you&#8217;d like to use. You can sign up for a Facebook account <a href="http://facebook.com">here</a> (be sure to read their <a href="http://online.wsj.com/article/SB10001424052748704912004575252723109845974.html">somewhat dubious</a> privacy policies first) and YouTube <a href="http://www.youtube.com/create_account?next=/">here</a>. </p>
<p><strong>Step 1: Facebook Fan Page Basics</strong><br />
A standard Facebook page isn&#8217;t quite enough &#8211; you need to create a Facebook Fan Page. If you haven&#8217;t already created one*, visit the <a href="http://www.facebook.com/advertising/?pages">Facebook Pages</a> page and click the green &#8220;<a href="http://www.facebook.com/pages/create.php">Create a Page</a>&#8221; button. Select your page category and give your page a name (usually the name of your product or business.) Read and agree to the terms and conditions, and click the &#8220;Create Official Page&#8221; button. Once your page has been created, click the &#8220;Info&#8221; tab at the top of the screen, click the &#8220;Edit Information&#8221; link, and enter basic information about your business.</p>
<p>Next, click the &#8220;Photos&#8221; tab, and upload your logo or profile picture. <em>Tip: in order for the image to display correctly in both the main logo area and the avatar/icon, the image must be square.</em> View the photo and click &#8220;Make Profile Picture for Page&#8221;. Your Fan Page basics are now set.</p>
<p>*Not sure if you&#8217;ve already created one? While logged in to Facebook, click the &#8220;Account&#8221; drop-down in the upper right corner of any page, and click &#8220;Manage Pages&#8221;. This will show you all of the pages associated with your account.</p>
<p><strong>Step 2: FBML</strong><br />
The next step is to set up the FBML application with your page. FBML, short for Facebook Markup Language, is what allows you to add video (or HTML, or pretty much anything you&#8217;d like) to your Facebook Fan Page. To add FBML to your page, click the &#8220;Edit Page&#8221; link just under the logo on the left side of your fan page. Scroll all the way to the bottom to the &#8220;More Applications&#8221; box, and click &#8220;Static FBML&#8221;. Once on the Static FBML page, click &#8220;Add to my Page&#8221; just underneath the logo on the upper left side. You&#8217;ll be presented with a pop-up list of all your Fan Pages. Click the &#8220;Add to Page&#8221; button directly to the right of the page you&#8217;d like to add it to; then click &#8220;Close&#8221;.<span id="more-512"></span></p>
<p><strong>Step 3: FBML Configuration<br />
</strong>Return to your Fan Page: click the &#8220;Account&#8221; dropdown in the upper right corner of the screen, and select the &#8220;Manage Pages&#8221; link to view a list of your Fan Pages. Click the &#8220;Go To Page&#8221; button directly to the right of the page you wish to edit.</p>
<p>Once again, click the &#8220;Edit Page&#8221; link on the left just under your logo. Scroll down to the &#8220;Applications&#8221; area and look for &#8220;FBML&#8221;. Click the &#8220;Application Settings&#8221; link in the FBML box. Change your settings to read &#8220;Box: Available&#8221; and &#8220;Tab: Added&#8221;. Click &#8220;Okay&#8221;. Next, click the &#8220;Edit&#8221; link in the FBML box. The &#8220;Box Title&#8221; will appear as the name of the tab on your Fan Page. Enter your business name, product name, tagline, or anything you&#8217;d like here. (It&#8217;s worth noting that you only get ten characters or so on the tab, so keep it short or Facebook will truncate it for you.) The large &#8220;FBML&#8221; text area is where we&#8217;ll add the video code; for now, just type &#8220;Test&#8221; or something similar. Click &#8220;Save Changes&#8221; at the bottom.</p>
<p><strong>Step 4: Show the World<br />
</strong>Return to your Fan Page and click the &#8220;Settings&#8221; button, just under the &#8220;Share&#8221; button in the center column. Change the &#8220;Default Landing Tab for Everyone Else&#8221; to the FBML page you created in the previous step.</p>
<p>Return to your Fan Page again and copy the public URL for your page. The easiest way to do this is to copy the beginning of the URL from your browser&#8217;s address bar, before the first question mark. It should look something like this: http://www.facebook.com/pages/City-ST/Your-Company-Name/00000000, except those zeroes will be a string of integers. Log out of Facebook (or open a new Incognito Window, if you&#8217;re using Chrome), and paste that URL  into your address bar. You should see your thumbnail logo, your tabs, and the word &#8220;Test&#8221; (or whatever you typed in the FBML field in the previous step). Congrats &#8211; you&#8217;re on your way to a custom page.</p>
<p><strong>Step 5: Upload your Video</strong><br />
In order to embed a video on your Facebook Fan Page, you first need to upload it to a video hosting service, such as YouTube. To upload your video to YouTube, log in and click the &#8220;Upload&#8221; link at the top of the page. Click the yellow &#8220;Upload Video&#8221; button. Browse to and upload your video. Wait while it processes &#8211; this may take quite some time, depending on the size of your video. Add your video&#8217;s title, tags, and description. Click &#8220;Save Changes&#8221;.</p>
<p><strong>Step 6: Add Video to your Facebook Fan Page</strong><br />
It&#8217;s been a long time coming, but we&#8217;re finally at the point where you can add video to your Fan Page. :)  To do so, make note of the URL for the video you just uploaded (presented in a green box at the top of the upload page as &#8220;Your video will be live in a moment at:&#8221;.  Go back to your Fan Page, and click &#8220;Edit Page&#8221; under the logo on the left side. Scroll down to your FBML settings &#8211; the box will now be titled with whatever you named your FBML page in Step 3 &#8211; and click &#8220;Edit&#8221;. In the large &#8220;FBML&#8221; box, paste the following code:</p>
<p><a class="dirtycode" title="Code" href="javascript:toggleLayer('dirtycode5121');">View Code</a></p>
<div id="dirtycode5121" class="dirtycode"><code>&lt;fb:swf swfbgcolor=&quot;000000&quot; imgstyle=&quot;border-width:##px; border-color:white;&quot; swfsrc=&quot;http://www.youtube.com/v/YOUTUBEID&quot; imgsrc=&quot;YOURIMAGE&quot; width=&quot;520&quot; height=&quot;400&quot; /&gt;</code></div>
<p>Replace the YOUTUBEID with the ID of your video. Your video ID is the string of random characters in the URL you noted above. Next, you&#8217;ll need to provide the URL of an image that will display as the placeholder for the video. This can be an image in your Facebook gallery, Flickr stream, etc. Replace YOURIMAGE with the complete URL for your placeholder image (including http://).</p>
<p>If you&#8217;d like to use the placeholder image created by YouTube, log in to YouTube and click your user ID in the upper right corner. Click &#8220;My Videos&#8221; on the dropdown menu, and click the &#8220;Edit&#8221; link for the video whose image you&#8217;d like to use. Scroll down to the &#8220;Video Thumbnail&#8221; section. Right-click on the image you&#8217;d like to use, and copy the image URL (&#8220;Copy Image Location&#8221; in Firefox, &#8220;Copy Image URL&#8221; in Chrome, &#8220;Properties > Address URL&#8221; in Internet Explorer). Paste that URL in place of YOURIMAGE above. </p>
<p>After you have edited the code to include your video ID and image URL, Click &#8220;Save Changes&#8221;. </p>
<p>Return to your Fan Page again and copy the public URL for your page. The easiest way to do this is to copy the beginning of the URL from your browser&#8217;s address bar, before the first question mark. It should look something like this: http://www.facebook.com/pages/City-ST/Your-Company-Name/00000000, except those zeroes will be a string of integers. Log out of Facebook (or open a new Incognito Window, if you&#8217;re using Chrome), and paste that URL  into your address bar. You should see your thumbnail logo, your tabs, and your video image. Click the image to play the video.</p>
<p>Congrats! You&#8217;ve got a video on your Facebook page. </p>
<p>The results of this tutorial can be seen on our brand spanking new <a href="http://www.facebook.com/pages/Buffalo-NY/Hot-Glue-Media/133839789974387">Facebook Fan Page</a> if you&#8217;d like to check it out. (Including cameraphone videos from a rainbow we were lucky enough to see on one of our first days in Buffalo.)</p>
<p><strong>So Now What?</strong><br />
You can add additional information to your FBML page, such as text, more videos, or HTML if you&#8217;re up for a challenge. Have fun!</p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/how-to-add-video-to-your-facebook-fan-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Drippp? Red Brick Restaurant</title>
		<link>http://hotgluemedia.com/blog/drippp-red-brick-restaurant/</link>
		<comments>http://hotgluemedia.com/blog/drippp-red-brick-restaurant/#comments</comments>
		<pubDate>Fri, 25 Jun 2010 02:51:18 +0000</pubDate>
		<dc:creator>mer</dc:creator>
				<category><![CDATA[Projects]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=503</guid>
		<description><![CDATA[All the cool kids are hanging out at Dribbble.com (pronounced Drib-Bibble, but only by me), sharing their secret projects in 120,000 pixels (400&#215;300, if you&#8217;re counting). Not being cool or persistent enough to have my own Dribbble account*, I figured I&#8217;d just start here, and post snippets of work that we&#8217;ve done that we can&#8217;t [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://hotgluemedia.com/blog/wp-content/uploads/2010/06/redfood.png" rel="lightbox[503]"><img class="size-full wp-image-504  alignleft" title="redfood" src="http://hotgluemedia.com/blog/wp-content/uploads/2010/06/redfood.png" alt="Red Brick Restaurant" width="400" height="300" /></a></p>
<p>All the cool kids are hanging out at <a href="http://dribbble.com/">Dribbble.com</a> (pronounced Drib-Bibble, but only by me), sharing their secret projects in 120,000 pixels (400&#215;300, if you&#8217;re counting). Not being cool or persistent enough to have my own Dribbble account*, I figured I&#8217;d just start here, and post snippets of work that we&#8217;ve done that we can&#8217;t add directly to our portfolio, and we&#8217;re going to call the Drippps.</p>
<p>See what I did there?</p>
<p>So, this is a restaurant site we did recently as a subcontractor. Aside from using @font-face and some wacky textures, the really cool feature is that chalkboard is dynamic and instantly update-able by the user. Dani says that it&#8217;s a widget (WordPress, natch). I say it&#8217;s awesome.</p>
<p>What do you say?</p>
<p>*This however doesn&#8217;t mean that I wouldn&#8217;t be thrilled to be invited. Really.</p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/drippp-red-brick-restaurant/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Changes…WNY, Here we Come!</title>
		<link>http://hotgluemedia.com/blog/wny-here-we-come/</link>
		<comments>http://hotgluemedia.com/blog/wny-here-we-come/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 06:00:53 +0000</pubDate>
		<dc:creator>dani</dc:creator>
				<category><![CDATA[Random Drips]]></category>

		<guid isPermaLink="false">http://hotgluemedia.com/blog/?p=494</guid>
		<description><![CDATA[Yep, changes are brewing. Over the next few weeks (and months), we&#8217;ll be packing up and moving our base of operations from Pottstown, PA to Buffalo, NY.  While this particular move is happening insanely fast, we&#8217;ve loved WNY/upstate NY for a long time, so when the universe whacked us on the head with a stick [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/crazycatchthecat/3685128994/"><img class="alignnone" title="Can peace bring about a change?" src="http://farm3.static.flickr.com/2589/3685128994_740e1c9ac2.jpg" alt="" width="375" height="500" /></a></p>
<p>Yep, changes are brewing. Over the next few weeks (and months), we&#8217;ll be packing up and moving our base of operations from Pottstown, PA to Buffalo, NY.  While this particular move is happening insanely fast, we&#8217;ve loved WNY/upstate NY for a long time, so when the universe whacked us on the head with a stick that said &#8220;Buffalo&#8221;, we listened.  This is a huge move for us, professionally and personally, and we&#8217;re super-excited to become part of the fantastic art scene and amazing culture. (OK, really, I just want to watch hockey.)</p>
<p>We remain committed to our clients in Eastern PA, and we&#8217;re confident that we can continue to provide the same high-quality service and support regardless of our location, as our clients across the country and around the world can attest.  Our PA number will remain active, but effective immediately we can also be reached on our shiny new NY number, <strong>716.803.6646</strong>.</p>
<p>Buffalo, here we come!</p>
<p><em>Image: &#8220;<a href="http://www.flickr.com/photos/crazycatchthecat/3685128994/">Can peace bring about a change?</a></em><em>&#8221; by Catlin Doe via Flickr.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://hotgluemedia.com/blog/wny-here-we-come/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
