<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for MJDIGITAL :: Mark Jackson | Digital Consultant</title>
	<atom:link href="http://www.mjdigital.co.uk/blog/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mjdigital.co.uk/blog</link>
	<description>Online Marketing, SEO, Search engine optimisation, optimization, Web Development, digital strategy, digital strategist, online marketing consultant</description>
	<lastBuildDate>Tue, 21 May 2013 20:10:02 +0100</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on Track XML or server-side files using Google Analytics by Sebastian</title>
		<link>http://www.mjdigital.co.uk/blog/track-xml-or-server-side-files-using-google-analytics/comment-page-2/#comment-385</link>
		<dc:creator>Sebastian</dc:creator>
		<pubDate>Tue, 21 May 2013 20:10:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=240#comment-385</guid>
		<description>&lt;p&gt;not working for me?&lt;br&gt;is this still working?&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>not working for me?<br />is this still working?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on LDAP authentication with Active Directory using PHP by Jay</title>
		<link>http://www.mjdigital.co.uk/blog/ldap-authentication-active-directory-using-php/comment-page-1/#comment-383</link>
		<dc:creator>Jay</dc:creator>
		<pubDate>Thu, 16 May 2013 00:13:26 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=271#comment-383</guid>
		<description>&lt;p&gt;I used your version 1 script.&lt;/p&gt;

&lt;p&gt;Simple and easy. thanks.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I used your version 1 script.</p>
<p>Simple and easy. thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flash counter animation by Cory</title>
		<link>http://www.mjdigital.co.uk/blog/flash-counter-animation/comment-page-1/#comment-382</link>
		<dc:creator>Cory</dc:creator>
		<pubDate>Wed, 15 May 2013 21:18:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=93#comment-382</guid>
		<description>&lt;p&gt;Is there a way to slow down the animation to keep it continuous?    Something similar to Apple&#039;s countdown to 50 billion apps?&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Is there a way to slow down the animation to keep it continuous?    Something similar to Apple&#39;s countdown to 50 billion apps?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flash counter animation by Cory</title>
		<link>http://www.mjdigital.co.uk/blog/flash-counter-animation/comment-page-1/#comment-381</link>
		<dc:creator>Cory</dc:creator>
		<pubDate>Fri, 10 May 2013 22:13:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=93#comment-381</guid>
		<description>&lt;p&gt;Awesome work, thanks so much!   Updated directions were spot on and you saved me a great deal of time.   Much obliged!&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Awesome work, thanks so much!   Updated directions were spot on and you saved me a great deal of time.   Much obliged!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Anatomy of a good internet marketing campaign by kizi</title>
		<link>http://www.mjdigital.co.uk/blog/anatomy-of-a-good-internet-marketing-campaign/comment-page-1/#comment-376</link>
		<dc:creator>kizi</dc:creator>
		<pubDate>Thu, 02 May 2013 08:50:10 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=226#comment-376</guid>
		<description>&lt;p&gt;i am really a good info from this article.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>i am really a good info from this article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP upload, resize and crop image class by kalimba</title>
		<link>http://www.mjdigital.co.uk/blog/php-upload-and-resize-image-class/comment-page-4/#comment-372</link>
		<dc:creator>kalimba</dc:creator>
		<pubDate>Sat, 20 Apr 2013 04:15:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=176#comment-372</guid>
		<description>&lt;p&gt;I could not get this to work until I changed this line:&lt;/p&gt;

&lt;p&gt;// Copy image&lt;br&gt;        imagecopyresampled($canvas, $src, $x, $y, 0, 0, $s_width, $s_height, $s_width, $s_height);&lt;/p&gt;

&lt;p&gt;to:&lt;/p&gt;

&lt;p&gt;// Copy image&lt;br&gt;        imagecopyresampled($canvas, $src, 0, 0, $x, $y, $s_width, $s_height, $s_width, $s_height);&lt;/p&gt;

