Skip to main content
micheledauria
Participating Frequently
July 31, 2021
Question

Problem with bridgeTalk for AME version 15.4 (TARGET COULD NOT BE LAUNCHED).

  • July 31, 2021
  • 2 replies
  • 516 views
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
This topic has been closed for replies.

2 replies

Inspiring
August 27, 2021

Facing the same issue in MAC environment when AME is updated from 2020 to 2021

var bt = new BridgeTalk();  
                    bt.target = "ame";  
                    var myScript = "ameFormat = " + ameFormat.toSource() + "\r";  
                    myScript += "ameFormat();";  
                    bt.body = myScript
                    bt.onResult = function(resObj) {  
                    }                    
                    bt.onError = function(msg) {  
                        alert("onError : "+msg.body);
                    }  

TARGET COULD NOT BE LAUNCHED

Participant
August 3, 2021

I have the same issue, Media Encoder won't launch from my script (AE) with version 15.4 but it's working fine on 15.2