I’m working on a Flash app that will display live power data from people riding pedal power bikes. I’m using Flash Builder 4, which is based on Eclipse. Mac OSX creates a hidden file in every folder you browse in the Finder called, “.DS_Store”, as seen here:
Unfortunately, these files actually interfere with Eclipse’s display of source packages, at least when coding in the Adobe Flash Builder:
The best solution I’ve found so far is to create an entry in Eclipse’s External Tools to recursively delete all the rogue files using a command line like: “/usr/bin/find . -name .DS_Store -type f -print -delete”:
Running that External Tool in Eclipse returns the package display to how it should appear: