Today when starting up XAMPP in Snow Leopard I ran across this problem where I was getting a HostnameError001 popup. So the first thing that I thought of was to cross check my hostname with my computer name. Turns out that for me this was the problem.
Step 1 – Open up Terminal.app and type hostname:
For me I gets something like this: foo.local
Step 2 – Now open up System Preferences.app.
Step 3 – Click on Sharing.

At the top you will see Computer Name: with an input field to the right of it. If the computer name differs from the hostname then this is your problem. You can do 1 of 2 things.
1. You can change your computer name to match your hostname.
2. You can change your hostname to match your computer name.
Step 1 – In System Preferences.app > Sharing change the Computer Name to match your hostname (exclude the .local as this will automatically be added to your hostname.
Step 2 – Log out or Restart your computer for the changes to take effect.
Follow one of my previous posts on how to change your hostname Change the hostname in Mac OS X [osx].
]]>The current implementation of jCarousels use of $(‘li’, ul) in the constructor will return all nested li’s regardless of how deeply nested they are in the dom structure. To handle this issue I’ve modified a few lines of code in the constructor to fix this issue. Feel free to apply these changes if you see fit.
228 229 230 231 232 233 234 235 236 | var div = $(this), ul = $("ul", div), tLi = $("li", ul), tl = tLi.size(), v = o.visible; if(o.circular) { ul.prepend(tLi.slice(tl-v-1+1).clone()) .append(tLi.slice(0,v).clone()); o.start += v; } var li = $("li", ul), itemLength = li.size(), curr = o.start; |
228 229 230 231 232 233 234 235 | var div = $(this), ul = div.children(‘ul’), tLi = ul.children(‘li’), tl = tLi.size(), v = o.visible; if(o.circular) { ul.prepend(tLi.slice(tl-v-1+1).clone()) .append(tLi.slice(0,v).clone()); o.start += v; } var li = ul.children(‘li’), itemLength = li.size(), curr = o.start; |
]]>You may have issues with permissions when trying to upload, import, etc. You can correct this by doing a chmod on your sites folder and subfolders.
From the terminal navigate to your sites folder and run something like the following…
chmod -R go+w *
This will grant group and others write permissions. If you need higher local security, then feel free to grant permissions by a more restrictive method.
This information was gathered from several sources. If you have problems or need additional information, I would reference my sources for this article. Please post additional recommendations and issues in the forum comments associated with this article.
http://www.angry-fly.com/index.cfm/2007/10/26/Fix-for-MySQL-on-Leopard
http://warker.com/2006/09/16/wordpress-os-x-install-tips/
http://remysharp.com/2007/10/27/lamp-in-leopard-osx-105-php5-and-apache-22/
or
Microsoft’s Office 2004 suite is no exception—Word, Excel, and PowerPoint (but not Entourage) all feature a View -> Zoom menu item. But using it is a bit time consuming. First you choose the menu, then you pick a pre-set zoom level, or enter your own value, and then click OK. You can also put a button on the toolbar which does something similar. Still, it’s hardly a fast and fluid operation.
Enter the mouse. In all three of the above applications, if you hold down Command and Control and then move the scroll wheel on your mouse (or drag your fingers on a scrolling-enabled trackpad), you can rapidly increase or decrease the zoom level. Move the wheel up, and you’ll zoom in; move it down, and you’ll zoom out. The amount the zoom changes with each tick of the scroll wheel varies between the applications. Word seems to go in 10-percent steps; Excel uses 15-percent increments; and PowerPoint steps through the fixed zoom levels (including ‘fit,’ which means I had a stop at 152 percent) in its Zoom menu. Excel and PowerPoint are also limited to 400-percent maximum zoom, while Word will go up to 500 percent.
Set Office 2004 zoom levels via mouse [via Macworld]
Enjoy
Here is the theory:
If you have a PNG (one that contains transparent areas) embedded inside of a MovieClip button, the rectangle of the image acts as the hitArea of the MovieClip. In order for the hitArea to only be defined by visible areas of the image, you would normally have to create a custom mask in order to hide the transparent areas of the PNG. This AS3 Class allows you to specify an alpha tolerance (0=transparent, 255=completely opaque), that will allow you to selective exclude the transparent areas from your hitArea based on the value that you give it. This is a very simple concept, but an intricate implementation.
The project is open-sourced under the MIT Open Source License. Go and check it out:
]]>Base Flash CS4 Class Path
Class Path for ik.swc
Class Path for player.swc
Where
=