Customize away message for live feed?

I would like to set up an away message where the content is pulled from a live feed. I assume this is possible because that's essentially what it does when it displays the current song on iTunes.
Does anyone know any shareware/freeware that can do this, or other way to set this up? Specifically, there is an online queryable database I'd like to pull the away message from.
MacBook Pro 15"/2.16Ghz/2GB RAM   Mac OS X (10.4.8)  

Hi RKNYC,
AppleScript is the way.
There is a basic one here
http://www.ralphjohnsuk.dsl.pipex.com/page11.html#Where_canI
You need to scroll down a bit (Blue text)
This takes several pre typed messages and rotates them to give a partial scroll.
<hr>
This is a real scroll of a saved/typed message
---------- script start ----------
-- idea and script: [email protected]
set a to every character in " Read the FAQs at www.ralphjohnsuk.dsl.pipex.com :-D "
set h to ""
set i to 1
set c to count every item in a
repeat
repeat with n from 1 to c
repeat with m from 1 to c
set h to h & item i of a
if (n = 1 or n mod c = 1) and i = (c) then
set i to i - (c - 2)
else if i = (c) then
set i to i - (c - 1)
else if m = c then
set i to i + 2
else
set i to i + 1
end if
end repeat
tell application "iChat"
delay 0.2
set status message to h & ""
set h to ""
end tell
end repeat
set i to 1
end repeat
---------- script end ----------
This gets past the 42 character limit
<hr>
Next is to Scroll the current Status Message
------Start Script----------
tell application "iChat"
get status message
set b to status message
set a to every character in b
set h to ""
set i to 1
set c to count every item in a
repeat
repeat with n from 1 to c
repeat with m from 1 to c
set h to h & item i of a
if (n = 1 or n mod c = 1) and i = (c) then
set i to i - (c - 2)
else if i = (c) then
set i to i - (c - 1)
else if m = c then
set i to i + 2
else
set i to i + 1
end if
end repeat
tell application "iChat"
delay 0.1
set status message to h & ""
set h to ""
end tell
end repeat
set i to 1
end repeat
end tell
----------End Script -----------
<hr>
This one shows that you can call from other Apps
It actually swops the Buddy icon for iTunes Pics/artwork
------Script Start----
tell application "System Events"
if ((application processes whose (name is equal to "iTunes")) ¬
count) is greater than 0 then
tell application "iTunes"
if player state is playing then
set the_artist to artist of current track
set the_song to name of current track
if artworks of current track exists then
set currentArt to data of front artwork of current track
my iChatIconFromArtwork(currentArt)
end if
if the_artist is not missing value then
return the_artist & " - " & the_song
else
return the_song
end if
else if player state is paused then
return "iTunes is paused"
else if player state is stopped then
return "iTunes is quiet"
end if
end tell
else
return "iTunes is Off"
end if
end tell
on iChatIconFromArtwork(inArt)
tell application "System Events"
if ((application processes whose (name is equal to "iChat")) ¬
count) is greater than 0 then
tell application "iChat"
try
set file_name to ":tmp:artwork2avatar.pict" as string
try
do shell script "rm /tmp/artwork2avatar.pict"
end try
open for access file_name write permission 1
copy the result to file_reference
write inArt starting at 0 to file_reference as picture
close access file_reference
set theImage to open for access file file_name ¬
without write permission
set imageData to read theImage as TIFF picture
set image to imageData
close access theImage
on error errStr
try
close access file_reference
end try
display dialog "Error: " & errStr
end try
end tell
end if
end tell
end iChatIconFromArtwork
-------End Script---------
This one will run once and change the pic. It then needs running again to change to the next pic. Saves putting a loop to check the pic every minute or so and using Processor time.
All these need to copy and pasted into Script Editor
They can be run from there on a individual basis or you Can save them as App and then run them.
They are heavy on the 5190 port and can effect Video chats on slower machines or sending Files or Pics in Text Chats ("Too much data too quickly" is the normal error message).
9:11 PM Sunday; December 24, 2006
Merry Christmas

Similar Messages

  • Different away messages for each screen name signed on.

    It is possible to use different away message for different screen names all signed on using iChat? I have a home screen name, work screen name, and school screen name, and would like to not have one away message for all three.

    No.
    4:34 PM Tuesday; February 12, 2008

  • Customize Alert messages for checking duplicate value and Success alert

    Hi All,
    I want to show two alert against the same "Submit" button to--
    1. Alert messages for checking duplicate value and show the Duplicate value found alert and
    2. Success Alert if the form is success to commit and no duplicate value found.
    I did all thing but when alert-1 shows and i pressed the ok button of the alert then the second alert also shows which i don't want to show.
    Which i can do in this issue? Have there anyone to help me!
    Arif

    Hi Manu,
    I have placed the following code
    1. against the Submit button--
    if error_code=40508 then
         commit_form;
    elsif :USERDELETION.CANCELLATION_USERID is not null then
    do_key('COMMIT_FORM');
    else null;
    end if;
    2. Code against the key-commit trigger in the form level--
    commit_form;
    DECLARE
    vAlert NUMBER;
    BEGIN
    set_alert_property('ALERT_TO_VERIFY',ALERT_MESSAGE_TEXT, 'Your Form has successfully submitted and your Reference id is '||:USERDELETION.REF_NO);
    vAlert:=SHOW_ALERT('ALERT_TO_VERIFY');
    END;
    3. Code against the on-error trigger in the form level--
    DECLARE
    vAlert NUMBER;
    BEGIN
         if ERROR_CODE = 40508 then
    set_alert_property('ERROR_ALERT',ALERT_MESSAGE_TEXT, 'This user deletion request has already submitted of the user named '||'"'||:USERDELETION.FULLNAME||'"');
    vAlert:=SHOW_ALERT('ERROR_ALERT');
    elsif
              ERROR_CODE = 40202 then
    set_alert_property('ERROR_ALERT',ALERT_MESSAGE_TEXT, 'Existing userid must be filled-up !');
    vAlert:=SHOW_ALERT('ERROR_ALERT');
    else
                   message(error_type||to_char(error_text)||': '||error_text);
    end if;
    END;
    If there have any confusion, please ask me.
    Arif

  • ADF-BC:Customize Error Messages for Database Constraint Violations

    Hai all
    I have an apploication using JDEV 10.1.3.3 and ADF BC.
    In my applcation I'm overriding the default error messages on violation of constraints by using a custom message bundle .
    I did all the things specified in Oracle® ADF Developer's Guide
    Chapter 25.8 Customizing Business Components Error Messages .
    IT is working fine
    My problem is along with the userdefined custom messge in the bundle
    another default message is showing which is nothing meaningful to the
    end user.
    For Ex: for an Uniqiue constraint the following error message comes
    Error
    1 .The Usercode should be unique!!!
    2 .ORA-00001: unique constraint (MYDB.USERCODEUNIQUE) violated
    ORA-06512: at line 1
    The first line is defined by me.the second one is added automatically.
    I want to prevent showing the error no 2 for all DB constraint violations
    Is there any method to do it.I think I'm missing someting
    Please help me.This is very annoying to the end user.
    Thanks
    Ans

    Hi,
    guess you know about this
    http://download-uk.oracle.com/docs/html/B25947_01/bcadvgen008.htm#sthref2393
    So have a look here
    http://download-uk.oracle.com/docs/html/B25947_01/web_val008.htm
    The code for this is from SRDemo and allows you to suppress messages from JSF display
    Frank

  • Customize error message for type conversion

    Hi,
    <h:inputText value=....>
    <f:validateDoubleRange />
    </h:inputText>
    I try to customize the error message if the value can't be converted to double, but i keep getting the default.
    I have this in my properties file
    javax.faces.validator.DoubleRangeValidator.TYPE=Not a valid number.
    I can change the other properties like minimum and maximum, but not type. Can someone help me figure this out?
    Thank you

    Hi,
    You are on the right track of customising the error messages, however I will have it tested and let you know the results on the JSP's. "Unknown Type of..." error occurs when the webconnector is unable to resolve the URL. This can be like, the file may not be present etc. One way is to provide the fullname of the file along with the URL and check if the app server is able to hit the page. Incase you still experience the error then we can investigate further on this by looking at the KXS and KJS log files.
    Regards
    Ganesh .R
    Developer Technical Support
    Sun Microsystems
    http://www.sun.com/developers/support

  • Need an away message for texting

    I will be out of the country for 2 weeks. I need a way to autorespond to text messages so people don't think I'm ignoring them. What to do?

    Tell your friends before you leave.

  • Custom Error Messages for Database Constraint Violations Problem

    Hi
    I have added a custom message bundle for the model project as explained in
    37.8.3 in the Fusion Developer's Guide - How to customize error messages for database constraint violations.
    http://download.oracle.com/docs/cd/E14571_01/web.1111/b31974/bcadvgen.htm#BABEFGCI
    Constraint Name : SYS_C0018574
    And I have following CustomErrorMessages class
    public class DBCustomErrorMessages extends ListResourceBundle {
        private static final Object[][] sMessageStrings =
            new String[][] { { "SYS_C0018574",
                               "Existing Record Found" } };
        protected Object[][] getContents() {
            return sMessageStrings;
    }This works fine when I run application model and adding records to vialate the constraint. So it gives me following message
    (oracle.jbo.DMLConstraintException) Existing Record FoundBut when run ui project it does not fire.
    Still it gives the message
    ORA-00001: unique constraint (CCBS2.SYS_C0018574) violatedCould you please shed some light?
    Edited by: deshan on Mar 15, 2011 11:28 AM

    Please see the image.
    http://4.bp.blogspot.com/-Fna66p-W5Jw/TX7uSQqqBtI/AAAAAAAAAH0/D1APg6oAIxI/s1600/1.JPG
    Error in Application Module ORA-00001: unique constraint (CCBS2.SYS_C0018574) violated exception is different from ui project.
    Any hint?
    Thanks
    deshan
    Edited by: deshan on Mar 15, 2011 10:16 AM

  • How do I set up an away message on my Iphone

    I am going away on vacation my I phone 3 does not work in Europe how do I set up an away message for the phone.

    if your asking about voice calls you'd have to set someting up yourself on voicemail
    if your asking about email then you don't, out of office notifications are usually configured and managed on the mail server itself, usually via http
    There are some apps that can configure out off office, they are managing the out of office on the mail server
    iOS mail has no prevision for setting away messages
    if it's a company mail server check with your IT department. if your using your ISP's mail server check with them if they offer vacation notification or out of office
    Wifi will still work in Europe regardless of whatever cellphone standard your phone uses

  • Different away messages on separate accounts

    i'm using both an aim account and a jabber account and whenever i set an away message for aim, it automatically uses the same message for the jabber account. how can i do separate away/statuses?

    Hi
    In iChat 3 and 4 that can open Jabber and AIM Buddy lists at the same time you can not
    This Feedback page can be used for Wish List stuff as well
    http://www.apple.com/feedback/ichat.html
    Hopefully Snow Leopard will bring that option as Leopard has only just given use the option to have more than one Buddy List of each type open at once.
    8:11 PM Saturday; June 20, 2009
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"

  • Workflow for Live Video Feed to External Hard Drive?

    My goal is to eliminate the "import from tape playback" step when filming a video blog for a medical client. Would this workflow work?
    Sony DSR-PD170 video camera "live feed" Firewire output to
    MacBookPro Firewire400 port input to
    iMovie project capture output via Firewire 800 port to
    LaCie 500GB d2 Quadra Hard Drive FireWire800 port
    In other words, is the MacBook Pro capable of simultaneously importing through the Firewire 400 port and exporting to the Firewire 800 port? I've done something similar with the two Firewire 400 ports on my iMac, a DV tape deck, and a Lacie Firewire external hard drive.
    Thanks for your feedback!
    ---j

    hey there RI,
    if you've tried something similar on your iMac & had no problems it's reasonable to think/believe it will work on your MBP, w/ this caveat: the 400 & 800 ports are actually on the same buss, so the 800 port will handle it's data at the lower(400) rate if there is a device on each port. shouldn't affect any editing w/ the drive once the cam is removed from the MBP. it should the run @ the higher rate.
    good luck.

  • RSS Feed for Live Cricket Score Card:

    HI Friends, I need a rss feed for Live Cricket full score card.

    Cricinfo has best rss feed for live cricket scores. Below is the given few rss feeds providers for live cricket scores:
    ESPNCricinfo
    CricScores
    Cricket RSS Feeds

  • Keeping away message on for a long time

    ok so im a student and i want my away message to say school. So i make it that, put my laptop in its charger and turn the contrast all the way down (for privacy). However, my away message only stays on for a short time (i have no idea how long) before the automatic logout shuts it down. Is there any way to disable that function? i also want this for whne i go on vacation which is longer periods of about a week. any ideas

    Hi Ken:
    Your status is changing when your mac goes into sleep mode. It is actually logging you out of iChat/AIM.
    The only way to prevent this is to not allow your mac to go to sleep, which can be adjusted via: System Pref>Energy Saver>Put the computer to sleep when it is inactive for: NEVER
    I hope this helps!

  • Customize message for extended notification

    Hi All,
    I am using extended notification for some workflows to send notification to the user's email when there are some work items pending in their UWL. I want to customize these messages based on task type. Lets say for example one message for TS1000000034 and another message for TS100000005.
    Let me re-iterate my requirement: How to customize messages in extended notification ?
    Any help is highly appreciated.
    Thanks.
    Edited by: Bijay Kumar on Oct 6, 2008 6:26 PM

    Hi ,
    If you looking for a task based extended notification.
    I would suggest you use a background program which is scheduled to look for the specific task number in a list of user inbox in a timed fashion.
    When found send an email to the address with content depending on the task type.
    I am not sure how hard or easy is the configuration for the same and also introducing task based content in the extended notifications.
    Let me know
    Thanks ,
    Charan.

  • Customize Message for Entity Validation

    Hello,
    I am using ADF BC
    How to customize the messages appears in the ADF Form on top when you have entity level validations? Like I created a list validator on the entity object. When user clicks the submit button, it appears on top of the form. How can I customize this message, change the heading to a friendly message rather than Error.
    How can I do this?
    Thanks

    Hi,
    see
    http://download-uk.oracle.com/docs/html/B25947_01/bcadvgen008.htm#BABEFGCI
    and
    http://download-uk.oracle.com/docs/html/B25947_01/web_val007.htm#CACBAAJA
    Frank

  • [svn:osmf:] 14823: Fix bug where canPause was not set to false for live streams.

    Revision: 14823
    Revision: 14823
    Author:   [email protected]
    Date:     2010-03-17 10:51:40 -0700 (Wed, 17 Mar 2010)
    Log Message:
    Fix bug where canPause was not set to false for live streams.
    Modified Paths:
        osmf/trunk/framework/OSMF/org/osmf/net/NetStreamPlayTrait.as
        osmf/trunk/framework/OSMFTest/org/osmf/elements/TestVideoElement.as

    Thanks for looking at this post. We have resolved the issue for ourselves by working with our DBAs to narrow down where the problem actually started. We found that the particular SQL we were looking at was not the issue. In a chart on a subsequent page (via a click through), we were actually running into where apex was starting to consuming memory but we were catching it later.
    What we found was that when we had a chart query that was SQL containing a pipeline function, the memory usage went up. And within 10 minutes, the server would crawl to a halt. To release the memory, the DBAs would have to bounce the Apex instance. When I changed the query to be a function returning SQL, the problem stopped. I don't know what the correlation was between SQL and moving to a PL/SQL function returning SQL.
    I am not even 100% positive of the pipeline function being the cause. I only know that this started happening about the same time as when I implemented the pipeline function. I understand you are leery of a one-second function/query running up that kind of utilization. No one here believed me either (including me really). We figured it HAD to be a coincidence. But once I changed the query from SQL to a function returning PL/SQL, our problem went away.
    Thanks to all who looked at and thought about this.
    Walter

Maybe you are looking for

  • How to adjust VCORE in MSI Pro-E X58?

    Hey guys; I've built my first rig and I'm interested in overclocking the i7 I've bought. I've already read a lot on OC'ing and the potential hazards that come with it. In any case, I own the MSI Pro-E X58 and was looking to OC. I've steadily increase

  • Jump/RRI from BCS to GL

    Hello BI gurus, We have BCS reporting and GL reporting. The requirement is to jump from a BCS report (containing Consolidated numbers) to the GL line item level (for the Unconsolidated numbers). Our BCS report has BCS_LITEM/Account in the rows, time

  • Torch favorites panel acting up

    I have a torch 9810 on att. The favorites panel is randomly replacing the icons with duplicates, ex. I now have a second browser icon where my calculator icon used to be. If i delete the extra icon, in this case the calc-turned-browser,  i have to go

  • Unable to install iOS 8.1.1

    I'm stuck updating 150 plus iPads with the following.   I do not know what to do next. Unable to restore device (ECID=B79813A3CA, Location=1A122700) with the firmware found at file:///Users/USER/Library/Containers/com.apple.configurator/Data/Library/

  • Sun Java Communications Sync - VISTA

    Hi, Is there any version on Sun Java Communications Sync for VISTA ? because i installed it on VISTA it gives me an error, it does not start.