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

28.02.2009 20:23:06
TIP: adding instructions or notifications in your actions
View

This posting is older than 6 months and can contain outdated information.
It took me a little research to get this to work, so I thought I'd share this tip.

What I wanted to do was be able to show some useful instructions or other text at certain times that was easily readable in the home theater set up.

Here is how I accomplished it -- it uses an excellent third party application called Quicksilver (check their website, blacktree.com for info if you are not familiar). The "large type" notification built in to Quicksilver displays the message on screen with a translucent black background that goes well with Remote Buddy's aesthetics.

In the action factory, create an action (or edit an existing one if appropriate). Under the "Implementation" tab, add a new Applescript, for example:

tell application "Quicksilver" 
show large type "Hello world!" 
delay 3 
tell application "System Events" to keystroke "x" 
end tell

When this message is displayed, it will stay there until a key is pressed to dismiss it. Any key will do. The "delay 3" pauses for 3 seconds, then sends some keystroke which causes the text to fade away. You can omit this and use a button on the remote to dismiss the message. Note that in order for the delayed dismissal above to work, you must have "Enable access for assistive devices" turned on under "Universal Access" in your system preferences.

The string "Hello world!" can be whatever you want to show, and it can contain new lines, but the opening " must be on the first line. For example, I am using this script:

tell application "Quicksilver" 
show large type "Turn on the gamepad and insert game disc now 
Play: start game 
Stop: quit 
Swap: toggle fullscreen" -- don't forget the closing quote! 
delay 5 
tell application "System Events" to keystroke "x" 
end tell

In the behavior factory, I've configured the action to run on activation, and the text informs the user how the remote buttons are mapped -- or reminds me if I forget :)

Hope someone finds this tip useful!

-Bryan 

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

Configuration
Hardware - Apple® Remote
User

04.03.2009 17:14:06
Re: TIP: adding instructions or notifications in your actions
View

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

You can also use Remote Buddy's AppleScript support itself to show a 
notification for a given duration, btw.

Here's an example:

-- snip -- 
tell application "Remote Buddy" 
osdmessage display text "Hello and welcome to this little demo" for 
duration 3.0 
delay 2.8 
osdmessage display text "Showing a shorter string!" for duration 2.0 
delay 1.8 
osdmessage display text "Bye Bye ;-)" for duration 1.0 
end tell 
-- snap --

Best regards, 
Felix Schwarz