Question
Problem with bridgeTalk for AME version 15.4 (TARGET COULD NOT BE LAUNCHED).
Hi everyone,
I have updated my versions of AME (15.4), and my script doesn't seem to want to work anymore. The script starts AME automatically from AE. I re-installed the AME 15.2 and it works.
It's not a cache or preference issue. I tested the same error on two different macs.
Thank you all
var ameStatus = BridgeTalk.getStatus("ame");
if (ameStatus == "ISNOTRUNNING") {
var bridge = new BridgeTalk();
bridge.target = 'ame';
bridge.body += 'app.getExporter();';
bridge.onError = function (msg) { alert (msg.body); }
bridge.onResult = function(msg) { [...] }
bridge.send();
}
//ERROR: TARGET COULD NOT BE LAUNCHED
