I use the Script.load function in some of the scripts I’ve made but now they seem to fail.
It still is listed in the currentAPI.js results and does not generate any errors that I’ve found in the log.
What I used to test it with looks something like this:
if (1) {
Script.load("https://s3-us-west-1.amazonaws.com/someScript.js");
print("script loaded");
}
else {
print("script not loaded");
}
Looking at the log file I find something like this:
[02/03 12:50:07] [DEBUG] Done downloading script at: “https://s3-us-west-1.amazonaws.com/hifitests/scriptloadtest-05d.js”
[02/03 12:50:07] [DEBUG] script:print()<< script loaded
Which looks fine except that the script did not load, there is no notice in the log of it starting to load or finish or fail to load and it does not show up in running scripts.
In the example above, the script url does not really exist, so I would at least expect it to give an error notice in the log and even when I put in script urls that are correct and used to work a week or so ago, it still fails with no message.
Any ideas anyone?