
I completed my first shot at an API script, and it seems to be working fine, even over long periods of time. I went to start a new script, and I keep getting the error 'Unexpected Token )'. Not sure if I'm missing something, or if there's any special requirement for adding additional scripts - I'm still relatively new to the feature. I get the error on the following script: on("change:graphic", function(obj) { log(obj.get("name")); }); If I change the script to be on a single line, i do not get an error, but it does not seem to execute when a token is changed. on("change:graphic", function(obj) { log(obj.get("name")); }); If I disable the first script, the second script works fine in both variations listed above. As others seem to be running multiple scripts without incident, I'm hoping it's something simple I'm missing. Any ideas?