<?xml version="1.0" encoding="UTF-8"?><!-- generator="bbPress" -->

<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
>

<channel>
<title>ShareThis Forum: Recent Posts</title>
<link>http://forums.sharethis.com/</link>
<description>ShareThis Forum: Recent Posts</description>
<language>en</language>
<pubDate>Fri, 12 Mar 2010 06:57:13 +0000</pubDate>

<item>
<title>sffmedia on "New ShareThis Counter buttons"</title>
<link>http://forums.sharethis.com/topic.php?id=2516#post-4452</link>
<pubDate>Fri, 12 Mar 2010 01:17:17 +0000</pubDate>
<dc:creator>sffmedia</dc:creator>
<guid isPermaLink="false">4452@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Is the counter still an issue? I'm having the same problems on my site SFFMedia.com&#60;br /&#62;
Counters seem to be working randomly depending on the article...
&#60;/p&#62;</description>
</item>
<item>
<title>SvenAERTS228 on "United Nations: Share this via Blogger doesn't work !"</title>
<link>http://forums.sharethis.com/topic.php?id=2540#post-4451</link>
<pubDate>Thu, 11 Mar 2010 23:28:15 +0000</pubDate>
<dc:creator>SvenAERTS228</dc:creator>
<guid isPermaLink="false">4451@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;People: the website of the UN is using &#34;Share this&#34; ... have a look:&#60;br /&#62;
&#60;a href=&#34;http://www.un.org/apps/news/story.asp?NewsID=34036&#38;#38;Cr=climate+change&#38;#38;Cr1=&#34; rel=&#34;nofollow&#34;&#62;http://www.un.org/apps/news/story.asp?NewsID=34036&#38;#38;Cr=climate+change&#38;#38;Cr1=&#60;/a&#62;&#60;br /&#62;
But what a bummer when I select &#34;blogger&#34; it returns &#34;unable to connect to your blog&#34;.&#60;br /&#62;
I have 3 blogs on Blogger: one on my personal life, my professional life and 1 in french.&#60;br /&#62;
Help!
&#60;/p&#62;</description>
</item>
<item>
<title>SvenAERTS228 on "Why do the 4 icons appear vertical iso horizontal, taking up too much space?"</title>
<link>http://forums.sharethis.com/topic.php?id=2539#post-4450</link>
<pubDate>Thu, 11 Mar 2010 22:59:23 +0000</pubDate>
<dc:creator>SvenAERTS228</dc:creator>
<guid isPermaLink="false">4450@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;I've read the forum and the faq's, tried to play a bit with the code, but I can't make them appear horizontally as in the example button.&#60;br /&#62;
You know there's 2 windows generating code. I chose the 4 icons horizontal bar.&#60;br /&#62;
The top code window doesn't create anything in the blogger gadget, apart from the titel of the gadget.&#60;br /&#62;
The lower window code works apart from that the icon's are not portrayed horizontally but vertically.&#60;br /&#62;
I'm copy/pasting the code in the gadget called &#34;HTML/JavaScript&#60;br /&#62;
Add third-party functionality or other code to your blog. &#34;&#60;br /&#62;
This is my blog: - &#60;a href=&#34;http://svenaerts228.blogspot.com&#34; rel=&#34;nofollow&#34;&#62;http://svenaerts228.blogspot.com&#60;/a&#62;&#60;br /&#62;
where you can see the 4 logo's at the top right ... all vertically iso horizontally unfortunately.
&#60;/p&#62;</description>
</item>
<item>
<title>maryamgarrett on "How to update properties.url dynamically"</title>
<link>http://forums.sharethis.com/topic.php?id=2538#post-4449</link>
<pubDate>Thu, 11 Mar 2010 16:32:21 +0000</pubDate>
<dc:creator>maryamgarrett</dc:creator>
<guid isPermaLink="false">4449@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;after loading a page,  i want to be able to change the share url.  I thought I could accomplish this with custom callbacks, but it doesn't seem to be working. The shared object properties are indeed updated (verified by the alert) but the new information doesn't seem to get passed along in the email.&#60;/p&#62;
&#60;p&#62;here is my code:&#60;br /&#62;
&#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;/p&#62;
&#60;p&#62;  function myCustomCallback(SharedObject){&#60;br /&#62;
    /*&#60;br /&#62;
    * The sharelet is passed to the myCustomCallback callback routine.&#60;br /&#62;
    * We will aler the title and url&#60;br /&#62;
    */&#60;br /&#62;
    var image_number = document.location.hash;&#60;br /&#62;
    image_number = image_number.substr(1);&#60;br /&#62;
    //alert(SharedObject.properties.title + &#34;\n&#34; + SharedObject.properties.url);&#60;br /&#62;
    SharedObject.properties.content =  'http://foobar.com/'+ image_number +'.JPG';&#60;br /&#62;
    SharedObject.properties.icon = 'http://foobar.com/'+ image_number +'.JPG';&#60;br /&#62;
    SharedObject.properties.url = 'http://foobar.com/'+ image_number +'.JPG';&#60;br /&#62;
    alert(SharedObject.properties.url + &#34;\n&#34; + SharedObject.properties.content + &#34;\n&#34; + SharedObject.properties.icon);&#60;br /&#62;
     /*&#60;br /&#62;
      * Return true to show the widget&#60;br /&#62;
     */&#60;br /&#62;
     return true;&#60;br /&#62;
   };&#60;/p&#62;
&#60;p&#62;var shared_object = SHARETHIS.addEntry({&#60;br /&#62;
  title: &#34;A Picture for you&#34;},&#60;br /&#62;
  {onclick:myCustomCallback}&#60;br /&#62;
);&#60;br /&#62;
shared_object.attachChicklet(&#34;email&#34;, document.getElementById(&#34;ck_email&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;facebook&#34;, document.getElementById(&#34;ck_facebook&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;twitter&#34;, document.getElementById(&#34;ck_twitter&#34;));&#60;br /&#62;
&#38;lt;/script&#38;gt;
&#60;/p&#62;</description>
</item>
<item>
<title>Tonelli on ""attachChicklet" function not working for some of the chicklets"</title>
<link>http://forums.sharethis.com/topic.php?id=2536#post-4448</link>
<pubDate>Wed, 10 Mar 2010 23:40:52 +0000</pubDate>
<dc:creator>Tonelli</dc:creator>
<guid isPermaLink="false">4448@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Support guys, please, some help on this???
&#60;/p&#62;</description>
</item>
<item>
<title>WWWCur on "How to get ShareThis to work in an AJAX context."</title>
<link>http://forums.sharethis.com/topic.php?id=2260#post-4447</link>
<pubDate>Wed, 10 Mar 2010 22:00:25 +0000</pubDate>
<dc:creator>WWWCur</dc:creator>
<guid isPermaLink="false">4447@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Read this &#60;a href=&#34;http://kinglogic.ru/content/view/130/72&#34; rel=&#34;nofollow&#34;&#62;http://kinglogic.ru/content/view/130/72&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>webops on "Email feature not working?"</title>
<link>http://forums.sharethis.com/topic.php?id=2512#post-4446</link>
<pubDate>Wed, 10 Mar 2010 14:25:14 +0000</pubDate>
<dc:creator>webops</dc:creator>
<guid isPermaLink="false">4446@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Has this been confirmed as working now? Last complaint I received was 3/5.
&#60;/p&#62;</description>
</item>
<item>
<title>Tonelli on ""attachChicklet" function not working for some of the chicklets"</title>
<link>http://forums.sharethis.com/topic.php?id=2536#post-4445</link>
<pubDate>Tue, 09 Mar 2010 23:02:06 +0000</pubDate>
<dc:creator>Tonelli</dc:creator>
<guid isPermaLink="false">4445@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Guys,&#60;/p&#62;
&#60;p&#62;was just testing and I found that just the following services are working:&#60;/p&#62;
&#60;p&#62;shared_object.attachChicklet(&#34;facebook&#34;, document.getElementById(&#34;share_facebook&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;twitter&#34;, document.getElementById(&#34;share_twitter&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;email&#34;, document.getElementById(&#34;share_email&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;digg&#34;, document.getElementById(&#34;share_digg&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;yahoo_buzz&#34;, document.getElementById(&#34;share_ybuzz&#34;));&#60;/p&#62;
&#60;p&#62;Can please some one help me with the names of the other services names:&#60;/p&#62;
&#60;p&#62;- google_bookmarks&#60;br /&#62;
- delicious&#60;br /&#62;
- stumbleupon&#60;br /&#62;
- reddit&#60;br /&#62;
- text&#60;/p&#62;
&#60;p&#62;support, someone???&#60;/p&#62;
&#60;p&#62;regards.
&#60;/p&#62;</description>
</item>
<item>
<title>Steve Ragan on "Counter not updating in most recent post"</title>
<link>http://forums.sharethis.com/topic.php?id=2527#post-4444</link>
<pubDate>Tue, 09 Mar 2010 21:28:20 +0000</pubDate>
<dc:creator>Steve Ragan</dc:creator>
<guid isPermaLink="false">4444@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;That is because the count doesn't appear until that content has been shared. &#60;/p&#62;
&#60;p&#62;As of right now, it takes about an hour for the share to appear, we are working on speeding that up.&#60;/p&#62;
&#60;p&#62;--Steve
&#60;/p&#62;</description>
</item>
<item>
<title>qingqing on "What’s nike shox?"</title>
<link>http://forums.sharethis.com/topic.php?id=2537#post-4443</link>
<pubDate>Tue, 09 Mar 2010 07:21:50 +0000</pubDate>
<dc:creator>qingqing</dc:creator>
<guid isPermaLink="false">4443@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;A pair of Nike Shox (http://www.nikeshox4u.org) Precision for women. Shox is technology developed by Nike and incorporated into several of their flagship athletic shoes. Shox are small hollow columns that make up the midsole of the shoe. They are mostly made of rubber, these being those which are actually called Shox. There are many different formations that Shox come in, but they usually come with four circular columns in a square formation for maximum cushioning.
&#60;/p&#62;</description>
</item>
<item>
<title>losbarco on "null is null or is not an object"</title>
<link>http://forums.sharethis.com/topic.php?id=2524#post-4442</link>
<pubDate>Tue, 09 Mar 2010 02:57:10 +0000</pubDate>
<dc:creator>losbarco</dc:creator>
<guid isPermaLink="false">4442@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Yes, with Internet Explorer version 8.0.6001, but not with Firefox. Sorry for not specifying this before.
&#60;/p&#62;</description>
</item>
<item>
<title>Tonelli on ""attachChicklet" function not working for some of the chicklets"</title>
<link>http://forums.sharethis.com/topic.php?id=2536#post-4441</link>
<pubDate>Tue, 09 Mar 2010 00:46:49 +0000</pubDate>
<dc:creator>Tonelli</dc:creator>
<guid isPermaLink="false">4441@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;I'm using sharethis chicklets and I couldn`t find a way to make some of them work.&#60;/p&#62;
&#60;p&#62;WORKING&#60;br /&#62;
shared_object.attachChicklet(&#34;facebook&#34;, document.getElementById(&#34;share_facebook&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;twitter&#34;, document.getElementById(&#34;share_twitter&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;email&#34;, document.getElementById(&#34;share_email&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;digg&#34;, document.getElementById(&#34;share_digg&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;email&#34;, document.getElementById(&#34;share_gbookmarks&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;yahoo_buzz&#34;, document.getElementById(&#34;share_ybuzz&#34;));&#60;/p&#62;
&#60;p&#62;NOT WORKING&#60;br /&#62;
shared_object.attachChicklet(&#34;text&#34;, document.getElementById(&#34;share_text&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;delicious&#34;, document.getElementById(&#34;share_delicious&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;stumbleupon&#34;, document.getElementById(&#34;share_stumbleupon&#34;));&#60;br /&#62;
shared_object.attachChicklet(&#34;reddit&#34;, document.getElementById(&#34;share_reddit&#34;));&#60;/p&#62;
&#60;p&#62;does someone know if I`m namming wrongly those 4 chicklets that are not working? or what else am I doing wrong?&#60;/p&#62;
&#60;p&#62;regards.
&#60;/p&#62;</description>
</item>
<item>
<title>JumpstartMyPC on "Counter not updating in most recent post"</title>
<link>http://forums.sharethis.com/topic.php?id=2527#post-4440</link>
<pubDate>Mon, 08 Mar 2010 21:26:55 +0000</pubDate>
<dc:creator>JumpstartMyPC</dc:creator>
<guid isPermaLink="false">4440@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Wanted to post an update on this issue.  The problem has now spread and counters only appear on random posts.  2 of my last 10 have counters and the rest... nothing.
&#60;/p&#62;</description>
</item>
<item>
<title>JumpstartMyPC on "Who did I share with? Changes in ShareThis"</title>
<link>http://forums.sharethis.com/topic.php?id=2528#post-4439</link>
<pubDate>Mon, 08 Mar 2010 21:25:43 +0000</pubDate>
<dc:creator>JumpstartMyPC</dc:creator>
<guid isPermaLink="false">4439@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Great to hear.  Thanks for the update.
&#60;/p&#62;</description>
</item>
<item>
<title>Steve Ragan on "Youtube embed object disappear"</title>
<link>http://forums.sharethis.com/topic.php?id=2530#post-4438</link>
<pubDate>Mon, 08 Mar 2010 20:13:47 +0000</pubDate>
<dc:creator>Steve Ragan</dc:creator>
<guid isPermaLink="false">4438@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;You must set embeddable elements on the page to be visible while the iframe is loaded. Here are instructions to do so: &#60;/p&#62;
&#60;p&#62;&#60;a href=&#34;http://blog.sharethis.com/faq/developers-faq/embedded-elements-to-be-visible-while-iframe-is-loaded/&#34; rel=&#34;nofollow&#34;&#62;http://blog.sharethis.com/faq/developers-faq/embedded-elements-to-be-visible-while-iframe-is-loaded/&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;--Steve
&#60;/p&#62;</description>
</item>
<item>
<title>Steve Ragan on "Beginner attempting to use a customized ShareThis button"</title>
<link>http://forums.sharethis.com/topic.php?id=2529#post-4437</link>
<pubDate>Mon, 08 Mar 2010 20:06:36 +0000</pubDate>
<dc:creator>Steve Ragan</dc:creator>
<guid isPermaLink="false">4437@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hi, In the head of your page you will need the ShareThis code that can be generated here: &#60;a href=&#34;http://sharethis.com/publishers/getbutton&#34; rel=&#34;nofollow&#34;&#62;http://sharethis.com/publishers/getbutton&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;You then need to add &#60;code&#62;;button=false&#60;/code&#62; to the end of the code. &#60;/p&#62;
&#60;p&#62;Here is an example of the code that you will put in the body (the lines with // in front are comments, not part of the code):&#60;/p&#62;
&#60;p&#62;&#38;lt;script language=&#34;javascript&#34; type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
//Create your sharelet with desired properties and set button element to false&#60;br /&#62;
var object = SHARETHIS.addEntry({&#60;br /&#62;
title:'share',&#60;br /&#62;
summary: 'Sharing is good for the soul.'},&#60;br /&#62;
{button:false});&#60;br /&#62;
//Output your customized button&#60;br /&#62;
document.write('&#38;lt;span id=&#34;share&#34;&#38;gt;&#60;a href=&#34;void(0);&#34;&#62;&#38;lt;img src=&#34;/my_share_icon.gif&#34; /&#38;gt;Share!&#60;/a&#62;&#38;lt;/span&#38;gt;');&#60;/p&#62;
&#60;p&#62;//Tie customized button to ShareThis button functionality.&#60;br /&#62;
var element = document.getElementById(&#34;share&#34;);&#60;br /&#62;
object.attachButton(element);&#60;br /&#62;
&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;Hope that helped,&#60;/p&#62;
&#60;p&#62;--Steve
&#60;/p&#62;</description>
</item>
<item>
<title>Steve Ragan on "Who did I share with? Changes in ShareThis"</title>
<link>http://forums.sharethis.com/topic.php?id=2528#post-4436</link>
<pubDate>Mon, 08 Mar 2010 19:59:47 +0000</pubDate>
<dc:creator>Steve Ragan</dc:creator>
<guid isPermaLink="false">4436@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;It was cut for the first release of the new site because we were on a time crunch for the release, but it will be put back in future versions.&#60;/p&#62;
&#60;p&#62;--Steve
&#60;/p&#62;</description>
</item>
<item>
<title>Steve Ragan on "Using counter for a custom button?"</title>
<link>http://forums.sharethis.com/topic.php?id=2517#post-4435</link>
<pubDate>Mon, 08 Mar 2010 19:50:23 +0000</pubDate>
<dc:creator>Steve Ragan</dc:creator>
<guid isPermaLink="false">4435@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;That can only be done using the addEntry. call&#60;/p&#62;
&#60;p&#62;-Steve
&#60;/p&#62;</description>
</item>
<item>
<title>Steve Ragan on "share to fan page"</title>
<link>http://forums.sharethis.com/topic.php?id=2535#post-4434</link>
<pubDate>Mon, 08 Mar 2010 19:49:01 +0000</pubDate>
<dc:creator>Steve Ragan</dc:creator>
<guid isPermaLink="false">4434@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;Unfortunately it's not, Facebook hasn't made this an option up to this point.&#60;/p&#62;
&#60;p&#62;But once they make it possible, we will implement it as a feature&#60;/p&#62;
&#60;p&#62;--Steve
&#60;/p&#62;</description>
</item>
<item>
<title>Steve Ragan on "Cant see all my shares"</title>
<link>http://forums.sharethis.com/topic.php?id=2525#post-4433</link>
<pubDate>Mon, 08 Mar 2010 19:44:56 +0000</pubDate>
<dc:creator>Steve Ragan</dc:creator>
<guid isPermaLink="false">4433@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;When we launched the new ShareThis site and stream, we launched a new view of the ShareBox, called MyShares. In this process, you may have lost some of your Sharebox items. We apologize for this inconvenience, but we hope you like the new features found in the ShareThis Stream.&#60;/p&#62;
&#60;p&#62;--Steve
&#60;/p&#62;</description>
</item>
<item>
<title>Steve Ragan on "null is null or is not an object"</title>
<link>http://forums.sharethis.com/topic.php?id=2524#post-4432</link>
<pubDate>Mon, 08 Mar 2010 19:42:58 +0000</pubDate>
<dc:creator>Steve Ragan</dc:creator>
<guid isPermaLink="false">4432@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I'm not seeing any errors on your site. Are you still experiencing issues?&#60;/p&#62;
&#60;p&#62;--Steve
&#60;/p&#62;</description>
</item>
<item>
<title>gtroop on "share to fan page"</title>
<link>http://forums.sharethis.com/topic.php?id=2535#post-4431</link>
<pubDate>Mon, 08 Mar 2010 11:12:15 +0000</pubDate>
<dc:creator>gtroop</dc:creator>
<guid isPermaLink="false">4431@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Is it possible to share something (like a link) to a fan page wall instead of a profile wall?
&#60;/p&#62;</description>
</item>
<item>
<title>Blader McBlack on "ShareThis button pushes my page down with phantom padding"</title>
<link>http://forums.sharethis.com/topic.php?id=2533#post-4429</link>
<pubDate>Mon, 08 Mar 2010 05:33:44 +0000</pubDate>
<dc:creator>Blader McBlack</dc:creator>
<guid isPermaLink="false">4429@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Anyone had this issue?  I've tried offsetting the button and it doesn't get rid of this phantom padding/margin.  I added this into the footer on 2 of my websites so far and everytime I rollover to activate the shareThis button it pushes my site's background down by about 300-400px's.  Does anyone have a solution? I've been looking everywhere with no success.
&#60;/p&#62;</description>
</item>
<item>
<title>ChristopherWhitlock on "Share this in a popup window instead of an interstitial"</title>
<link>http://forums.sharethis.com/topic.php?id=2316#post-4426</link>
<pubDate>Sat, 06 Mar 2010 15:14:24 +0000</pubDate>
<dc:creator>ChristopherWhitlock</dc:creator>
<guid isPermaLink="false">4426@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Steve do we just paste that code over the old code on our site or do we enter it in a specific place? I'm not great with code but I expect it goes before the body tag.
&#60;/p&#62;</description>
</item>
<item>
<title>onemenny on "Youtube embed object disappear"</title>
<link>http://forums.sharethis.com/topic.php?id=2530#post-4425</link>
<pubDate>Sat, 06 Mar 2010 12:02:11 +0000</pubDate>
<dc:creator>onemenny</dc:creator>
<guid isPermaLink="false">4425@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hi all&#60;br /&#62;
whenever i hover ShareThis my youtube embed object disappear&#60;/p&#62;
&#60;p&#62;look at: &#60;a href=&#34;http://www.hasharat.co.il/html/article_22120.php&#34; rel=&#34;nofollow&#34;&#62;http://www.hasharat.co.il/html/article_22120.php&#60;/a&#62; at the buttom of the page&#60;/p&#62;
&#60;p&#62;thank you
&#60;/p&#62;</description>
</item>
<item>
<title>zlatan24 on "Can't import yahoo addressbook"</title>
<link>http://forums.sharethis.com/topic.php?id=674#post-4424</link>
<pubDate>Sat, 06 Mar 2010 06:52:11 +0000</pubDate>
<dc:creator>zlatan24</dc:creator>
<guid isPermaLink="false">4424@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;I often use my outlook express address book,and today I renamed some contcts and unexpectedly something happened. And all of them were lost. But I used the Google and found there - &#60;a href=&#34;http://www.recoverytoolbox.com/windows_address_book_repair.html&#34;&#62;windows address book error&#60;/a&#62;. It determined my trouble for seconds and absolutely free as I bear in mind. Besides I knew how the software can successfully solves the problem of data corruption for files of wa~ and wab format.
&#60;/p&#62;</description>
</item>
<item>
<title>switters on "Move ShareThis icon to top of Wordpress posts?"</title>
<link>http://forums.sharethis.com/topic.php?id=2520#post-4423</link>
<pubDate>Sat, 06 Mar 2010 00:17:23 +0000</pubDate>
<dc:creator>switters</dc:creator>
<guid isPermaLink="false">4423@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Thanks, Steve.  Appreciate the response.
&#60;/p&#62;</description>
</item>
<item>
<title>bernb on "Beginner attempting to use a customized ShareThis button"</title>
<link>http://forums.sharethis.com/topic.php?id=2529#post-4422</link>
<pubDate>Fri, 05 Mar 2010 21:05:33 +0000</pubDate>
<dc:creator>bernb</dc:creator>
<guid isPermaLink="false">4422@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;I'm quite the beginner in website scripting and programming.  Trying to add a custom ShareThis button to my website.&#60;br /&#62;
I have read the STAPI and other forum answers, and I can't seem to get this to work.&#60;/p&#62;
&#60;p&#62;So I have the API script in my &#38;lt;head&#38;gt; section&#60;/p&#62;
&#60;p&#62;&#38;lt;script language=&#34;javascript&#34; type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
//Create your sharelet with desired properties and set button element to false&#60;br /&#62;
var object = SHARETHIS.addEntry({&#60;br /&#62;
title:'share',&#60;br /&#62;
summary: 'Sharing is good for the soul.'},&#60;br /&#62;
{button:false});&#60;br /&#62;
//Output your customized button&#60;br /&#62;
document.write('&#38;lt;span id=&#34;share&#34;&#38;gt;&#60;a href=&#34;void(0);&#34;&#62;&#38;lt;img src=&#34;images/sharethisicon.png&#34; /&#38;gt;Share!&#60;/a&#62;&#38;lt;/span&#38;gt;');&#60;br /&#62;
//Tie customized button to ShareThis button functionality.&#60;br /&#62;
var element = document.getElementById(&#34;share&#34;);&#60;br /&#62;
object.attachButton(element);&#60;br /&#62;
&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;I have the &#38;lt;img&#38;gt; in the &#38;lt;body&#38;gt;&#60;br /&#62;
&#38;lt;img src=&#34;images/sharethisicon.png&#34; alt=&#34;share&#34; width=&#34;43&#34; height=&#34;43&#34; /&#38;gt;&#60;/p&#62;
&#60;p&#62;And I've tried adding the original 'sharethis' code in the &#38;lt;head&#38;gt; or in the &#38;lt;body&#38;gt; or not at all.&#60;/p&#62;
&#60;p&#62;What else do I need to change?&#60;br /&#62;
Do I need the full url for the image?&#60;/p&#62;
&#60;p&#62;Thank you!
&#60;/p&#62;</description>
</item>
<item>
<title>Steve Ragan on "Move ShareThis icon to top of Wordpress posts?"</title>
<link>http://forums.sharethis.com/topic.php?id=2520#post-4421</link>
<pubDate>Fri, 05 Mar 2010 20:06:11 +0000</pubDate>
<dc:creator>Steve Ragan</dc:creator>
<guid isPermaLink="false">4421@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;If you are using the Plug-in, this isn't possible.&#60;/p&#62;
&#60;p&#62;But if you want to manually enter the ShareThis code into your blog, you can place it at the top of your single post template.&#60;/p&#62;
&#60;p&#62;Here is the simplest example of implementing ShareThis on a WordPress&#60;br /&#62;
blog without using the ShareThis plugin.&#60;/p&#62;
&#60;p&#62;1) In the Header template, just before &#38;lt;/head&#38;gt;, add the ShareThis JavaScript library.&#60;br /&#62;
   &#38;lt;script type=&#34;text/javascript&#34;&#60;br /&#62;
src=&#34;http://w.sharethis.com/button/sharethis.js#publisher=00000000-0000-0000-0000-000000000000&#38;amp;type=website&#34;&#38;gt;&#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;2) In the Main Index template, inside the post loop, place the following code where you want the ShareThis button to appear.&#60;br /&#62;
   &#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
     var shared_object = SHARETHIS.addEntry({&#60;br /&#62;
       title: &#34;&#38;lt;?php the_title(); ?&#38;gt;&#34;,&#60;br /&#62;
       url: &#34;&#38;lt;?php the_permalink(); ?&#38;gt;&#34;&#60;br /&#62;
     });&#60;br /&#62;
   &#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;3) In the Single Post template, place the following code where you want the ShareThis button to appear.&#60;br /&#62;
   &#38;lt;script type=&#34;text/javascript&#34;&#38;gt;&#60;br /&#62;
     var shared_object = SHARETHIS.addEntry({&#60;br /&#62;
       title: &#34;&#38;lt;?php the_title(); ?&#38;gt;&#34;,&#60;br /&#62;
       url: &#34;&#38;lt;?php the_permalink(); ?&#38;gt;&#34;&#60;br /&#62;
     });&#60;br /&#62;
   &#38;lt;/script&#38;gt;&#60;/p&#62;
&#60;p&#62;--Steve
&#60;/p&#62;</description>
</item>
<item>
<title>JumpstartMyPC on "Who did I share with? Changes in ShareThis"</title>
<link>http://forums.sharethis.com/topic.php?id=2528#post-4420</link>
<pubDate>Fri, 05 Mar 2010 19:39:01 +0000</pubDate>
<dc:creator>JumpstartMyPC</dc:creator>
<guid isPermaLink="false">4420@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;In the older version of ShareThis I was able to go to MyShares and see who I had shared each link with.  I now have a lot of great analytics (that I really love) but I can't seem to find this information.  Am I just not seeing the right link or was this functionality removed?
&#60;/p&#62;</description>
</item>
<item>
<title>JumpstartMyPC on "Counter not updating in most recent post"</title>
<link>http://forums.sharethis.com/topic.php?id=2527#post-4419</link>
<pubDate>Fri, 05 Mar 2010 19:31:48 +0000</pubDate>
<dc:creator>JumpstartMyPC</dc:creator>
<guid isPermaLink="false">4419@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;WordPress Plugin:&#60;/p&#62;
&#60;p&#62;A couple days ago, the counter on my ShareThis button began showing information.  Any post I published since 3-02-10 shows a populated counter, except the one I published this morning.&#60;/p&#62;
&#60;p&#62;Because of the way I formatted my site (gray background), I can see a white box where the counter should be each time I refresh.  So, it looks like ShareThis is attempting to populate this information, but it isn't showing.&#60;/p&#62;
&#60;p&#62;check it out: &#60;a href=&#34;http://www.jumpstartmypc.com/blog/&#34; rel=&#34;nofollow&#34;&#62;http://www.jumpstartmypc.com/blog/&#60;/a&#62;
&#60;/p&#62;</description>
</item>
<item>
<title>JumpstartMyPC on "Emails encoded charset="us-ascii""</title>
<link>http://forums.sharethis.com/topic.php?id=2526#post-4418</link>
<pubDate>Fri, 05 Mar 2010 19:23:50 +0000</pubDate>
<dc:creator>JumpstartMyPC</dc:creator>
<guid isPermaLink="false">4418@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;I noticed a similar issue with an email I sent to myself earlier today.   In the page information, which was pulled into the email directly, a dash was replaced with this craziness &#34;â€“&#34;  The information I typed in the message section came through perfectly, dash and all.
&#60;/p&#62;</description>
</item>
<item>
<title>todd_lee on "Using counter for a custom button?"</title>
<link>http://forums.sharethis.com/topic.php?id=2517#post-4417</link>
<pubDate>Fri, 05 Mar 2010 18:21:35 +0000</pubDate>
<dc:creator>todd_lee</dc:creator>
<guid isPermaLink="false">4417@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Then, is there a way to use default script file and put multiple sharethis in the same page sharing different urls?&#60;br /&#62;
I used addEntry to do this, but I'm not sure I can do it without using addEntry.
&#60;/p&#62;</description>
</item>
<item>
<title>kerygma_koenig on "Emails encoded charset="us-ascii""</title>
<link>http://forums.sharethis.com/topic.php?id=2526#post-4416</link>
<pubDate>Fri, 05 Mar 2010 12:27:42 +0000</pubDate>
<dc:creator>kerygma_koenig</dc:creator>
<guid isPermaLink="false">4416@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;Hi,&#60;/p&#62;
&#60;p&#62;I just put the shareThis widget on a website.&#60;br /&#62;
You state that the eMails sended via the widget would be sended using UTF-8, but i realize that all E-Mails i send with the send E-Mail feature are encoded &#34;us-ascii&#34;. So all umlaut characters just states as ? in the mails. What have i to configure to get E-Mails in Utf-8.&#60;/p&#62;
&#60;p&#62;Copied from E-Mail source code:&#60;/p&#62;
&#60;p&#62;--=_1.12adc2873e677d2736c6c1274c84779b&#60;br /&#62;
Content-Type: text/plain;&#60;br /&#62;
	charset=&#34;us-ascii&#34;&#60;br /&#62;
Content-Transfer-Encoding: quoted-printable&#60;br /&#62;
Content-Disposition: inline&#60;/p&#62;
&#60;p&#62;Fabian K?nig wanted to share this with you:&#60;/p&#62;
&#60;p&#62;kg?l?ewl?2l3?412&#60;/p&#62;
&#60;p&#62;Arbeiten bei Kl?ckner - Arbeitgeber Kl?ckner - Karriere - Kl?ckner &#38;#38; Co SE&#60;br /&#62;
&#60;a href=&#34;http://shar.es/m3IcE&#34; rel=&#34;nofollow&#34;&#62;http://shar.es/m3IcE&#60;/a&#62;&#60;/p&#62;
&#60;p&#62;Regards,&#60;br /&#62;
Fabian Könif
&#60;/p&#62;</description>
</item>
<item>
<title>praveenrdeepak on "Orkut support?"</title>
<link>http://forums.sharethis.com/topic.php?id=2522#post-4415</link>
<pubDate>Fri, 05 Mar 2010 09:09:01 +0000</pubDate>
<dc:creator>praveenrdeepak</dc:creator>
<guid isPermaLink="false">4415@http://forums.sharethis.com/</guid>
<description>&#60;p&#62;@ Steve Thx for the reply Steve!  Hope you do it sooon! can't wait. Thx for the gr8 service!&#60;/p&#62;
&#60;p&#62;Cheers,&#60;br /&#62;
Praveen.
&#60;/p&#62;</description>
</item>

</channel>
</rss>
