• Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
    Dedicated community for Japanese speakers
  • 한국 커뮤니티
    Dedicated community for Korean speakers
Exit
1

AE bridgeTalk script error after upgrade ("TARGET COULD NOT BE LAUNCHED").

Community Beginner ,
Jul 30, 2021 Jul 30, 2021

Copy link to clipboard

Copied

Hi everyone,
I have updated my versions of AE (18.4.0) and AME (15.4), and my script doesn't seem to want to work anymore. It should check if AME is running, and if it isn't it should automatically open it from AE.
 
It has always worked. It now reports the following error: "TARGET COULD NOT BE LAUNCHED". It seems that the "app.getExporter()" command does not even launch the software. If instead I manually open AME, then everything works.
 
Anyone have the same problem with bridgeTalk? 
Here is a snippet of code, 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
 
TOPICS
Error or problem , Scripting

Views

271

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Participant ,
Aug 27, 2021 Aug 27, 2021

Copy link to clipboard

Copied

LATEST

Facing the same issue in MAC environment with new 2021 updates.

TARGET COULD NOT BE LAUNCHED

Votes

Translate

Translate

Report

Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines