How do I get an AppleScript application to automatically run at login?
Clash Royale CLAN TAG#URR8PPP
up vote
1
down vote
favorite
The script I have helps with my computers ability to edit videos. I only use my computer for editing. The script just activates a program that I have made. I want to be able open my computer after it has been shut down and get the program to open/run automatically.
I have tried to use the System Preferences' "open at log in" feature, but that doesn't work. Is there any other way?
The script I have is an application and the code is:
set appPath1 to path to resource "Opening 5.app"
tell application "Finder"
open appPath1
end tell
When I double click the app, it opens up my program which changes the way FCPX renders, plays and saves videos.
applescript
add a comment |Â
up vote
1
down vote
favorite
The script I have helps with my computers ability to edit videos. I only use my computer for editing. The script just activates a program that I have made. I want to be able open my computer after it has been shut down and get the program to open/run automatically.
I have tried to use the System Preferences' "open at log in" feature, but that doesn't work. Is there any other way?
The script I have is an application and the code is:
set appPath1 to path to resource "Opening 5.app"
tell application "Finder"
open appPath1
end tell
When I double click the app, it opens up my program which changes the way FCPX renders, plays and saves videos.
applescript
Did u convert the script to an application then use the System Prefs login items feature?
– abc
10 hours ago
You said, "the script just activates a program that I have made"... please provide more details, what type of program did you make and why do you need AppleScript with this other program. Maybe posting the AppleScript code might be helpful too.
– user3439894
10 hours ago
1
See here: AppleScript at Startup and specific time
– rubik's sphere
10 hours ago
@rubik's sphere, Good to see you, but if all he needs is for it to open at Login, the link you've provided maybe overkill however, lets get some actual details from the OP.
– user3439894
10 hours ago
1
Why do you need to launch the app from another app to begin with? Have you tried adding "Opening 5.app" to Login Items instead of the AppleScript app?
– user3439894
7 hours ago
add a comment |Â
up vote
1
down vote
favorite
up vote
1
down vote
favorite
The script I have helps with my computers ability to edit videos. I only use my computer for editing. The script just activates a program that I have made. I want to be able open my computer after it has been shut down and get the program to open/run automatically.
I have tried to use the System Preferences' "open at log in" feature, but that doesn't work. Is there any other way?
The script I have is an application and the code is:
set appPath1 to path to resource "Opening 5.app"
tell application "Finder"
open appPath1
end tell
When I double click the app, it opens up my program which changes the way FCPX renders, plays and saves videos.
applescript
The script I have helps with my computers ability to edit videos. I only use my computer for editing. The script just activates a program that I have made. I want to be able open my computer after it has been shut down and get the program to open/run automatically.
I have tried to use the System Preferences' "open at log in" feature, but that doesn't work. Is there any other way?
The script I have is an application and the code is:
set appPath1 to path to resource "Opening 5.app"
tell application "Finder"
open appPath1
end tell
When I double click the app, it opens up my program which changes the way FCPX renders, plays and saves videos.
applescript
applescript
edited 15 mins ago


Baptiste Candellier
1032
1032
asked 10 hours ago


