Hi,
I am wanting to create an AppleScript to open up Viewcam in Full Screen mode.
Please can someone let me know the AppleScript for this so I can create it in Automator?
Thank you
This AppleScript should do the trick:
tell application "ViewCam" to activate delay 1 tell application "System Events" tell process "ViewCam" set frontmost to true click button 2 of window "All Cameras" end tell end tell
Comments
This AppleScript should do the trick: