Support
All support resources for our products. Here you can find answers to frequently asked questions, discuss with other users, recover a lost license code or file a support request.
Forum closed
This forum was closed and turned into an archive effective April 21, 2018. It is no longer possible to create new topics or reply to existing topics.

Thanks everyone for all the great questions and contributions over the years.

Please use the Contact form to get in touch.

Remote Buddy Forum

Overview 

AuthorThread
User

17.02.2010 21:08:11
Start iPhoto, iTunes and EyeTV
View

This posting is older than 6 months and can contain outdated information.
Hi,

I want to create an behavior that simply starts iPhoto, another one that starts itunes and one that starts EyeTV. 
Are there any Keyboard Shortcuts or Apple Scripts that delivery this functionality. 
regards 
Manuel 

These entries from the FAQ may be relevant to this topic:

Hardware - Apple® Remote
Hardware - EyeTV Receiver
User

20.02.2010 00:15:05
Re: Start iPhoto, iTunes and EyeTV
View

This posting is older than 6 months and can contain outdated information.
Here is the script you can use. Just change iPhoto to whatever program you want to start up.

tell application "System Events" 
tell application "iPhoto" to activate 
end tell 

User

20.02.2010 11:16:41
Re: Start iPhoto, iTunes and EyeTV
View

This posting is older than 6 months and can contain outdated information.
Thanks for asking.

There already are actions for this that you can use. They are located at

(Actions >) Behaviours > Activate XY Behaviour

Best regards, 
Felix Schwarz 

User

20.02.2010 11:19:46
Re: Re: Start iPhoto, iTunes and EyeTV
View

This posting is older than 6 months and can contain outdated information.
Thanks for contributing. Just one small comment:

The line 
tell application "iPhoto" to activate 
would be totally sufficient. By enclosing it with the System Events "tell" block, the activate AppleEvent would actually be relayed through System Events. Because the relaying of AppleEvents - in general - can pose a security risk to execute commands with elevated permissions, Apple no longer supports it under Snow Leopard.

Best regards, 
Felix Schwarz