Message 1 of 7
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi there,
Could you please advise me how to call a fas file in ScriptPro? Thank you very much in advance.
Solved! Go to Solution.
Hi there,
Could you please advise me how to call a fas file in ScriptPro? Thank you very much in advance.
Solved! Go to Solution.
you need to create a script file that's a text file with extension .scr
then within the contents of the script file assuming the fas file is test.fas:
(load"test.fas")
This also assumes test.fas is located in one of the folders defined under Options>Files>Support File Search Path and Options>Files>Trusted Locations
And remember to include an enter to complete the command in the script before saving.
Hi there,
It looks like it did not work. The fas file name is "BCH_H_Reporting". The script file name is "call fas.scr". The script content is below
(load"BCH_H_Reporting.fas")
two images are below.
Do I need to add "qsave"?
Thanks a lot!
Add 2nd line the name of the command to run BCH_H_Reporting.fas
And if you do want to save the file definitely add qsave command at the end.
for example if command is BCH_H_Reporting then your script file should contain:
(load"BCH_H_Reporting.fas")
(c:BCH_H_Reporting)
_.Qsave
or:
(load"BCH_H_Reporting.fas")
BCH_H_Reporting
_.Qsave
Glad to have helped…cheers!!!