<?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>BeeTheme02</title>
	<atom:link href="http://bee-software.net/feed/" rel="self" type="application/rss+xml" />
	<link>http://bee-software.net</link>
	<description>BeeTheme from Bee-Software.net</description>
	<lastBuildDate>Tue, 08 May 2012 22:03:23 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>Handling changes to PayPal &#8216;Notification of Payment Received&#8217; Emails</title>
		<link>http://bee-software.net/blog/handling-changes-to-paypal-notification-of-payment-received-emails/</link>
		<comments>http://bee-software.net/blog/handling-changes-to-paypal-notification-of-payment-received-emails/#comments</comments>
		<pubDate>Fri, 27 Jan 2012 06:59:56 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://bee-software.net/?p=2538</guid>
		<description><![CDATA[If you are a PayPal seller you may have noticed that as of 24 January 2012 the &#8216;Notification of Payment Received&#8217; email is now sent from the address &#8216;service@paypal.com&#8217; rather than from the buyers email address. This was hugely inconvenient &#8230; <a href="http://bee-software.net/blog/handling-changes-to-paypal-notification-of-payment-received-emails/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are a PayPal seller you may have noticed that as of 24 January 2012 the &#8216;Notification of Payment Received&#8217; email is now sent from the address &#8216;service@paypal.com&#8217; rather than from the buyers email address.  This was hugely inconvenient to us as we had set up an automated reply email based on the senders address.</p>

<p>This change is likely here to stay (although I have sent them my feedback, and am a little annoyed that no warning was given).  We are Mac users and have created an AppleScript to get around this issue.  The AppleScript is run by Mail Rules that we have set up.  We wanted to share our AppleScript with you if you&#8217;re in the same boat and want a quick solution.</p>

<p>A quick rundown on what the code does: When a Mail Rule is triggered by an incoming payment received email, the script runs.  It extracts the buyers email address from the incoming email, generates a new outgoing email to the buyer, sets the Subject and Content, and sends the email.</p>

<p>Here&#8217;s my disclaimer: although I am a developer, I&#8217;m embarrassed to say that this is my first AppleScript!  It&#8217;s not pretty but it does the job.  No doubt in the coming days/weeks we will fine-tune it.  The script assumes that the format of PayPal&#8217;s email to you is the same as the layout that we get (as long as the buyers email address is displayed in the content of the email within parenthesis then it should be ok).  Also, this isn&#8217;t a tutorial or a how-to on how to set up Mail Rules.</p>

<p>Steps:<ol>
<li>Create your AppleScript using the AppleScript Editor from utilities.</li>
<li>Here&#8217;s the code below, paste this into your editor. You will need to read through the code and change the Subject and Content accordingly. Then compile and save it.</li>
<li>If you were already using Mail Rules to automate your reply to the buyer, then just replace the &#8220;Reply to Message&#8221; action with a &#8220;Run Applescript&#8221; action and browse to the AppleScript you have just saved. See screenshot below.  You should now be good to go, be sure to test it thoroughly!</li>
</ol></p>

<p><img src="/wp-content/themes/beetheme02/images/blog/AppleScript.gif" alt="AppleScript" /></p>

<p>Code to copy:</p>
<p>

<!-- code formatted by http://manoli.net/csharpformat/ -->
<pre class="csharpcode">
<span class="kwrd">using</span> terms <span class="kwrd">from</span> application <span class="str">"Mail"</span>
    on perform mail action with messages theMessages <span class="kwrd">for</span> rule theRule
        tell application <span class="str">"Mail"</span>
            repeat with eachMessage <span class="kwrd">in</span> theMessages
                -- We are going to extract the buyers email address <span class="kwrd">from</span> within the <span class="str">"()"</span> <span class="kwrd">in</span> the email content
                <span class="kwrd">set</span> theContent to content of eachMessage
                <span class="kwrd">try</span>
                    <span class="kwrd">set</span> AppleScript<span class="str">'s text item delimiters to {"(", ")"}
                    set contentParts to (every text item in theContent) as list
                    set AppleScript'</span>s text item delimiters to <span class="str">""</span>
                    <span class="kwrd">set</span> emailOnly to item 2 of contentParts
                    -- The recipient of the email will be the buyers email address
                    <span class="kwrd">set</span> recipientAddress to emailOnly
                    -- Set your own Subject here
                    <span class="kwrd">set</span> theSubject to <span class="str">"Your Email Subject Here"</span>
                    -- Set your own Content here
                    <span class="kwrd">set</span> theSendContent to <span class="str">"Your Email Content Here"</span>
                    -- Create <span class="kwrd">new</span> Email <span class="kwrd">using</span> the subject and content <span class="kwrd">set</span> up above
                    <span class="kwrd">set</span> theMessage to make <span class="kwrd">new</span> outgoing message with properties {subject:theSubject, content:theSendContent, visible:<span class="kwrd">true</span>}
                    tell theMessage
                        -- Set the recipient of the Email
                        make <span class="kwrd">new</span> to recipient with properties {address:recipientAddress}
                        -- Send the message
                        send
                    end tell
                end <span class="kwrd">try</span>
            end repeat
        end tell
    end perform mail action with messages
end <span class="kwrd">using</span> terms from</pre>

</p>]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/blog/handling-changes-to-paypal-notification-of-payment-received-emails/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Drive Safe Driving</title>
		<link>http://bee-software.net/webdesign/drive-safe-driving/</link>
		<comments>http://bee-software.net/webdesign/drive-safe-driving/#comments</comments>
		<pubDate>Thu, 24 Nov 2011 19:23:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://bee-software.net/webdesign/drive-safe-driving/</guid>
		<description><![CDATA[We have just finished another small project for Drive Safe Driving. The site shows information for Jack Kennedy&#8217;s Driving lessons.]]></description>
			<content:encoded><![CDATA[<p>We have just finished another small project for Drive Safe Driving. The site shows information for Jack Kennedy&#8217;s Driving lessons.</p>
]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/webdesign/drive-safe-driving/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting With Care</title>
		<link>http://bee-software.net/webdesign/connecting-with-care/</link>
		<comments>http://bee-software.net/webdesign/connecting-with-care/#comments</comments>
		<pubDate>Tue, 01 Nov 2011 22:23:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://bee-software.net/webdesign/connecting-with-care/</guid>
		<description><![CDATA[We have just finished a very small project for Home in stead Altrincham &#8220;Connecting With Care&#8221;. The site shows information about upcoming events. The site was already designed, we just built it, got the domain name and host it.]]></description>
			<content:encoded><![CDATA[<p>We have just finished a <strong>very</strong> small project for Home in stead Altrincham &#8220;Connecting With Care&#8221;. The site shows information about upcoming events. The site was already designed, we just built it, got the domain name and host it.</p>
]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/webdesign/connecting-with-care/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Looking to employ someone that can use Scene7&#8242;s image authoring software?</title>
		<link>http://bee-software.net/blog/looking-to-employ-someone-that-can-use-scene7s-image-authoring-software/</link>
		<comments>http://bee-software.net/blog/looking-to-employ-someone-that-can-use-scene7s-image-authoring-software/#comments</comments>
		<pubDate>Fri, 28 Oct 2011 01:20:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>

		<guid isPermaLink="false">http://bee-software.net/?p=2391</guid>
		<description><![CDATA[If you are a company looking to employ or hire someone with experience with Scene7&#8242;s imaging authoring/draping software then I would like to offer my experience. I am very familiar with the software and can provide you with high quality &#8230; <a href="http://bee-software.net/blog/looking-to-employ-someone-that-can-use-scene7s-image-authoring-software/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>If you are a company looking to employ or hire someone with experience with Scene7&#8242;s imaging authoring/draping software then I would like to offer my experience. I am very familiar with the software and can provide you with high quality files. I would be available to work as a contractor or as a full time employee. 
While I can only work remotely as I have just moved to New Zealand (unless your company is based down here) I have worked for a number of companies remotely with great success. Please <a href="/contact/" title="Contact">contact</a> me with any questions.</p>

<p>What is Scene7’s imaging authoring software?<br />
&#8220;Scene7’s imaging authoring (IA) is a workstation-based application that lets you prepare (“author”) images for dynamic texture rendering and pre-generate rendered images for print – all from a single original image.&#8221;</p>

<p>More information about <a href="http://www.scene7.com/solutions/platform/image_authoring.asp" title="Adobe's Scene7 image authoring software">Adobe&#8217;s Scene7 image authoring software</a></p>]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/blog/looking-to-employ-someone-that-can-use-scene7s-image-authoring-software/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Bee Theme 02</title>
		<link>http://bee-software.net/webdesign/bee-theme-02/</link>
		<comments>http://bee-software.net/webdesign/bee-theme-02/#comments</comments>
		<pubDate>Sun, 14 Aug 2011 01:06:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://bee-software.net/webdesign/bee-theme-02/</guid>
		<description><![CDATA[We have just updated our site (Aug 14 2011). We really liked our old site (below) but the two main reasons that made us take action were: More people are viewing our site through mobile devices. Our new site is &#8230; <a href="http://bee-software.net/webdesign/bee-theme-02/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>We have just updated our site (Aug 14 2011). We really liked our old site (below) but the two main reasons that made us take action were:
<ol>
<li>More people are viewing our site through mobile devices. Our new site is Responsive: You should see the layout adjust itself to fit the new width of the browser, even if you make the page as skinny as the resolution of a mobile phone. To see it in action, open this post on a desktop browser and slowly make the browser thinner and wider.</li>
<li>I like the old black background but have always thought that a white background looks more &#8220;friendly&#8221; and seeing as we are selling software on the site as well as our other activitys we have made the change</li>
</ol></p>
]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/webdesign/bee-theme-02/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Track a PayPal Form Event with Google Analytics</title>
		<link>http://bee-software.net/blog/track-a-paypal-form-event-with-google-analytics/</link>
		<comments>http://bee-software.net/blog/track-a-paypal-form-event-with-google-analytics/#comments</comments>
		<pubDate>Thu, 12 May 2011 00:53:31 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://bee-software.net/blog/track-a-paypal-form-event-with-google-analytics/</guid>
		<description><![CDATA[This page will tell you how to get the Google Analytics data of people that click on a PayPal button. 1. Add the correct Google Analytics code into your site Add the new tracking code from Google into your header &#8230; <a href="http://bee-software.net/blog/track-a-paypal-form-event-with-google-analytics/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><h4>This page will tell you how to get the Google Analytics data of people that click on a PayPal button.</h4></p>

<h3>1. Add the correct Google Analytics code into your site</h3>

<p>Add the <u>new</u> tracking code from Google into your header tag.</p>
<p><em>Taken from the Google site:</em> &#8220;Copy the following code, then paste it onto every page you want to track immediately before the closing &#60;&#47;&#104;&#101;&#97;&#100;&#62; tag.&#8221; (You will have to add your own Account number &#8216;XX-XXXXXX-X&#8217;)</p>

<p style="color:#E5B208;">
&#60;&#115;&#99;&#114;&#105;&#112;&#116;&#32;&#116;&#121;&#112;&#101;&#61;&#34;&#116;&#101;&#120;&#116;&#47;&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#34;&#62;
&#32;&#32;&#118;&#97;&#114;&#32;&#95;&#103;&#97;&#113;&#32;&#61;&#32;&#95;&#103;&#97;&#113;&#32;&#124;&#124;&#32;&#91;&#93;&#59;
&#32;&#32;&#95;&#103;&#97;&#113;&#46;&#112;&#117;&#115;&#104;&#40;&#91;&#39;&#95;&#115;&#101;&#116;&#65;&#99;&#99;&#111;&#117;&#110;&#116;&#39;&#44;&#32;&#39;&#88;&#88;&#45;&#88;&#88;&#88;&#88;&#88;&#88;&#45;&#88;&#39;&#93;&#41;&#59;
&#32;&#32;&#95;&#103;&#97;&#113;&#46;&#112;&#117;&#115;&#104;&#40;&#91;&#39;&#95;&#116;&#114;&#97;&#99;&#107;&#80;&#97;&#103;&#101;&#118;&#105;&#101;&#119;&#39;&#93;&#41;&#59;
&#32;&#32;&#40;&#102;&#117;&#110;&#99;&#116;&#105;&#111;&#110;&#40;&#41;&#32;&#123;
&#32;&#32;&#32;&#32;&#118;&#97;&#114;&#32;&#103;&#97;&#32;&#61;&#32;&#100;&#111;&#99;&#117;&#109;&#101;&#110;&#116;&#46;&#99;&#114;&#101;&#97;&#116;&#101;&#69;&#108;&#101;&#109;&#101;&#110;&#116;&#40;&#39;&#115;&#99;&#114;&#105;&#112;&#116;&#39;&#41;&#59;&#32;&#103;&#97;&#46;&#116;&#121;&#112;&#101;&#32;&#61;&#32;&#39;&#116;&#101;&#120;&#116;&#47;&#106;&#97;&#118;&#97;&#115;&#99;&#114;&#105;&#112;&#116;&#39;&#59;&#32;&#103;&#97;&#46;&#97;&#115;&#121;&#110;&#99;&#32;&#61;&#32;&#116;&#114;&#117;&#101;&#59;
&#32;&#32;&#32;&#32;&#103;&#97;&#46;&#115;&#114;&#99;&#32;&#61;&#32;&#40;&#39;&#104;&#116;&#116;&#112;&#115;&#58;&#39;&#32;&#61;&#61;&#32;&#100;&#111;&#99;&#117;&#109;&#101;&#110;&#116;&#46;&#108;&#111;&#99;&#97;&#116;&#105;&#111;&#110;&#46;&#112;&#114;&#111;&#116;&#111;&#99;&#111;&#108;&#32;&#63;&#32;&#39;&#104;&#116;&#116;&#112;&#115;&#58;&#47;&#47;&#115;&#115;&#108;&#39;&#32;&#58;&#32;&#39;&#104;&#116;&#116;&#112;&#58;&#47;&#47;&#119;&#119;&#119;&#39;&#41;&#32;&#43;&#32;&#39;&#46;&#103;&#111;&#111;&#103;&#108;&#101;&#45;&#97;&#110;&#97;&#108;&#121;&#116;&#105;&#99;&#115;&#46;&#99;&#111;&#109;&#47;&#103;&#97;&#46;&#106;&#115;&#39;&#59;
&#32;&#32;&#32;&#32;&#118;&#97;&#114;&#32;&#115;&#32;&#61;&#32;&#100;&#111;&#99;&#117;&#109;&#101;&#110;&#116;&#46;&#103;&#101;&#116;&#69;&#108;&#101;&#109;&#101;&#110;&#116;&#115;&#66;&#121;&#84;&#97;&#103;&#78;&#97;&#109;&#101;&#40;&#39;&#115;&#99;&#114;&#105;&#112;&#116;&#39;&#41;&#91;&#48;&#93;&#59;&#32;&#115;&#46;&#112;&#97;&#114;&#101;&#110;&#116;&#78;&#111;&#100;&#101;&#46;&#105;&#110;&#115;&#101;&#114;&#116;&#66;&#101;&#102;&#111;&#114;&#101;&#40;&#103;&#97;&#44;&#32;&#115;&#41;&#59;
&#32;&#32;&#125;&#41;&#40;&#41;&#59;
&#60;&#47;&#115;&#99;&#114;&#105;&#112;&#116;&#62;</p>


<h3>2. Add the &#8220;event tracking&#8221; code into your PayPal form</h3>

<p>This is the &#8220;event tracking&#8221; code:</p>
<p style="color:#E5B208;"> &#111;&#110;&#67;&#108;&#105;&#99;&#107;&#61;&#34;&#95;&#103;&#97;&#113;&#46;&#112;&#117;&#115;&#104;&#40;&#91;&#39;&#95;&#116;&#114;&#97;&#99;&#107;&#69;&#118;&#101;&#110;&#116;&#39;&#44;&#32;&#39;&#79;&#110;&#101;&#39;&#44;&#32;&#39;&#84;&#119;&#111;&#39;&#44;&#32;&#39;&#84;&#104;&#114;&#101;&#101;&#39;&#93;&#41;&#59;&#34;
</p>

<p>This is the PayPal form code:</p>
<p style="color:#E5B208;"> 
&#60;&#102;&#111;&#114;&#109;&#32;&#97;&#99;&#116;&#105;&#111;&#110;&#61;&#34;&#104;&#116;&#116;&#112;&#115;&#58;&#47;&#47;&#119;&#119;&#119;&#46;&#112;&#97;&#121;&#112;&#97;&#108;&#46;&#99;&#111;&#109;&#47;&#99;&#103;&#105;&#45;&#98;&#105;&#110;&#47;&#119;&#101;&#98;&#115;&#99;&#114;&#34;&#32;&#109;&#101;&#116;&#104;&#111;&#100;&#61;&#34;&#112;&#111;&#115;&#116;&#34;&#62;<br />&#60;&#105;&#110;&#112;&#117;&#116;&#32;&#116;&#121;&#112;&#101;&#61;&#34;&#104;&#105;&#100;&#100;&#101;&#110;&#34;&#32;&#110;&#97;&#109;&#101;&#61;&#34;&#99;&#109;&#100;&#34;&#32;&#118;&#97;&#108;&#117;&#101;&#61;&#34;&#88;&#88;&#88;&#34;&#62;<br />&#60;&#105;&#110;&#112;&#117;&#116;&#32;&#116;&#121;&#112;&#101;&#61;&#34;&#104;&#105;&#100;&#100;&#101;&#110;&#34;&#32;&#110;&#97;&#109;&#101;&#61;&#34;&#104;&#111;&#115;&#116;&#101;&#100;&#95;&#98;&#117;&#116;&#116;&#111;&#110;&#95;&#105;&#100;&#34;&#32;&#118;&#97;&#108;&#117;&#101;&#61;&#34;&#88;&#88;&#88;&#34;&#62;<br />&#60;&#105;&#110;&#112;&#117;&#116;&#32;&#116;&#121;&#112;&#101;&#61;&#34;&#105;&#109;&#97;&#103;&#101;&#34;&#32;&#115;&#114;&#99;&#61;&#34;&#98;&#117;&#121;&#46;&#112;&#110;&#103;&#34;&#32;&#98;&#111;&#114;&#100;&#101;&#114;&#61;&#34;&#48;&#34;&#32;&#110;&#97;&#109;&#101;&#61;&#34;&#115;&#117;&#98;&#109;&#105;&#116;&#34;&#32;&#97;&#108;&#116;&#61;&#34;&#80;&#97;&#121;&#80;&#97;&#108;&#32;&#45;&#32;&#84;&#104;&#101;&#32;&#115;&#97;&#102;&#101;&#114;&#44;&#32;&#101;&#97;&#115;&#105;&#101;&#114;&#32;&#119;&#97;&#121;&#32;&#116;&#111;&#32;&#112;&#97;&#121;&#32;&#111;&#110;&#108;&#105;&#110;&#101;&#33;&#34;&#62;<br />&#60;&#105;&#109;&#103;&#32;&#97;&#108;&#116;&#61;&#34;&#34;&#32;&#98;&#111;&#114;&#100;&#101;&#114;&#61;&#34;&#48;&#34;&#32;&#115;&#114;&#99;&#61;&#34;&#104;&#116;&#116;&#112;&#115;&#58;&#47;&#47;&#119;&#119;&#119;&#46;&#112;&#97;&#121;&#112;&#97;&#108;&#46;&#99;&#111;&#109;&#47;&#101;&#110;&#95;&#85;&#83;&#47;&#105;&#47;&#115;&#99;&#114;&#47;&#112;&#105;&#120;&#101;&#108;&#46;&#103;&#105;&#102;&#34;&#32;&#119;&#105;&#100;&#116;&#104;&#61;&#34;&#49;&#34;&#32;&#104;&#101;&#105;&#103;&#104;&#116;&#61;&#34;&#49;&#34;&#62;<br />&#60;&#47;&#102;&#111;&#114;&#109;&#62;
</p>

<p>And here is the google tracking code and the PayPal form together:</p>
<p style="color:#E5B208;"> 
&#60;&#102;&#111;&#114;&#109;&#32;&#97;&#99;&#116;&#105;&#111;&#110;&#61;&#34;&#104;&#116;&#116;&#112;&#115;&#58;&#47;&#47;&#119;&#119;&#119;&#46;&#112;&#97;&#121;&#112;&#97;&#108;&#46;&#99;&#111;&#109;&#47;&#99;&#103;&#105;&#45;&#98;&#105;&#110;&#47;&#119;&#101;&#98;&#115;&#99;&#114;&#34;&#32;&#109;&#101;&#116;&#104;&#111;&#100;&#61;&#34;&#112;&#111;&#115;&#116;&#34;&#32;&#111;&#110;&#67;&#108;&#105;&#99;&#107;&#61;&#34;&#95;&#103;&#97;&#113;&#46;&#112;&#117;&#115;&#104;&#40;&#91;&#39;&#95;&#116;&#114;&#97;&#99;&#107;&#69;&#118;&#101;&#110;&#116;&#39;&#44;&#32;&#39;&#79;&#110;&#101;&#39;&#44;&#32;&#39;&#84;&#119;&#111;&#39;&#44;&#32;&#39;&#84;&#104;&#114;&#101;&#101;&#39;&#93;&#41;&#59;&#34;&#62;<br />&#60;&#105;&#110;&#112;&#117;&#116;&#32;&#116;&#121;&#112;&#101;&#61;&#34;&#104;&#105;&#100;&#100;&#101;&#110;&#34;&#32;&#110;&#97;&#109;&#101;&#61;&#34;&#99;&#109;&#100;&#34;&#32;&#118;&#97;&#108;&#117;&#101;&#61;&#34;&#88;&#88;&#88;&#34;&#62;<br />&#60;&#105;&#110;&#112;&#117;&#116;&#32;&#116;&#121;&#112;&#101;&#61;&#34;&#104;&#105;&#100;&#100;&#101;&#110;&#34;&#32;&#110;&#97;&#109;&#101;&#61;&#34;&#104;&#111;&#115;&#116;&#101;&#100;&#95;&#98;&#117;&#116;&#116;&#111;&#110;&#95;&#105;&#100;&#34;&#32;&#118;&#97;&#108;&#117;&#101;&#61;&#34;&#88;&#88;&#88;&#34;&#62;<br />&#60;&#105;&#110;&#112;&#117;&#116;&#32;&#116;&#121;&#112;&#101;&#61;&#34;&#105;&#109;&#97;&#103;&#101;&#34;&#32;&#115;&#114;&#99;&#61;&#34;&#98;&#117;&#121;&#46;&#112;&#110;&#103;&#34;&#32;&#98;&#111;&#114;&#100;&#101;&#114;&#61;&#34;&#48;&#34;&#32;&#110;&#97;&#109;&#101;&#61;&#34;&#115;&#117;&#98;&#109;&#105;&#116;&#34;&#32;&#97;&#108;&#116;&#61;&#34;&#80;&#97;&#121;&#80;&#97;&#108;&#32;&#45;&#32;&#84;&#104;&#101;&#32;&#115;&#97;&#102;&#101;&#114;&#44;&#32;&#101;&#97;&#115;&#105;&#101;&#114;&#32;&#119;&#97;&#121;&#32;&#116;&#111;&#32;&#112;&#97;&#121;&#32;&#111;&#110;&#108;&#105;&#110;&#101;&#33;&#34;&#62;<br />&#60;&#105;&#109;&#103;&#32;&#97;&#108;&#116;&#61;&#34;&#34;&#32;&#98;&#111;&#114;&#100;&#101;&#114;&#61;&#34;&#48;&#34;&#32;&#115;&#114;&#99;&#61;&#34;&#104;&#116;&#116;&#112;&#115;&#58;&#47;&#47;&#119;&#119;&#119;&#46;&#112;&#97;&#121;&#112;&#97;&#108;&#46;&#99;&#111;&#109;&#47;&#101;&#110;&#95;&#85;&#83;&#47;&#105;&#47;&#115;&#99;&#114;&#47;&#112;&#105;&#120;&#101;&#108;&#46;&#103;&#105;&#102;&#34;&#32;&#119;&#105;&#100;&#116;&#104;&#61;&#34;&#49;&#34;&#32;&#104;&#101;&#105;&#103;&#104;&#116;&#61;&#34;&#49;&#34;&#62;<br />&#60;&#47;&#102;&#111;&#114;&#109;&#62;
</p>

<h3>3. All done!</h3>
<p>Load the page (checking &#8220;view source&#8221; to make sure the new code is there). Click your &#8220;buy&#8221; button and then wait. I find Google Analytics takes about an hour to update the analytics information</p>
<p>To find the event information in Google Analytics: click &#8220;Content&#8221; then click &#8220;Event Tracking&#8221; on the left hand side menu</p>

<h3>4. Custom Reporting in Google Analytics</h3>
<p>Check out this video on how to create custom reports for your events.</p>
<p><iframe width="480" height="360" src="http://www.youtube.com/embed/NGgl137x3Yw" frameborder="0" allowfullscreen></iframe></p>]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/blog/track-a-paypal-form-event-with-google-analytics/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Loaders</title>
		<link>http://bee-software.net/webdesign/loaders/</link>
		<comments>http://bee-software.net/webdesign/loaders/#comments</comments>
		<pubDate>Wed, 11 May 2011 00:48:52 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://bee-software.net/webdesign/loaders/</guid>
		<description><![CDATA[Loaders is a landscapes supplies company based in Wanganui. The Loaders website was built on-top of WordPress. The design for the site was created by Loaders, Bee-Software built the site in such a way that products and data could easily &#8230; <a href="http://bee-software.net/webdesign/loaders/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Loaders is a landscapes supplies company based in Wanganui. The Loaders website was built on-top of WordPress. The design for the site was created by Loaders, Bee-Software built the site in such a way that products and data could easily be added by Loaders company employees.
<p>In their words:
<blockquote>Loaders Landscapes has been supplying the landscaping and gardening needs of Wanganui for over 10 years and our friendly experienced staff can help you choose the right product for your landscape project.</blockquote></p>]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/webdesign/loaders/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Touch The Collection</title>
		<link>http://bee-software.net/webdesign/touch-the-collection/</link>
		<comments>http://bee-software.net/webdesign/touch-the-collection/#comments</comments>
		<pubDate>Fri, 18 Feb 2011 23:21:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Web Design]]></category>

		<guid isPermaLink="false">http://bee-software.net/webdesign/touch-the-collection/</guid>
		<description><![CDATA[Touch is a micro site that was built to show the dress shirt designs of Touch. A more extensive site will be built in the near future. In their words: WHETHER YOU&#8217;RE HARD TO FIT, OR SIMPLY PREFER A UNIQUE &#8230; <a href="http://bee-software.net/webdesign/touch-the-collection/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Touch is a micro site that was built to show the dress shirt designs of Touch. A more extensive site will be built in the near future.
 
<p>In their words:

<blockquote>WHETHER YOU&#8217;RE HARD TO FIT, OR SIMPLY PREFER A UNIQUE SHIRT, TOUCH IS YOUR BRAND.
TOUCH OFFERS AN UNPARALLED SELECTION OF SHIRTS OFF THE RACK, OR BY SPECIAL ORDER.
OUR 2011 SERIES IS MADE UP OF EIGHT FANTASTIC VOLUMES THAT WILL BE RELEASED THROUGHOUT THE YEAR.
STAY TUNED FOR THE OFFICIAL WEBSITE LAUNCH&#8230; COMING SOON.
</blockquote></p>]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/webdesign/touch-the-collection/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Collector Software for Apple Mac, PC &amp; Linux Ubuntu</title>
		<link>http://bee-software.net/blog/collector-software-for-apple-mac-pc-linux-ubuntu/</link>
		<comments>http://bee-software.net/blog/collector-software-for-apple-mac-pc-linux-ubuntu/#comments</comments>
		<pubDate>Wed, 05 Jan 2011 06:55:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[software]]></category>

		<guid isPermaLink="false">http://bee-software.net/blog/collector-software-for-apple-mac-pc-linux-ubuntu/</guid>
		<description><![CDATA[Tell us what you want Available at the moment is our software to organize your stamp collection. We would be very happy to adapt the software for your area of collecting. If you have a suggestion for us to add &#8230; <a href="http://bee-software.net/blog/collector-software-for-apple-mac-pc-linux-ubuntu/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<h2>Tell us what you want</h2>
<p>Available at the moment is our software to organize your <a href="/collector-software/stamps/">stamp collection</a>. We would be very happy to adapt the software for your area of collecting. If you have a suggestion for us to add additional features to our software or to create a new app for your area of collecting please let us know using the comments form below.</p>

<h2>Stamp Collector Software</h2>
<p>We are happy to announce our second desktop application &#8220;<a href="/collector-software/stamps/">Busy Bee Stamp Collector</a>&#8220;, Stamp Collector for short. The software runs on all modern operating systems (Apple Mac, P.C &#038; Linux / Ubuntu). The software will store and organize your entire stamp collection. We wanted to keep it really simple to start with &#8211; it basically allows users to enter the details of their stamps and load an image.  The main stamp screen is very similar to the main Invoicing screen in <a href="/invoice-software/">Busy Bee Invoicing</a> &#8211; the user can view a list of all their stamps, see it&#8217;s total value, see stamps by year etc, and can Add/Edit/Delete stamps easily.  Included is the ability to import &#038; export stamp details to a spreadsheet, and to print a PDF page giving stamp details.  There will also be a gallery of all the stamp images and information.</p>

<a href="/collector-software/stamps/">Stamp Collector Software</a>
]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/blog/collector-software-for-apple-mac-pc-linux-ubuntu/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>Transparent Background Logo on a Twitter Account</title>
		<link>http://bee-software.net/blog/transparent-background-logo-on-a-twitter-account/</link>
		<comments>http://bee-software.net/blog/transparent-background-logo-on-a-twitter-account/#comments</comments>
		<pubDate>Thu, 14 Oct 2010 02:19:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[web design]]></category>

		<guid isPermaLink="false">http://bee-software.net/blog/transparent-background-logo-on-a-twitter-account/</guid>
		<description><![CDATA[Well this seems quite an obviously easy thing to do and it is as long as you upload the correct sized image. And yes, this is where I came a-cropper! I started off uploading a 38px x 38px png-24 file &#8230; <a href="http://bee-software.net/blog/transparent-background-logo-on-a-twitter-account/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Well this seems quite an obviously easy thing to do and it is as long as you upload the correct sized image. And yes, this is where I came a-cropper! I started off uploading a 38px x 38px png-24 file <img src="/wp-content/themes/beetheme02/images/blog/twitter/b.png" alt="B-Logo" style="float:right;"/> with a transparent background. It did not occur to me that this would be a problem. The image uploaded ok and displayed on my Twitter account but instead of being on a transparent background the image was now on at white background. Anyway a couple of days went by and I saw other logos on Twitter that were on transparent backgrounds so I tried again. This time I uploaded the same image but at 100px x 100px png-24 <img src="/wp-content/themes/beetheme02/images/blog/twitter/b-100.png" alt="B-Logo" style="float:right;"/> and &#8220;hey presto&#8221; it worked. I’m not sure what the reason is behind this &#8211; maybe a quality issue with such a small transparent image? Anyhow it works now, here&#8217;s my <a href="http://twitter.com/BeeSoftware">twitter page</a></p>]]></content:encoded>
			<wfw:commentRss>http://bee-software.net/blog/transparent-background-logo-on-a-twitter-account/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

