Hi,Is there a way to run Fake workflows in the background or with the windows hidden?
tell application "Fake"
open "myworkflow.fakeworkflow"
delay 2
run workflow
wait until done
quit
end tell
When I run this, the Fake window pops up and it gets in the way of what I am doing. I have different workflows running at different times base on different events. It would be best if these workflows can run without having the window open on the screen.
Thanks.
Paul
Fake cannot run in a "headless" mode, there must always be a real window on screen when workflows are run.However, I'm fairly certain you can "Hide" an app via applescript
Hi Christopher,First of all, thanks for helping me out.I tried to run this but the window is still coming up. Am I doing something wrong?tell application "Fake"
activate
end tell
tell application "System Events"
set visible of process "Fake" to false
end tell
tell application "Fake"
open "myworkflow.fakeworkflow"
delay 2
run workflow
wait until done
quit
end tell
I tried to run this but the window is still coming up. Am I doing something wrong?