Setting a boolean property in Info.plist from a User Defined Setting

Viewed 15026

It's simple to set a property in an Info.plist file from a user defined setting, you just use ${YOUR_SETTING_NAME} as the value. However, is it possible to do this for a bolean property? The structure in the plist file for a boolean is:

<key>NSAppleScriptEnabled</key>
<false/>

It's not clear how to use a user defined setting here.

3 Answers
Related