You can't open the application adobe photoshop cs6 because it may be damaged or incomplete on a Mac
To fix this problem on a Mac you need to uninstall and re-install Photoshop cs6, this is how you do it:
In your Application folders ( SHIFT - CMD - A ) open the Utilities folder, look for Adobe Installers and click on Uninstall Adobe Photoshop CS6
Now when you restart "Adobe Application Manager" it will re-download Photoshop CS6 for Mac.
Last Updated on Tuesday, 30 April 2013 08:32
xCode Cocos2s Animation
Here is how to load animations from Sprite sheet and use a second plist for subset of animation you want:
Plist would contain a key of 1 and value of "zriel-animation1-first-frame.png" and key of 2 and value of "zriel-animation1-second-frame.png" for example
Last Updated on Wednesday, 17 April 2013 09:22
How to show hidden folders using finder on a mac do this:
defaults write com.apple.finder AppleShowAllFiles -bool true osascript -e 'quit app "Finder"'
How to hide hidden folders using finder on a mac do this:
defaults write com.apple.finder AppleShowAllFiles -bool false osascript -e 'quit app "Finder"'
The -bool flag makes it work, I have tried NO, YES , True, False and it did not work.
killall Finder did not work for me either but osascript -e 'quit app "Finder"' does work.
Mac version 10.8.3
How to get database name from within your code in Joomla 3.0 do the following:
// Get Database Name
$config = JFactory::getConfig();
$databaseName=$config->get('db');
You can get any parameter you need from the configuration.php this way.