John Smith
443
443
Did u convert the script to an application then use the System Prefs login items feature?
– abc
10 hours ago
You said, "the script just activates a program that I have made"... please provide more details, what type of program did you make and why do you need AppleScript with this other program. Maybe posting the AppleScript code might be helpful too.
– user3439894
10 hours ago
1
See here: AppleScript at Startup and specific time
– rubik's sphere
10 hours ago
@rubik's sphere, Good to see you, but if all he needs is for it to open at Login, the link you've provided maybe overkill however, lets get some actual details from the OP.
– user3439894
10 hours ago
1
Why do you need to launch the app from another app to begin with? Have you tried adding "Opening 5.app" to Login Items instead of the AppleScript app?
– user3439894
7 hours ago
add a comment |Â
Did u convert the script to an application then use the System Prefs login items feature?
– abc
10 hours ago
You said, "the script just activates a program that I have made"... please provide more details, what type of program did you make and why do you need AppleScript with this other program. Maybe posting the AppleScript code might be helpful too.
– user3439894
10 hours ago
1
See here: AppleScript at Startup and specific time
– rubik's sphere
10 hours ago
@rubik's sphere, Good to see you, but if all he needs is for it to open at Login, the link you've provided maybe overkill however, lets get some actual details from the OP.
– user3439894
10 hours ago
1
Why do you need to launch the app from another app to begin with? Have you tried adding "Opening 5.app" to Login Items instead of the AppleScript app?
– user3439894
7 hours ago
Did u convert the script to an application then use the System Prefs login items feature?
– abc
10 hours ago
Did u convert the script to an application then use the System Prefs login items feature?
– abc
10 hours ago
You said, "the script just activates a program that I have made"... please provide more details, what type of program did you make and why do you need AppleScript with this other program. Maybe posting the AppleScript code might be helpful too.
– user3439894
10 hours ago
You said, "the script just activates a program that I have made"... please provide more details, what type of program did you make and why do you need AppleScript with this other program. Maybe posting the AppleScript code might be helpful too.
– user3439894
10 hours ago
1
1
See here: AppleScript at Startup and specific time
– rubik's sphere
10 hours ago
See here: AppleScript at Startup and specific time
– rubik's sphere
10 hours ago
@rubik's sphere, Good to see you, but if all he needs is for it to open at Login, the link you've provided maybe overkill however, lets get some actual details from the OP.
– user3439894
10 hours ago
@rubik's sphere, Good to see you, but if all he needs is for it to open at Login, the link you've provided maybe overkill however, lets get some actual details from the OP.
– user3439894
10 hours ago
1
1
Why do you need to launch the app from another app to begin with? Have you tried adding "Opening 5.app" to Login Items instead of the AppleScript app?
– user3439894
7 hours ago
Why do you need to launch the app from another app to begin with? Have you tried adding "Opening 5.app" to Login Items instead of the AppleScript app?
– user3439894
7 hours ago
add a comment |Â
3 Answers
3
active
oldest
votes
up vote
3
down vote
I use this ..
- Open System Preferences.
- Go to Users & Groups.
- Choose your nickname on the right.
- Choose Login items tab.
- Press +
- Check startup programs you want to add.
1
The OP already stated: "I have tried to use the system preferences "open at log in" but that doesn't work "
– user3439894
9 hours ago
1
This answer should work if and only if the original script is actually saved as an application.
– DonielF
7 hours ago
add a comment |Â
up vote
3
down vote
You should be able to just add “Opening 5.app†to the System Preferences » Login Items.
But if that doesn’t work for some reason, this sounds like the perfect job for a launchd .plist. They can be tricky to write, but there are two apps which are very good for getting the hang of them. The first is Lingon and the second is LaunchControl. They both have demos, and I would recommend trying them both and seeing which one you prefer.
If you're keen to learn more about launchd
, a good resource is http://www.launchd.info.
Here's an example of how you might handle launching that app at login:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.tjluoma.opening5</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/open</string>
<string>-a</string>
<string>Opening 5</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Save that to ~/Library/LaunchAgents/com.tjluoma.opening5.plist
(where ~
refers to your home directory).
When you reboot (or logout and then login), it should launch “Opening 5†at login.
add a comment |Â
up vote
2
down vote
If the script you provided is the actual script, you can launch “Opening 5.app†directly from the login items instead of the script.
If your script does other things not shown in your question, you can still use the script but you’d have to save the script as an application instead of a plain script to use it with login items.
add a comment |Â
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
3
down vote
I use this ..
- Open System Preferences.
- Go to Users & Groups.
- Choose your nickname on the right.
- Choose Login items tab.
- Press +
- Check startup programs you want to add.
1
The OP already stated: "I have tried to use the system preferences "open at log in" but that doesn't work "
– user3439894
9 hours ago
1
This answer should work if and only if the original script is actually saved as an application.
– DonielF
7 hours ago
add a comment |Â
up vote
3
down vote
I use this ..
- Open System Preferences.
- Go to Users & Groups.
- Choose your nickname on the right.
- Choose Login items tab.
- Press +
- Check startup programs you want to add.
1
The OP already stated: "I have tried to use the system preferences "open at log in" but that doesn't work "
– user3439894
9 hours ago
1
This answer should work if and only if the original script is actually saved as an application.
– DonielF
7 hours ago
add a comment |Â
up vote
3
down vote
up vote
3
down vote
I use this ..
- Open System Preferences.
- Go to Users & Groups.
- Choose your nickname on the right.
- Choose Login items tab.
- Press +
- Check startup programs you want to add.
I use this ..
- Open System Preferences.
- Go to Users & Groups.
- Choose your nickname on the right.
- Choose Login items tab.
- Press +
- Check startup programs you want to add.
edited 7 hours ago
abc
1,8732935
1,8732935
answered 9 hours ago