&lt;p&gt;I think the src position and destination position need to be swapped to place the newly cropped image on the canvas correctly&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>I could not get this to work until I changed this line:</p>
<p>// Copy image<br />        imagecopyresampled($canvas, $src, $x, $y, 0, 0, $s_width, $s_height, $s_width, $s_height);</p>
<p>to:</p>
<p>// Copy image<br />        imagecopyresampled($canvas, $src, 0, 0, $x, $y, $s_width, $s_height, $s_width, $s_height);</p>
<p>I think the src position and destination position need to be swapped to place the newly cropped image on the canvas correctly</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Search and Replace text in whole MySQL database by y0d4</title>
		<link>http://www.mjdigital.co.uk/blog/search-and-replace-text-in-whole-mysql-database/comment-page-2/#comment-371</link>
		<dc:creator>y0d4</dc:creator>
		<pubDate>Thu, 04 Apr 2013 15:14:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=52#comment-371</guid>
		<description>&lt;p&gt;Hello,&lt;/p&gt;

&lt;p&gt;great script man! :)&lt;br&gt;but i have little problem, when i fill up all details and click &quot;go&quot; i non-stop getting this info:&lt;/p&gt;

&lt;p&gt;Cannot Query DB: No database selected&lt;/p&gt;

&lt;p&gt;any suggestion?&lt;/p&gt;

&lt;p&gt;thank you.&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>great script man! <img src='http://www.mjdigital.co.uk/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> <br />but i have little problem, when i fill up all details and click &#8220;go&#8221; i non-stop getting this info:</p>
<p>Cannot Query DB: No database selected</p>
<p>any suggestion?</p>
<p>thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP upload, resize and crop image class by Gatis</title>
		<link>http://www.mjdigital.co.uk/blog/php-upload-and-resize-image-class/comment-page-4/#comment-369</link>
		<dc:creator>Gatis</dc:creator>
		<pubDate>Tue, 26 Mar 2013 13:53:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=176#comment-369</guid>
		<description>&lt;p&gt;This script upload and resize image. Select your image and image will resize to 200x200 px and 50x50 px &lt;a href=&quot;http://www.mystuffbox.net/product/3.html&quot; rel=&quot;nofollow&quot;&gt;http://www.mystuffbox.net/prod...&lt;/a&gt;&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>This script upload and resize image. Select your image and image will resize to 200&#215;200 px and 50&#215;50 px <a href="http://www.mystuffbox.net/product/3.html" rel="nofollow"></a><a href="http://www.mystuffbox.net/prod.." rel="nofollow">http://www.mystuffbox.net/prod..</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flash counter animation by mj7</title>
		<link>http://www.mjdigital.co.uk/blog/flash-counter-animation/comment-page-1/#comment-368</link>
		<dc:creator>mj7</dc:creator>
		<pubDate>Fri, 22 Mar 2013 15:12:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=93#comment-368</guid>
		<description>&lt;p&gt;Just checking - have you installed the MCTween extension - &lt;a href=&quot;http://hosted.zeh.com.br/mctween/downloads.html&quot; rel=&quot;nofollow&quot;&gt;http://hosted.zeh.com.br/mctwe...&lt;/a&gt; ? as the movie requires this to be installed using the extension manager. Also - this code (being quite old now) is AS2 so if your current movie is AS3 it will not work.&lt;/p&gt;

&lt;p&gt;If you are running AS2 and have got MCTween installed then are you getting any messages in the output panel?&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Just checking &#8211; have you installed the MCTween extension &#8211; <a href="http://hosted.zeh.com.br/mctween/downloads.html" rel="nofollow"></a><a href="http://hosted.zeh.com.br/mctwe.." rel="nofollow">http://hosted.zeh.com.br/mctwe..</a>. ? as the movie requires this to be installed using the extension manager. Also &#8211; this code (being quite old now) is AS2 so if your current movie is AS3 it will not work.</p>
<p>If you are running AS2 and have got MCTween installed then are you getting any messages in the output panel?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Flash counter animation by steph</title>
		<link>http://www.mjdigital.co.uk/blog/flash-counter-animation/comment-page-1/#comment-367</link>
		<dc:creator>steph</dc:creator>
		<pubDate>Fri, 22 Mar 2013 15:04:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.mjdigital.co.uk/blog/?p=93#comment-367</guid>
		<description>&lt;p&gt;Hi, i tried to copy the timeline and the existing elements in the library into my existing project timeline and library. It doesn&#039;t seem to work. Pls help. TQ&lt;/p&gt;</description>
		<content:encoded><![CDATA[<p>Hi, i tried to copy the timeline and the existing elements in the library into my existing project timeline and library. It doesn&#39;t seem to work. Pls help. TQ</p>
]]></content:encoded>
	</item>
</channel>
</rss>
