Skip to main content
andranika45761163
Known Participant
July 4, 2019
Answered

How can I run extendscript in framescript

  • July 4, 2019
  • 1 reply
  • 1553 views

Hi

I want to run extendscript in framescript. is it possible  ?

This topic has been closed for replies.
Correct answer frameexpert

Set sMsg = 'C:\DATA\Scripts\Scripto\CallClientTest.jsx';

CallClient FrameClient('ScriptingSupport') Message(sMsg);

1 reply

Inspiring
July 4, 2019

Hi,

this is a Forum for ExtendScript, but there must be something similar to this in FS:

CallClient("ScriptingSupport", scriptFileName)

Hope this helps

Markus

frameexpert
Community Expert
frameexpertCommunity ExpertCorrect answer
Community Expert
July 4, 2019

Set sMsg = 'C:\DATA\Scripts\Scripto\CallClientTest.jsx';

CallClient FrameClient('ScriptingSupport') Message(sMsg);

andranika45761163
Known Participant
July 4, 2019

Thanks. but how can I return value from extendscript to framescript

I found this:

CallClient FrameClient('ScriptingSupport') Message(sMsg) ReturnVal(retVar);

how to send retVar from extendscript ?