Buscar웃
31.8k539105
31.8k539105
1
The OP already stated: "I have tried to use the system preferences "open at log in" but that doesn't work "
– user3439894
9 hours ago
1
This answer should work if and only if the original script is actually saved as an application.
– DonielF
7 hours ago
add a comment |Â
1
The OP already stated: "I have tried to use the system preferences "open at log in" but that doesn't work "
– user3439894
9 hours ago
1
This answer should work if and only if the original script is actually saved as an application.
– DonielF
7 hours ago
1
1
The OP already stated: "I have tried to use the system preferences "open at log in" but that doesn't work "
– user3439894
9 hours ago
The OP already stated: "I have tried to use the system preferences "open at log in" but that doesn't work "
– user3439894
9 hours ago
1
1
This answer should work if and only if the original script is actually saved as an application.
– DonielF
7 hours ago
This answer should work if and only if the original script is actually saved as an application.
– DonielF
7 hours ago
add a comment |Â
up vote
3
down vote
You should be able to just add “Opening 5.app†to the System Preferences » Login Items.
But if that doesn’t work for some reason, this sounds like the perfect job for a launchd .plist. They can be tricky to write, but there are two apps which are very good for getting the hang of them. The first is Lingon and the second is LaunchControl. They both have demos, and I would recommend trying them both and seeing which one you prefer.
If you're keen to learn more about launchd
, a good resource is http://www.launchd.info.
Here's an example of how you might handle launching that app at login:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.tjluoma.opening5</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/open</string>
<string>-a</string>
<string>Opening 5</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Save that to ~/Library/LaunchAgents/com.tjluoma.opening5.plist
(where ~
refers to your home directory).
When you reboot (or logout and then login), it should launch “Opening 5†at login.
add a comment |Â
up vote
3
down vote
You should be able to just add “Opening 5.app†to the System Preferences » Login Items.
But if that doesn’t work for some reason, this sounds like the perfect job for a launchd .plist. They can be tricky to write, but there are two apps which are very good for getting the hang of them. The first is Lingon and the second is LaunchControl. They both have demos, and I would recommend trying them both and seeing which one you prefer.
If you're keen to learn more about launchd
, a good resource is http://www.launchd.info.
Here's an example of how you might handle launching that app at login:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.tjluoma.opening5</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/open</string>
<string>-a</string>
<string>Opening 5</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Save that to ~/Library/LaunchAgents/com.tjluoma.opening5.plist
(where ~
refers to your home directory).
When you reboot (or logout and then login), it should launch “Opening 5†at login.
add a comment |Â
up vote
3
down vote
up vote
3
down vote
You should be able to just add “Opening 5.app†to the System Preferences » Login Items.
But if that doesn’t work for some reason, this sounds like the perfect job for a launchd .plist. They can be tricky to write, but there are two apps which are very good for getting the hang of them. The first is Lingon and the second is LaunchControl. They both have demos, and I would recommend trying them both and seeing which one you prefer.
If you're keen to learn more about launchd
, a good resource is http://www.launchd.info.
Here's an example of how you might handle launching that app at login:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.tjluoma.opening5</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/open</string>
<string>-a</string>
<string>Opening 5</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Save that to ~/Library/LaunchAgents/com.tjluoma.opening5.plist
(where ~
refers to your home directory).
When you reboot (or logout and then login), it should launch “Opening 5†at login.
You should be able to just add “Opening 5.app†to the System Preferences » Login Items.
But if that doesn’t work for some reason, this sounds like the perfect job for a launchd .plist. They can be tricky to write, but there are two apps which are very good for getting the hang of them. The first is Lingon and the second is LaunchControl. They both have demos, and I would recommend trying them both and seeing which one you prefer.
If you're keen to learn more about launchd
, a good resource is http://www.launchd.info.
Here's an example of how you might handle launching that app at login:
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>Label</key>
<string>com.tjluoma.opening5</string>
<key>ProgramArguments</key>
<array>
<string>/usr/bin/open</string>
<string>-a</string>
<string>Opening 5</string>
</array>
<key>RunAtLoad</key>
<true/>
</dict>
</plist>
Save that to ~/Library/LaunchAgents/com.tjluoma.opening5.plist
(where ~
refers to your home directory).
When you reboot (or logout and then login), it should launch “Opening 5†at login.
edited 7 hours ago
answered 8 hours ago
TJ Luoma
10k33473
10k33473
add a comment |Â
add a comment |Â
up vote
2
down vote
If the script you provided is the actual script, you can launch “Opening 5.app†directly from the login items instead of the script.
If your script does other things not shown in your question, you can still use the script but you’d have to save the script as an application instead of a plain script to use it with login items.
add a comment |Â
up vote
2
down vote
If the script you provided is the actual script, you can launch “Opening 5.app†directly from the login items instead of the script.
If your script does other things not shown in your question, you can still use the script but you’d have to save the script as an application instead of a plain script to use it with login items.
add a comment |Â
up vote
2
down vote
up vote
2
down vote
If the script you provided is the actual script, you can launch “Opening 5.app†directly from the login items instead of the script.
If your script does other things not shown in your question, you can still use the script but you’d have to save the script as an application instead of a plain script to use it with login items.
If the script you provided is the actual script, you can launch “Opening 5.app†directly from the login items instead of the script.
If your script does other things not shown in your question, you can still use the script but you’d have to save the script as an application instead of a plain script to use it with login items.
answered 7 hours ago
John Keates
1,775410
1,775410
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fapple.stackexchange.com%2fquestions%2f336960%2fhow-do-i-get-an-applescript-application-to-automatically-run-at-login%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Did u convert the script to an application then use the System Prefs login items feature?
– abc
10 hours ago
You said, "the script just activates a program that I have made"... please provide more details, what type of program did you make and why do you need AppleScript with this other program. Maybe posting the AppleScript code might be helpful too.
– user3439894
10 hours ago
1
See here: AppleScript at Startup and specific time
– rubik's sphere
10 hours ago
@rubik's sphere, Good to see you, but if all he needs is for it to open at Login, the link you've provided maybe overkill however, lets get some actual details from the OP.
– user3439894
10 hours ago
1
Why do you need to launch the app from another app to begin with? Have you tried adding "Opening 5.app" to Login Items instead of the AppleScript app?
– user3439894
7 hours ago