Updating script properties directly
Posted: Thu Sep 01, 2016 7:10 pm
If you're working with a script that has a bunch of properties (e.g. switch-private-data-write has 50+), you may find that editing property values is tedious and time consuming. There is a faster way than doing so through Scripter.
Save your script package as a new copy. Rename the .sscript file .zip and extract its contents. You should see the following:
Open your_script_name.xml with a text editor. This XML file holds all of the declaration properties for the script. Scroll down and you should see property values represented as XML nodes. You can carefully add, remove, or do a find and replace on property value properties.
Once you're done with your changes, re-zip your files back together. The files must be at the top level of the zip (do not zip the files in a containing folder). Rename the modified .zip to .sscript and open it back up in Scripter to see your changes.
I found this to be a big time saver. Props to the Enfocus engineers for leaving that file unencrypted -- if only our source code was so lucky.
Save your script package as a new copy. Rename the .sscript file .zip and extract its contents. You should see the following:
Code: Select all
manifest.xml
icon.png
your_script_name.js
your_script_name.sscript
your_script_name.xml
Code: Select all
<Key1 Validation="None" LocalizedTagName=" Key" Subtype="inline" Default="" Tooltip="" DetailedInfo="" Type="string" Editor="inline;sltextwithvar;scriptexp"></Key1>
<Value1 Validation="None" DependencyCondition="Not-empty" Dependencyvalue="Yes" LocalizedTagName="↳ Value" Subtype="inline" Default="" Dependency="Key1" Tooltip="" DetailedInfo="" Type="string" Editor="inline;sltextwithvar;scriptexp"></Value1>
<Key2 Validation="None" LocalizedTagName=" Key" Subtype="inline" Default="" Tooltip="" DetailedInfo="" Type="string" Editor="inline;sltextwithvar;scriptexp"></Key2>
<Value2 Validation="None" DependencyCondition="Not-empty" Dependencyvalue="Yes" LocalizedTagName="↳ Value" Subtype="inline" Default="" Dependency="Key2" Tooltip="" DetailedInfo="" Type="string" Editor="inline;sltextwithvar;scriptexp"></Value2>
<Key3 Validation="None" LocalizedTagName=" Key" Subtype="inline" Default="" Tooltip="" DetailedInfo="" Type="string" Editor="inline;sltextwithvar;scriptexp"></Key3>
<Value3 Validation="None" DependencyCondition="Not-empty" Dependencyvalue="Yes" LocalizedTagName="↳ Value" Subtype="inline" Default="" Dependency="Key3" Tooltip="" DetailedInfo="" Type="string" Editor="inline;sltextwithvar;scriptexp"></Value3>
I found this to be a big time saver. Props to the Enfocus engineers for leaving that file unencrypted -- if only our source code was so lucky.