Entries in the ‘General’ Category:

How to enable Tab key on OS X modal dialogs

I’m a key accelerator man. I hate taking my hands out of my keyboard just to press Yes or No in a Modal Dialog. Until last week I thought there was no way to tab through the different buttons of a modal dialog.

Luckily I came across an option in System Preferences to enable the tab [...]

Comments (1)

Some little gems on OSX you might want to know

Here are some little things that might speed you up when working on a Mac.
1. View hidden files in Finder
In terminal type:
1defaults write com.apple.finder AppleShowAllFiles TRUE
To hide them again:
1defaults write com.apple.finder AppleShowAllFiles FALSE
2. Manage clipboard from command line
To copy the output of a parameter you can use pbcopy:
1pwd | pbcopy
The result from pwd will be [...]

Tags:

Comments (5)

FlexPMD Eclipse plugin + FlexPMD 1.0 + FlexCPD 1.0 + FlexMetrics released!

We’ve been busy, very busy during the last weeks. But we’re now very happy to announce the release of:

FlexPMD 1.0
FlexCPD 1.0
FlexMetrics 1.0

And our first beta for the new FlexPMD Eclipse plugin that will better integrate FlexPMD into your development workflow!!
You can find all the documentation for FlexPMD on the wiki and for the plugin http://opensource.adobe.com/wiki/display/flexpmd/FlexPMD+Eclipse+plugin
This [...]

Tags:

Comments (3)

FlexPMD now in labs

FlexPMD is a tool that helps to improve code quality by auditing any AS3/Flex source directory and detecting common bad practices, such as:

Unused code (functions, variables, constants, etc.)
Inefficient code (misuse of dynamic filters, heavy constructors, etc.)
Over-complex code (nested loops, too many conditionals, etc.)
Over-long code (classes, methods, etc.)
Incorrect use of the Flex component lifecycle (commitProperties, etc.)
A [...]

Tags:

Leave a Comment