Skip to main content
Inspiring
October 13, 2023
Question

Expand Illustrator to Screen

  • October 13, 2023
  • 1 reply
  • 360 views

Hi all !!!

 

If you send a command via BRIDGE, then using the command var scp = "//app.bringToFront();\n" you can expand the Photoshop application to the screen. Is there a similar command for Illustrator?

This topic has been closed for replies.

1 reply

CarlosCanto
Community Expert
Community Expert
October 14, 2023

yes there is, can you post your full script? you're referring to BridgeTalk right? not Bridge the app

AnyONAuthor
Inspiring
October 15, 2023

Using BridgeTalk from AE > Ill

scp = "< file opens, and so on> "    
var bt = new BridgeTalk(); 
bt.target = "illustrator";
bt.body = scp;
bt.send();
CarlosCanto
Community Expert
Community Expert
October 15, 2023

use the below code at any stage in your script, it doesn't have to be inside a BridgeTalk call

BridgeTalk.bringToFront('illustrator');