<?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>Shmooze With Ben &#187; instructionalvideos</title>
	<atom:link href="http://www.shmoozewithben.com/category/instructionalvideos/feed" rel="self" type="application/rss+xml" />
	<link>http://www.shmoozewithben.com</link>
	<description>Keeping it real in an unreal world</description>
	<lastBuildDate>Thu, 26 Jan 2012 15:44:26 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Importing Posts Into Build My Rank</title>
		<link>http://www.shmoozewithben.com/instructionalvideos/importing-posts-into-build-my-rank</link>
		<comments>http://www.shmoozewithben.com/instructionalvideos/importing-posts-into-build-my-rank#comments</comments>
		<pubDate>Wed, 04 Jan 2012 11:54:05 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[instructionalvideos]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[asp script]]></category>
		<category><![CDATA[build my rank]]></category>
		<category><![CDATA[buildmyrank]]></category>
		<category><![CDATA[import posts]]></category>
		<category><![CDATA[iwriter]]></category>

		<guid isPermaLink="false">http://www.shmoozewithben.com/?p=381</guid>
		<description><![CDATA[I realize that the following script is not going to be that useful to that many people, but if you are using iWriter to write your posts, are using BuildMyRank and also using ASP and want to import a lot of posts at the time then you may find it useful. Not the neatest of [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.shmoozewithben.com/instructionalvideos/importing-posts-into-build-my-rank" data-text="Importing Posts Into Build My Rank" data-count="" data-via="shafferb1" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.shmoozewithben.com/instructionalvideos/importing-posts-into-build-my-rank",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>I realize that the following script is not going to be that useful to that many people, but if you are using iWriter to write your posts, are using BuildMyRank and also using ASP and want to import a lot of posts at the time then you may find it useful.</p>
<p>Not the neatest of code, but does the job and shouldn&#8217;t be hard to convert to PHP if needed.</p>
<p>Love to hear any comments as usual&#8230;</p>
<p>&nbsp;</p>
<p>&lt;%<br />
&#8221; function to capitalise the first letter of each word.<br />
Public Function Capitalize(ByVal str)<br />
DIM arrTemp, strTemp, i<br />
arrTemp = Split(str, &#8221; &#8220;)<br />
For i = 0 to Ubound(arrTemp)<br />
strTemp = strTemp &amp; &#8221; &#8221; &amp; UCase(Left(arrTemp(i),1)) &amp; LCase(Mid(arrTemp(i),2))<br />
Next<br />
Capitalize = strTemp<br />
End Function</p>
<p>&#8221;Easiest way to create the csv file is to create a table, view source, save that as an xls and then save the xls as a csv</p>
<p>response.write &#8220;&lt;table&gt;&#8221;</p>
<p>&#8221;where on your server the articles are<br />
Whichfolder=server.mappath(&#8220;\articles\&#8221;)</p>
<p>Set objFSO = CreateObject(&#8220;Scripting.FileSystemObject&#8221;)<br />
Set objFolder = objFSO.GetFolder(Whichfolder)<br />
Set colFiles = objFolder.Files</p>
<p>&#8221; I am using pp as a counter to create the date when the articles are posted. Should adjust depending on your own schedule&#8230;<br />
pp=4<br />
For Each objFile in colFiles<br />
xfilename=objFile.Name</p>
<p>&#8221; check that it is a text file rather than zip or asp page or anything else that you dont want to process</p>
<p>if instr(xfilename,&#8221;.txt&#8221;) then</p>
<p>&#8221;find out the keyword by looking at the filename</p>
<p>keywords=split(xfilename,&#8221; &#8220;)</p>
<p>for n=0 to (ubound(keywords)-1)<br />
keyword=keyword &amp; &#8221; &#8221; &amp; keywords(n)<br />
next</p>
<p>&nbsp;</p>
<p>&#8221;textfiles seem to be in a bit of a weird text format. Didnt work without using explicitly stating -2</p>
<p>&#8221; Getting the content of the textfile/article and then finding out what the title is and get rid of the author name.</p>
<p>set k=objFSO.opentextfile(whichfolder &amp; &#8220;\&#8221; &amp; xfilename,1,false,-2)<br />
article=k.readall</p>
<p>lines=split(article,vbcrlf)<br />
article=replace(article,lines(1),&#8221;")<br />
article=replace(article,lines(0),&#8221;")<br />
xtitle=lines(0)</p>
<p>&#8221;check that there is actually a title in the textfile<br />
if lines(0)=&#8221;" then<br />
response.write &#8220;&lt;br&gt;NOTITLE: &#8221; &amp; xfilename &amp; &#8220;&lt;br&gt;&#8221;<br />
end if</p>
<p>&#8221;get rid of any weird spaces that may have come up in the split and rejoin</p>
<p>keyword=trim(keyword)</p>
<p>&#8221;your link will be constructed depending on how you name your files and stuff. In my case, the file is the index file within the directory that is named after the keyword without the spaces</p>
<p>link=&#8221;http://www.yourdomain.com/&#8221; &amp; replace(keyword,&#8221; &#8220;,&#8221;")</p>
<p>if instr(lcase(article),lcase(keyword)) then<br />
&#8221; Put the link in the first time which the keyword phrase is found</p>
<p>article=replace(article,keyword,&#8221;&amp;lt;a href=&#8221;"&#8221; &amp; link &amp; &#8220;&#8221;"&amp;gt;&#8221; &amp; keyword &amp; &#8220;&amp;lt;/a&amp;gt;&#8221;,1,1,1)</p>
<p>else<br />
&#8221;if the keyword phrase isn&#8217;t there then let us know<br />
response.write &#8220;nonono&#8221; &amp; xfilename<br />
end if</p>
<p>&#8216;replace the character which seems to give the xls file trouble</p>
<p>article=replace(article,&#8221;’&#8221;,&#8221;&#8216;&#8221;)</p>
<p>&#8221; create the rows in the table<br />
response.write &#8220;&lt;tr&gt;&lt;td&gt;&#8221; &amp; Capitalize(xtitle) &amp; &#8220;&lt;/td&gt;&lt;td&gt;&#8221; &amp; article &amp; &#8220;&lt;/td&gt;&lt;td&gt;&#8221; &amp; &#8220;01/&#8221; &amp; pp &amp; &#8220;/12&#8243; &amp; &#8220;&lt;/td&gt;&lt;/tr&gt;&#8221;</p>
<p>article=&#8221;"<br />
keywords=&#8221;"<br />
keyword=&#8221;"<br />
lines=&#8221;"<br />
xtitle=&#8221;"<br />
filename=&#8221;"<br />
p=p+1<br />
pp=pp+1<br />
if pp=15 then<br />
pp=4<br />
end if<br />
end if<br />
Next</p>
<p>response.write &#8220;&lt;/table&gt;&#8221;<br />
end if<br />
%&gt;</p>
<p>&nbsp;</p>
<p>EDIT: Also need to check that title is between 3 and 25 words&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoozewithben.com/instructionalvideos/importing-posts-into-build-my-rank/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>The big lifestyle lie</title>
		<link>http://www.shmoozewithben.com/instructionalvideos/the-big-lifestyle-lie</link>
		<comments>http://www.shmoozewithben.com/instructionalvideos/the-big-lifestyle-lie#comments</comments>
		<pubDate>Wed, 03 Nov 2010 15:07:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[instructionalvideos]]></category>

		<guid isPermaLink="false">http://www.shmoozewithben.com/?p=265</guid>
		<description><![CDATA[Would it shock you if I told you that I am not working from the beach while I write this? Would it shock you even more if I were to tell you that I get up every morning at around 6am and after getting the kids ready and taking them to school, I go to [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.shmoozewithben.com/instructionalvideos/the-big-lifestyle-lie" data-text="The big lifestyle lie" data-count="" data-via="shafferb1" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.shmoozewithben.com/instructionalvideos/the-big-lifestyle-lie",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>Would it shock you if I told you that I<br />
am not working from the beach while I write<br />
this?</p>
<p>Would it shock you even more if I were to<br />
tell you that I get up every morning at<br />
around 6am and after getting the kids<br />
ready and taking them to school, I go<br />
to an office?</p>
<p>As it happens, my office is above a swimming<br />
pool and in the summer I DO have a pretty<br />
great view, but that is about as close<br />
I get to being by the shore on a normal day.</p>
<p>Call it whatever you like, but just because<br />
we are using the internet to sell and to<br />
market does NOT mean that you won&#8217;t have<br />
to work just as hard.</p>
<p>There definitely are certain advantages as<br />
to being your own boss and deciding when you<br />
really want to work.</p>
<p>But on the whole, a business is a business<br />
and if you don&#8217;t work hard at it, then you<br />
will fail.</p>
<p>So, what are the advantages of being self<br />
employed and working via the internet?</p>
<p>1. When you don&#8217;t need specific tools which<br />
are in your office, then you really can<br />
work from anywhere that you want to. </p>
<p>When I go on holiday, I take a laptop with<br />
and work at night.</p>
<p>2. As you are dealing much more with non<br />
physical commodities, it is far easier to<br />
have employees working for you all over<br />
the world. Not only may wages be cheaper<br />
in other countries, but it also means that<br />
you don&#8217;t need to supply an office for them<br />
(large expense)</p>
<p>3. There is a large amount of automation. I<br />
don&#8217;t need to have delivery of stock. I don&#8217;t<br />
need to go to the bank. My whole ordering and<br />
delivery process is automated so that I don&#8217;t<br />
need to do much more than market and support<br />
my products.</p>
<p>For someone just getting started, it will take<br />
a while to gain your freedom and to start<br />
automating your processes.</p>
<p>However, at least that is something to work<br />
towards.</p>
<p>There are many times when I am unable to be<br />
in the office or even near a computer for<br />
periods of time. However, I know that 99%<br />
of my business is being taken care of.</p>
<p>So, why was I thinking about all of this<br />
today.</p>
<p>Gary Ambrose has just released a video<br />
where he talks about his own personal<br />
struggle for freedom and how it has<br />
eventually worked for him.</p>
<p>Obviously, he wasn&#8217;t born successful,<br />
but it was through his own persistence<br />
that his work has paid off and he has<br />
arrived where he is today.</p>
<p>I thought it was interesting stuff, and<br />
if you know Gary, then you will know that<br />
he is not scared about sharing personal<br />
details.</p>
<p>There is an offer at the end. If you like<br />
it then buy it. I have previous customers<br />
who bought it and have given me great<br />
feedback. It gets my recommendation. If not,<br />
then the world will not fall apart or ugly<br />
demons come around your house or anything<br />
like that <img src='http://www.shmoozewithben.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>So&#8230;this is what I ask of you today:</p>
<p>1. Go to:<br />
<a href="http://www.shmoozewithben.com/recommends/spring" target="_new">http://www.shmoozewithben.com/recommends/spring</a><br />
and watch the video.</p>
<p>2. Come back here and comment about what<br />
Gary says. Or if you don&#8217;t get to watch<br />
it, then let me know any business struggle<br />
which you have had and how you overcame them.</p>
<p>Have had over 120 comments on my last<br />
post. Would love to beat it here!</p>
<p>Keeping it real in an unreal world,</p>
<p>Ben Shaffer<br />
Helpdesk: http://www.replytoben.com</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoozewithben.com/instructionalvideos/the-big-lifestyle-lie/feed</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>Realistic Way For $100 a Day</title>
		<link>http://www.shmoozewithben.com/instructionalvideos/realistic-way</link>
		<comments>http://www.shmoozewithben.com/instructionalvideos/realistic-way#comments</comments>
		<pubDate>Mon, 08 Feb 2010 13:24:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[instructionalvideos]]></category>

		<guid isPermaLink="false">http://www.shmoozewithben.com/?p=148</guid>
		<description><![CDATA[I am often asked what I would do if I were to start off again making money on the internet. You know the question; no list, no contacts, no products etc. I have a number of answers, but many of them are a bit complicated or take a long time. The one that I give [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.shmoozewithben.com/instructionalvideos/realistic-way" data-text="Realistic Way For $100 a Day" data-count="" data-via="shafferb1" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.shmoozewithben.com/instructionalvideos/realistic-way",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p><img style="border: 0px;" src="https://paydotcom.com/r/95330/shafferb1/26131837/" border="0" alt="" width="0" height="0" /><br />
I am often asked what I would do if I were to start off again making money on the internet. You know the question; no list, no contacts, no products etc. I have a number of answers, but many of them are a bit complicated or take a long time.</p>
<p>The one that I give in the video below, not only is it realistic, but it is also simple and will work for almost anyone.</p>

<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_makemoney_559666045"
			class="flashmovie"
			width="320"
			height="260">
	<param name="movie" value="http://www.shmoozewithben.com/videos/spinner/makemoney.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="http://www.shmoozewithben.com/videos/spinner/makemoney.swf"
			name="fm_makemoney_559666045"
			width="320"
			height="260">
	<!--<![endif]-->
		
<p><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>

	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
<p>Once you have watched the video, click on the link below to purchase The Best Spinner ( by Jonathan Leger ):<br />
<a href="http://www.thegreatestarticlespinner.com" target="_new">http://www.thegreatestarticlespinner.com</a></p>
<p>Once you have made your purchase, go to:</p>
<p><a href="http://www.thegreatestarticlespinner.com/bonus.asp" target="_new">http://www.thegreatestarticlespinner.com/bonus.asp</a></p>
<p>in order to claim your bonus. On that page, you will have access to:<br />
1. 48 Separate Ebook PLR products which you can do anything that you like with<br />
2. 113,679 which you can also do anything you like with and will get you well on your way to creating a $100 a day income.</p>
<p>Please leave any comments below saying:<br />
1. That you have articles to sell<br />
2. That you want to buy some articles</p>
<p>Once you have also carried out this plan, please also let me know how it went.</p>
<p>As a reminder, you get a 7 day $7 trial with 30 day money back guarantee at:</p>
<p><a href="http://www.thegreatestarticlespinner.com" target="_new">http://www.thegreatestarticlespinner.com</a></p>
<p>Keeping it real in an unreal world,</p>
<p>Ben Shaffer<br />
Helpdesk: http://www.replytoben.com</p>
<p>UPDATE: Due to a few requests, I have added a PDF version of the video above at:<br />
<a href="http://shmoozewithben.com/downloads/100dollars.pdf">http://shmoozewithben.com/downloads/100dollars.pdf</a><br />
Enjoy!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoozewithben.com/instructionalvideos/realistic-way/feed</wfw:commentRss>
		<slash:comments>12</slash:comments>
		</item>
		<item>
		<title>What do you want from me?</title>
		<link>http://www.shmoozewithben.com/instructionalvideos/what-do-you-want-from-me</link>
		<comments>http://www.shmoozewithben.com/instructionalvideos/what-do-you-want-from-me#comments</comments>
		<pubDate>Sun, 13 Dec 2009 12:06:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[instructionalvideos]]></category>

		<guid isPermaLink="false">http://www.shmoozewithben.com/?p=143</guid>
		<description><![CDATA[Please comment below if there is something that you would rather hear about! Ben Shaffer]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.shmoozewithben.com/instructionalvideos/what-do-you-want-from-me" data-text="What do you want from me?" data-count="" data-via="shafferb1" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.shmoozewithben.com/instructionalvideos/what-do-you-want-from-me",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div>Note: There is a poll embedded within this post, please visit the site to participate in this post's poll.
<p>Please comment below if there is something that you would rather hear about!</p>
<p>Ben Shaffer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoozewithben.com/instructionalvideos/what-do-you-want-from-me/feed</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>A Video Quad</title>
		<link>http://www.shmoozewithben.com/instructionalvideos/a-video-quad</link>
		<comments>http://www.shmoozewithben.com/instructionalvideos/a-video-quad#comments</comments>
		<pubDate>Mon, 29 Jun 2009 18:41:46 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[face to face]]></category>
		<category><![CDATA[instructionalvideos]]></category>

		<guid isPermaLink="false">http://www.shmoozewithben.com/?p=56</guid>
		<description><![CDATA[Step 1: Click on the links below for a 7 day trial: Niche Health Articles Natural Health PLR IM PLR Club Step 2: Download Chris Frevilles revealing niche report: http://www.clarifywithben.com/recommends/dominate Step 3: Go watch Keith Wellman&#8217;s free videos: https://fxmarketing.infusionsoft.com/go/esf/a790/ Just to clarify, if you do purchase Keith Wellman&#8217;s product through me, I will help you on [...]]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.shmoozewithben.com/instructionalvideos/a-video-quad" data-text="A Video Quad" data-count="" data-via="shafferb1" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.shmoozewithben.com/instructionalvideos/a-video-quad",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><div style="text-align: center;"><!-- ProPlayer by Isa Goksu --><div name="mediaspace" id="mediaspace"><div class="pro-player-container" width="480px" height="320px"><div id="pro-player-56pp-single-4f2dbf633417c"></div></div></div><script type="text/javascript" charset="utf-8">var flashvars = {width: "480",height: "320",autostart: "false",repeat: "false",backcolor: "FFFFFF",frontcolor: "FFFFFF",lightcolor: "66cc00",stretching: "none",enablejs: "true",mute: "false",skin: "http://www.shmoozewithben.com/wp-content/plugins/proplayer/players/skins/default.swf",image: "http://www.shmoozewithben.com/wp-content/plugins/proplayer/players/preview.png",plugins: "",javascriptid: "56pp-single-4f2dbf633417c",image: "http://www.shmoozewithben.com/wp-content/plugins/proplayer/players/preview.png",file: 'http://www.shmoozewithben.com/wp-content/plugins/proplayer/playlist-controller.php?pp_playlist_id=56pp-single-4f2dbf633417c&sid=1328398179'};var params = {wmode: "transparent",allowfullscreen: "true",allowscriptaccess: "always",allownetworking: "all"};var attributes = {id: "obj-pro-player-56pp-single-4f2dbf633417c",name: "obj-pro-player-56pp-single-4f2dbf633417c"};swfobject.embedSWF("http://www.shmoozewithben.com/wp-content/plugins/proplayer/players/player.swf", "pro-player-56pp-single-4f2dbf633417c", "480", "320", "9.0.0", false, flashvars, params, attributes);</script></div>
<p>Step 1: Click on the links below for a 7 day trial:<br />
<a href="http://www.niche-health-articles.com" target="_new">Niche Health Articles</a><br />
<a href="http://www.naturalhealthplr.com" target="_new">Natural Health PLR</a><br />
<a href="http://www.implrclub.com" target="_new">IM PLR Club</a></p>
<p>Step 2: Download Chris Frevilles revealing niche report:<br />
<a href="http://www.clarifywithben.com/recommends/dominate" target="_new">http://www.clarifywithben.com/recommends/dominate</a></p>
<p>Step 3: Go watch Keith Wellman&#8217;s free videos:</p>
<p><a href="https://fxmarketing.infusionsoft.com/go/esf/a790/" target="_new">https://fxmarketing.infusionsoft.com/go/esf/a790/</a></p>
<p>Just to clarify, if you do purchase Keith Wellman&#8217;s product through me, I will help you on a one on-one basis to create your video salesletter. If you don&#8217;t have a product but want to do one for an affiliate product or a squeeze page, then that is fine also. I am doing this, cos I genuinely want you to be successful.</p>
<p>Would be interested to hear from you if you do intend to purchase Keith&#8217;s product tomorrow and why. If not, then why not also.</p>
<p>Keeping it real in an unreal world,</p>
<p>Ben Shaffer</p>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoozewithben.com/instructionalvideos/a-video-quad/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Creating PDF Backgrounds</title>
		<link>http://www.shmoozewithben.com/instructionalvideos/creating-pdf-backgrounds</link>
		<comments>http://www.shmoozewithben.com/instructionalvideos/creating-pdf-backgrounds#comments</comments>
		<pubDate>Wed, 04 Mar 2009 10:22:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[instructionalvideos]]></category>
		<category><![CDATA[image backgrounds]]></category>
		<category><![CDATA[images on pdfs]]></category>
		<category><![CDATA[pdf backgrounds]]></category>

		<guid isPermaLink="false">http://www.shmoozewithben.com/?p=35</guid>
		<description><![CDATA[It took me quite a bit of experimentation to find out how to put backgrounds on my pdfs so thought that I would cut the learning curve for you in the following video. Any questions, let me know in the comments&#8230; 
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_pdf-background_748013"
			class="flashmovie"
			width="320"
			height="240">
	<param name="movie" value="/videos/pdf-background.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="/videos/pdf-background.swf"
			name="fm_pdf-background_748013"
			width="320"
			height="240">
	<!--<![endif]-->
		 
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>]]></description>
			<content:encoded><![CDATA[<div class="socialize-in-content" style="float:left;"><div class="socialize-in-button socialize-in-button-vertical"><a href="http://twitter.com/share" class="twitter-share-button" data-url="http://www.shmoozewithben.com/instructionalvideos/creating-pdf-backgrounds" data-text="Creating PDF Backgrounds" data-count="" data-via="shafferb1" ><!--Tweetter--></a></div><div class="socialize-in-button socialize-in-button-vertical"><script>
			<!-- 
			var fbShare = {
				url: "http://www.shmoozewithben.com/instructionalvideos/creating-pdf-backgrounds",
				size: "large",
				google_analytics: "true"
			}
			//-->
			</script>
                        <script src="http://widgets.fbshare.me/files/fbshare.js"></script></div></div><p>It took me quite a bit of experimentation to find out how to put backgrounds on my pdfs so thought that I would cut the learning curve for you in the following video. Any questions, let me know in the comments&#8230;</p>
<p style="text-align: center;">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
			id="fm_pdf-background_987796531"
			class="flashmovie"
			width="320"
			height="240">
	<param name="movie" value="/videos/pdf-background.swf" />
	<!--[if !IE]>-->
	<object	type="application/x-shockwave-flash"
			data="/videos/pdf-background.swf"
			name="fm_pdf-background_987796531"
			width="320"
			height="240">
	<!--<![endif]-->
		
<p style="text-align: center;"><a href="http://adobe.com/go/getflashplayer"><img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" /></a></p>
<p style="text-align: center;">
	<!--[if !IE]>-->
	</object>
	<!--<![endif]-->
</object>
]]></content:encoded>
			<wfw:commentRss>http://www.shmoozewithben.com/instructionalvideos/creating-pdf-backgrounds/feed</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
	</channel>
</rss>

