Every day I wake up and open 8 apps and make them full screen so I can do some work. Two of my apps are web browsers and I send them to 3 sites in 3 separate tabs. It would be nice to start my computer and have it run an automator app that does this for me.
I wrote some apple script that will open my apps but it does not make them all full screen, even though I can make them full screen manually.
Any solutions?
Here is my automator applescript code:
on run {input, parameters}
tell application "Komodo Edit"
activate
end tell
delay 2
tell application "Google Chrome"
activate
tell application "System Events"
tell process "Google Chrome"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "Safari"
activate
tell application "System Events"
tell process "Safari"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "Mail"
activate
tell application "System Events"
tell process "Mail"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "Terminal"
activate
tell application "System Events"
tell process "Terminal"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "TweetDeck"
activate
tell application "System Events"
tell process "TweetDeck"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "iTunes"
activate
tell application "System Events"
tell process "iTunes"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "Skype"
activate
tell application "System Events"
tell process "Skype"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
return input
end run
I wrote some apple script that will open my apps but it does not make them all full screen, even though I can make them full screen manually.
Any solutions?
Here is my automator applescript code:
on run {input, parameters}
tell application "Komodo Edit"
activate
end tell
delay 2
tell application "Google Chrome"
activate
tell application "System Events"
tell process "Google Chrome"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "Safari"
activate
tell application "System Events"
tell process "Safari"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "Mail"
activate
tell application "System Events"
tell process "Mail"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "Terminal"
activate
tell application "System Events"
tell process "Terminal"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "TweetDeck"
activate
tell application "System Events"
tell process "TweetDeck"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "iTunes"
activate
tell application "System Events"
tell process "iTunes"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
tell application "Skype"
activate
tell application "System Events"
tell process "Skype"
delay 1
keystroke "f" using {command down, control down}
end tell
end tell
end tell
delay 2
return input
end run