<?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 on: UpcomingBirthdays doesn&#8217;t like Leopard</title>
	<atom:link href="http://wubbahed.com/2007/12/03/102/feed/" rel="self" type="application/rss+xml" />
	<link>http://wubbahed.com/2007/12/03/102/</link>
	<description></description>
	<lastBuildDate>Wed, 28 Dec 2011 14:02:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Dani</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-1779</link>
		<dc:creator>Dani</dc:creator>
		<pubDate>Tue, 12 Oct 2010 21:54:26 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-1779</guid>
		<description>I figured out why it&#039;s not working for many in SL: It&#039;s not 64 bit compilant. it works perfectly on my old CoreDuo 32 Bit MBP with SL but fails on the new i7. If you set Dashboard to start in 32 bit mode, it works correctly.
So i think the only things to do would be to recompile it for 64 bit (better universal) and implement the JS corrections i mentioned above. Then it should work with Snow Leo on 64 bit machines as well.</description>
		<content:encoded><![CDATA[<p>I figured out why it&#8217;s not working for many in SL: It&#8217;s not 64 bit compilant. it works perfectly on my old CoreDuo 32 Bit MBP with SL but fails on the new i7. If you set Dashboard to start in 32 bit mode, it works correctly.<br />
So i think the only things to do would be to recompile it for 64 bit (better universal) and implement the JS corrections i mentioned above. Then it should work with Snow Leo on 64 bit machines as well.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marlene</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-1608</link>
		<dc:creator>Marlene</dc:creator>
		<pubDate>Thu, 29 Apr 2010 17:39:24 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-1608</guid>
		<description>Still no information in Snow Leopard....very frustrating since I like to use this!!!</description>
		<content:encoded><![CDATA[<p>Still no information in Snow Leopard&#8230;.very frustrating since I like to use this!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Oliver</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-1528</link>
		<dc:creator>Oliver</dc:creator>
		<pubDate>Tue, 03 Nov 2009 10:03:05 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-1528</guid>
		<description>Hi,
since I have upgraded to Snow Leopard there are no birthdays being displayed in the Widget anymore.

Oliver</description>
		<content:encoded><![CDATA[<p>Hi,<br />
since I have upgraded to Snow Leopard there are no birthdays being displayed in the Widget anymore.</p>
<p>Oliver</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dani</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-1210</link>
		<dc:creator>Dani</dc:creator>
		<pubDate>Fri, 26 Sep 2008 18:21:06 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-1210</guid>
		<description>Upcoming Birthday is great, i&#039;m using it every day! Since i switched to Leopard, i also have the described scaling problem. It seems that in 10.5, the overlay elements are scaled proportionally, even if just the width OR height is changed (don&#039;t ask me why???). if you also set the other dimension to its fixed value, the problem seems to be solved:

Lines 442ff in upcomingBirthdays.js:

	tempRef = document.getElementById(&#039;overlay_top&#039;);
	tempRef.width = deltaX - 25;
	tempRef.height = 33; //ADDED
	
	tempRef = document.getElementById(&#039;overlay_bottom&#039;);
	tempRef.width = deltaX - 25;
	tempRef.height = 11; //ADDED
	tempRef.style.top = deltaY - 11;
	
	tempRef = document.getElementById(&#039;overlay_bottom_left&#039;);
	tempRef.style.top = deltaY - 11;
	
	tempRef = document.getElementById(&#039;overlay_bottom_right&#039;);
	tempRef.style.top = deltaY - 11;
	
	tempRef = document.getElementById(&#039;overlay_left&#039;);
	tempRef.height = deltaY - 44;
	tempRef.width = 11; //ADDED
	
	tempRef = document.getElementById(&#039;overlay_right&#039;);
	tempRef.height = deltaY - 44;
	tempRef.width = 14; //ADDED
	tempRef.style.left = deltaX - 14;
	
I tested it in 10.4 and 10.5

Cheers Dani</description>
		<content:encoded><![CDATA[<p>Upcoming Birthday is great, i&#8217;m using it every day! Since i switched to Leopard, i also have the described scaling problem. It seems that in 10.5, the overlay elements are scaled proportionally, even if just the width OR height is changed (don&#8217;t ask me why???). if you also set the other dimension to its fixed value, the problem seems to be solved:</p>
<p>Lines 442ff in upcomingBirthdays.js:</p>
<p>	tempRef = document.getElementById(&#8216;overlay_top&#8217;);<br />
	tempRef.width = deltaX &#8211; 25;<br />
	tempRef.height = 33; //ADDED</p>
<p>	tempRef = document.getElementById(&#8216;overlay_bottom&#8217;);<br />
	tempRef.width = deltaX &#8211; 25;<br />
	tempRef.height = 11; //ADDED<br />
	tempRef.style.top = deltaY &#8211; 11;</p>
<p>	tempRef = document.getElementById(&#8216;overlay_bottom_left&#8217;);<br />
	tempRef.style.top = deltaY &#8211; 11;</p>
<p>	tempRef = document.getElementById(&#8216;overlay_bottom_right&#8217;);<br />
	tempRef.style.top = deltaY &#8211; 11;</p>
<p>	tempRef = document.getElementById(&#8216;overlay_left&#8217;);<br />
	tempRef.height = deltaY &#8211; 44;<br />
	tempRef.width = 11; //ADDED</p>
<p>	tempRef = document.getElementById(&#8216;overlay_right&#8217;);<br />
	tempRef.height = deltaY &#8211; 44;<br />
	tempRef.width = 14; //ADDED<br />
	tempRef.style.left = deltaX &#8211; 14;</p>
<p>I tested it in 10.4 and 10.5</p>
<p>Cheers Dani</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-980</link>
		<dc:creator>John</dc:creator>
		<pubDate>Fri, 04 Jan 2008 05:28:53 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-980</guid>
		<description>The upcommingBirthdays widget is great in Leopard however when resizing the box the formatting is all weird in that part of the box boarder obscures the list of birthdays in the box.</description>
		<content:encoded><![CDATA[<p>The upcommingBirthdays widget is great in Leopard however when resizing the box the formatting is all weird in that part of the box boarder obscures the list of birthdays in the box.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cecil</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-972</link>
		<dc:creator>Cecil</dc:creator>
		<pubDate>Tue, 01 Jan 2008 23:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-972</guid>
		<description>I also have a problem with this widget on leopard. Countdown to birthday is incorrect and age displayed also.</description>
		<content:encoded><![CDATA[<p>I also have a problem with this widget on leopard. Countdown to birthday is incorrect and age displayed also.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Neal</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-921</link>
		<dc:creator>Neal</dc:creator>
		<pubDate>Thu, 27 Dec 2007 15:09:28 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-921</guid>
		<description>I&#039;m looking forward to this fix too. Thanks.</description>
		<content:encoded><![CDATA[<p>I&#8217;m looking forward to this fix too. Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Stefan</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-915</link>
		<dc:creator>Stefan</dc:creator>
		<pubDate>Tue, 25 Dec 2007 22:32:09 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-915</guid>
		<description>I really like your widget, but i&#039;m also interested in this december-january-bug being fixed :-)</description>
		<content:encoded><![CDATA[<p>I really like your widget, but i&#8217;m also interested in this december-january-bug being fixed :-)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: HOWTO add birthdays to UpcomingBirthdays</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-846</link>
		<dc:creator>HOWTO add birthdays to UpcomingBirthdays</dc:creator>
		<pubDate>Mon, 03 Dec 2007 19:41:22 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-846</guid>
		<description>[...] UPDATE - Dec 2007 - There are reports of bugs with this widget and Leopard. Details here. [...]</description>
		<content:encoded><![CDATA[<p>[...] UPDATE &#8211; Dec 2007 &#8211; There are reports of bugs with this widget and Leopard. Details here. [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: UpcomingBirthdays 1.5.2 released</title>
		<link>http://wubbahed.com/2007/12/03/102/comment-page-1/#comment-845</link>
		<dc:creator>UpcomingBirthdays 1.5.2 released</dc:creator>
		<pubDate>Mon, 03 Dec 2007 19:40:20 +0000</pubDate>
		<guid isPermaLink="false">http://wubbahed.com/2007/12/03/102/#comment-845</guid>
		<description>[...] UPDATE: This release might have some issues with Leopard. Details here. [...]</description>
		<content:encoded><![CDATA[<p>[...] UPDATE: This release might have some issues with Leopard. Details here. [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

