Skip to main content
Corvinus Corax
Inspiring
August 18, 2020
Answered

BridgeTalk (Manual?)

  • August 18, 2020
  • 2 replies
  • 1513 views

I'm currently working on the communication between an AE projekt of mine and AME. I've stumbled over various threads mentioning the BridgeTalk class here, but can't seem to find any sort of manual or documentation for it - is there any? The supposed documentation on aeenhancers leads only to a broken link: https://estk.aenhancers.com/5%20-%20Interapplication%20Communication%20with%20Scripts/bridgetalk-class.html

This topic has been closed for replies.
Correct answer Justin Taylor-Hyper Brew

Check out this documentation:  http://estk.aenhancers.com/interapplication-communication/bridgetalk-class.html?highlight=bridgetalk

Here's an extremely basic example:

var bt = new BridgeTalk();
bt.target = 'ame-13';
bt.body = 'alert("hello from ame")';
bt.send();

2 replies

Justin Taylor-Hyper Brew
Community Expert
Community Expert
August 23, 2020

Check out this documentation:  http://estk.aenhancers.com/interapplication-communication/bridgetalk-class.html?highlight=bridgetalk

Here's an extremely basic example:

var bt = new BridgeTalk();
bt.target = 'ame-13';
bt.body = 'alert("hello from ame")';
bt.send();
Corvinus Corax
Inspiring
August 23, 2020

Great, thank you justin!

Dan Ebberts
Community Expert
Community Expert
August 18, 2020

There's some info in the JavaScript Tools Guide.

 

Dan

Corvinus Corax
Inspiring
August 18, 2020

Thanks Dan. It's not much without good practical examples in it, but it's a start. If anyone else needs it:

http://wwwimages.adobe.com/www.adobe.com/content/dam/acom/en/devnet/scripting/pdfs/javascript_tools_guide.pdf