| | |
| | | |
Hidden Defaults (page 1) |
|
|
Users occasionally ask for a feature that we can easily do but that we don’t think is of general enough interest to put into the user interface. So we put the feature in the code and activate it with a hidden default.
To set a hidden default, open the Terminal application, and type:
defaults write com.stone.PhotoToWeb defaultname defaultvalue
where defaultname is replaced by the name of the default and defaultvalue is replaced by the value of the default.
To remove a hidden default (in other words, to go back to PhotoToWeb’s standard behavior), open the Terminal application and type:
defaults delete com.stone.PhotoToWeb defaultname
where defaultname is replaced by the name of the default.
Here are some available defaults:
To make PhotoToWeb link the Home navigation bar button to “index.html” even if you tell PhotoToWeb not to create an index page, use:
defaults write com.stone.PhotoToWeb LinkHomeToMyIndex YES |
|
|