|
- Info.plist - You need to modify several properties in this file. Use text editor or "P r o p e r t y L i s t E d i t o r" if you have developer tools installed. What you need to change:
- CFBundleIdentifier: change from com.abracode.MasterDroplet to com.abracode.MyGreatDroplet or something unique. This is step is required for proper bundle identification by the OS. Needed also for saving preferences.
- CFBundleName: change from MasterDroplet to MyGreatDroplet. This is the application name showing in menu bar when you launch it.
- optionally you may also want to change strings for keys: CFBundleGetInfoString and CFBundleShortVersionString
- CFBundleDocumentTypes: this is the list of file types and extensions which your application can open and accepts on drag. The default setting is to allow opening of any type of file. Ideally, you may want to match those values with ACTIVATION_EXTENSIONS and ACTIVATION_FILE_TYPES in command description. You do not need it at all if the applet does not work with files.
- CommandDroplet - The executable binary. You do not need to touch it.
- omc_dialog_control - Tool for nib dialog controls. Comes with standard OMC droplet package.
- omc_next_command - Tool for scheduling next command. Standard.
- OMCDepty - Background application for handling chores. Standard.
- PkgInfo - Contains type and creator codes. The type is 'APPL' and you better leave it like this. Default creator signature for droplet is '????'. You may change it to something unique if you want but it is not required.
- app.icns - Replace with icon of your choice. Do not rename.
- Command.plist - this is the command description file containing your command(s). The file must be named Command.plist
- Localized.rsrc - You do not need to edit this file except for localization
- InfoPlist.strings - Edit strings for CFBundleName, CFBundleGetInfoString, CFBundleShortVersionString exactly the same way as you did in Info.plist
- Localizable.strings - You may want to edit "Choose Objects To Process" string with something more specific for your droplet. This is the message text for Navigation dialog when file-based droplet is launched without files dragged on it.
- main.nib - You do not need to edit this file unless you want to add items to main menu bar or for localization
- preferences.nib - You do not need to edit this file except for localization
- Private.strings - You do not need to edit this file except for localization
- png pictures - A set of custom window backgrounds. Several images come standard with OMC. You can add yours too.
|