Blind person looking for assistance retrieving messages

I am setting up an I phone for a blind person.  I am using voice control so no buttons need to be pushed.  I have managed to program the phone to be able to get to message 1 without using anything but voice but do not know how to get to the next message without pushing a button.  Here is what I have done so far:
In contacts programmed the phone number as follows:
area code
phone number and then a pause
password
pause
1
This gets me to the first message without using any buttons but I need to be able to move on to the 2nd message, etc.
Many thanks.

I guess there is some issue with the configuration because of which all users are not able to get access.Please refer
to the following URL to which clearly explains how to configure WCCP. http://www.cisco.com/en/US/products/sw/conntsw/ps547/products_configuration_guide_chapter09186a008008714e.html
If this doesn't help please try upgrading the software.

Similar Messages

  • I keep getting a 'Looking for backup disc' message from my  Time Capsule.

    I keep getting a 'Looking for backup disc' message from my  Time Capsule. I have set it up several times without any apparent problems (I have even done a Hard and Factory reset). Everything seems fine until I ask Timemachine to 'back up', and then the problems start.
    Any ideas?

    I had the exact same problem. I bought the Time Capsule this past July and it worked fine for about a month then it told me it hadn't backed up in 10 days and was stuck looking for the backup drive. I called Apple and they said the reason was that the Time Capsule was in Bridge mode. I launched Airport Utility and sure enough, it was. I changed it to DCHP and NAT (Airport Utility -> Network tab -> Router Mode). After updating the Time Capsule, I couldn't even get on the Internet, let alone do a backup. A logged into the software for my cable modem and discovered that it too was in Bridge mode.
    It turned out (for me) that neither should be in Bridge mode (which is for connecting two networks). Your cable modem only has one IP address. Your Time Capsule should be doing the NAT (Network Address Translation) which translates the internal IP addresses on your network to the one IP address your cable modem has. When I switched my Time Capsule to DHCP and NAT, it conflicted with the fact that the cable modem was also trying to do this. The answer was to turn this off on the modem (allowing all the packets to just go through the modem to the Time Capsule and let IT do the NAT). I did that last week and since then, my Time Capsule has been working perfectly.
    1) Go to your cable modem (via a browser, enter "http://192.168.100.1"). Log-in and find the setting that indicates NAT. If you're uncomfortable doing this or can't find it, call your cable company and ask Tech Support to do it for you. They can do it remotely.
    2) Launch Airport Utilty. Go to the Network Tab and change the router mode to "DHCP and NAT".
    3) You may need to restart your modem and Time Capsule. I can't remember if I had to or not.
    I hope this helps. I tried many things but this is the only solution that fixed it for me. And it makes sense. Only one device, the cable modem or the Time Capsule, can be doing the NAT.

  • Remote opportunity, Looking for assistance in programming a transfer function model

     Hello,
    Please see attached transfer function model. I am looking for assistance in programming in Labview 2014. Inputs are coming through cRIO and into the model and the model is determining the value of certain outputs being sent back to the cRIO, please PM if you are interested and we can discuss in more detail. Thanks!
     

    Hello,
    I could help as I've done this sort of thing for many of my clients. Let me know what you would like done.
    Thanks.

  • Looking for Assistance...

    I am using MacBook Pro notebook from last month and two days ago I have installed OSX Lion (New) but since the installation of Lion my notebook is getting quite hot and also making Hiss type of noises (may be of colling fan) which quite aloud. Why is it so? I am not sure and looking for assistance...Please Help.

    I searched with Google for MacBook hot and noisy. There are several possible reasons:
    - the hard drive of your computer may be almost full. You need to get rid of unnecessary files.
    - you need to place your MacBook on a cooling stand. This kind of stand can be purchased from on-line vendors.
    If you want to get more precise answers, please try to be more specific, like what temperature, after how long does the computer gets hot and noisy, etc.
    I keep my MacBook on an elevated perforated plastic tray (half an inch above the desk) that allows ambient air to circulate also under the computer.

  • Looking for assistance in developing a magazine with 117 pages - iPad App with Adobe digital Publishing suite for the iStore

    We are looking for some help in developing and App, so that we can publish our current hard-copy magazine with 117 pages onto the iStore any suggestions?

    as bob said, it depends what kind of assistance.
    which language is needed, are you able to spend money on it, when is the deadline.
    do you need technic support, design help? do you have a license for dps, which one?
    ect.
    if you need a professional, experienced team our company could help you. but we will not work for free

  • How can I get Instant notification if a download fails, instead of sifting through the whole library later looking for a fail message

    sometimes I download hundreds of articles, pdf's, videos etc at one sitting, and cannot stop to watch whether or not some few of the items "fail" to completely download. Later, when scrolling down the whole list of recent downloads in the library I try to squint and see the tiny words notifying of a failed download but it is easy to miss the warning plus when there are hundreds of items it is VERY time-consuming to double click each item to attempt a re-download . . it usually DOES re-download ok BUT selecting this process sends the cursor back to the top of the library listings and now it takes forever to find your place back in the area where there were several "fails" listed together to continue the correction process for the whole list. Would be SO VERY MUCH better if and when a particular download fails, that a pop up window message would alert to that fact and a simple click within said window would automatically re-start the download, etc. That way a vital article would not later be discovered to have no content or error message, etc, just when one needed it and perhaps was not able to go online to fix it.

    You can run this code in the Browser Console (Firefox/Tools > Web Developer) to add a tooltip to the icon of each item in that list.
    You probably need to scroll the full list to make Firefox update all attributes and you need to rerun the code in the browser console via cursor Up and Enter to update all tooltips after having done a new download.
    If you run the code then you get a pop-up that shows some information of all selected items (Ctrl click multiple items).
    You can open the Browser Console (Firefox/Tools > Web Developer).
    Paste the JavaScript code in the command line and press the Enter key to run the code.
    *Toggle the devtools.chrome.enabled pref on the <b>about:config</b> page to true to enable the command line
    <pre><nowiki>var {classes:Cc,interfaces:Ci} = Components;
    var wm = Cc["@mozilla.org/appshell/window-mediator;1"].getService(Ci.nsIWindowMediator);
    var win = wm.getMostRecentWindow("Places:Organizer");
    if(d=win.document.getElementById("downloadsRichListBox")){
    var C=[],L=[],r,R;
    r=d.getElementsByTagName("richlistitem");
    for(i=0;R=r[i];i++){
    var tt=R.getAttribute("image").replace(/^moz-icon:[/][/]([^?]+)[?]size=\d+$/,"$1");
    var tT=[];
    var nD=R.getAttribute("displayName");
    tT.push("["+(i+1)+"] ["+nD+"]");
    tT.push("FILE: "+tt);
    var eT=R.getAttribute("state")||0;
    var sT=R.getAttribute("status");
    tT.push("STATUS["+eT+"]: "+sT);
    R.setAttribute("tooltiptext",tT.join("\n"));
    if(R.getAttribute("selected")=="true"){C.push(tT);L.push(tt)}
    if(C){if(prompt(C.join("\n"),C)){prompt(L.join("\n"),L);}}
    </nowiki></pre>

  • I realize I must be the last person looking for THE PODCAST APP for my new iPod touch, but after looking 4 times, I have given up thinking that app must be long retired now...thanks to anyone who could help a late-bloomer.

    I realize I might be one of the last first-time buyers of an iPod Touch (latest version) but I cannot find the PODCAST APP for it anywhere! After wasting a total of an hour on 4 separate occasions today, I've given up, thinking perhaps I AM the last person who would need this app & it's 'retired'. Even typing in PODCAST APP & hitting the magnifier 10X's did NOTHING but hurt my finger tip. Could some nice person please help CONFUSED & CRAZED in CONNECTICUT? Thank you in advance!  Oh, one more question- How does 'one' get their older iPod players like the BOSE & 2 other good ones I have, WITH the Bluetooth music receivers I bought already on them, to actually DO what its designed to? Now add clueless, to my previous sign-off & not BORN in 1995! But, hey, I'm trying! ; )

    You can connect the iPod to a computer and download the Podcast app using iTunes >  https://itunes.apple.com/us/app/podcasts/id525463029?mt=8
    Or, on your iPod, tap the App Store then type in Podcast then download the app. (It has the same purple icon as the one at the iTunes Store on a computer).
    Only iPods with Bluetooth capability can, "pair" with Bluetooth BOSE devices.
    On an iPod touch, tap Settings > Bluetooth.

  • Yet ANOTHER person looking for an answer to a dreaded Time Machine Error

    "Unable to complete backup..." I have a dedicated 2Tb Lacie "Bigger" disk that Time Machine has been effectively backing up to since April 2008. In the last two weeks I've started getting this error. "Unable to complete backup. An error occurred while creating the backup directory."
    After reading the very convoluted and differing solutions to this problem, some that seemed to work for only a few, and some that don't seem to work for anyone, here's what I've done so far with NO results.
    I'm running Leopard (with the most recent update - 10.5.6) on a 24" imac.
    Step 1. Run Disk Utility to scan the disk for errors - No problems detected.
    Step 2. Run Disk Utility to verify the disk - No problems detected.
    Step 3. Trash the preferences, both in the system library and the user library, where I found them.
    Step 4. Disk Utility - Zero the drive (10 hours btw) and reformatted with Journaling enabled, and a Re-name of the drive.
    Step 5. Restart iMac, and upon prompting by the launcher, confirmed that Yes, I would like to use "new name" for Time Machine backups.
    Step 6. Wait patiently for 116 seconds for Time Machine to start the first backup.
    Step 7. Proceed to slam forehead (repeatedly) into desk when I got the error again after this 20 hour process.
    I then proceeded to repeat this process thinking that maybe I'd forgetten a step.
    I thought it may be a cable or port issue, so I changed the port that I was using on my drive...NO - the cable is fine, since we tested it on my husbands machine. No connectivity problems.
    I thought it may be that I was missing an update, Nope.
    I turned off the sleep mode, thinking that it was not able to access the drive effectively. No.
    Then I started thinking that maybe there was a corrupted file. Who knows?
    Does ANYONE have a suggestion? I am currently without a backup, since I erased my drive. I can do a manual back up, but I don't want to erase the drive again..since it takes forever.

    I did not say anything about changing a drive name. What I referred to was the Computer Name as set in Sharing preferences. This is how TM identifies the machine with the backup contained in the Backups.backupd folder.
    I would start looking at your console log entries to see what information it provides on the backup when it produces the error. This could be a permissions related problem for all one knows, although it's odd that the problem occurs immediately after you erase the backup drive and start anew.
    When you prepared the external drives were they partitioned using APM and formatted Mac OS X Extended (Journaled?) I would also check the drive permissions. Select the drive and press COMMAND-I to open the Get Info window. In the Ownership and Sharing section at the bottom be sure the box labeled "Ignore permissions on this ..." is UNchecked. Standard permissions should be:
    Owner=system with r/w privileges
    Group=admin with r/w privileges
    Everyone is read-only
    If these aren't the same, then click on the lock icon, authenticate with your admin password, then change them accordingly. If you don't have a system or admin entry then click on the [+] button. You should be able to select Administrators and add it to the Group list. However, a system user will not exist when you try to add it, so click on the option for a new user. Enter system as the username (all lowercase) then enter and confirm your admin password. You can then add system as a user. Then set the privileges as above. Remove all other users by selecting them and clicking on the [-] button. You cannot delete yourself, but you can change your privileges to read-only.

  • Looking for a good message recovery site?

    My iPhone 5 went into recovery mode when I updated to iOS 7.1.2. Does anyone know of any good data recovery sites that I can use to recovery some lost text messages and Photos?

    Yes your icloud or iTunes backup.
    surely you backup on a regular basis or at the very least backup prior to updating your software.

  • Looking for assistance importing Google Earth into WCS

    The documentation for creating the CSV file for importing Google Earth coordinates into WCS is very vague. Can anyone provide some sort of a template or an example of their CSV file they succcessfully imported?

    I don't know of any, but is has been rumored that Google will be porting their turn-by-turn nav app to the iPhone.

  • Dissatisfaction with Samsung has led me to ask Apple for Assistance with iPad for Husband with MS

    My husband suffers from Multiple Sclerosis and I am just trying to find information on any discounts or programs that would allow him to get an iPad2 w/ wi-fi and 3G.  He currently has a Samsung Galaxy Tab that we paid for from our funds however, the time has come and it has issues and we are receiving no support from Samsung nor Verizon. Nothing. Verizon even sold us a charger that is not compatible with the Tab. Our Verizon store is not friendly or helpful on most occasions. But that is not why I am here. My husbands MS impairs his sight (closeness/reading & Uhthoff's phenomenon), small motor skills, dexterity, and walking/balance.  He functions well enough to where he makes a commitment to working every day except when he is scheduled for infusions once per month at the hospital. So the best possible option for him now would be an Apple iPad. He has heavily relied on his other tablet, until now, to help him function daily at work and at home. However, our current budget will not allow us to make such a large purchase and payments do not seem to be an option at this time either. So if Community Affairs or a partnership with the MS Society or other group could offer a substantial discount to persons with disabilities that would be wonderful and we may be able to manage obtaining some remaining costs to complete the purchase. No, more than wonderful. At this point, I do not like him being without an assistive device. Watching him struggle to read or use maps breaks my heart and makes me worry of his safety. 
    Please contact me if anyone can be of any help.  I spent over 2 hours online last night looking for assistance and as you can tell I didn't find any. Maybe I will find some here.
    Thank you in advance for reading, responding and caring.
    Lisa 
    P.S. - He was in the middle of a Audio Book about S. Jobs which he really enjoyed on long drives/trips to worksites. This has been a dissapointment not to be able to finish the book.  His audio books are one of his favorite things when he drives or rides in the car.  With his impaired sight, it opens a door he never new was there.

    BobTheFisherman:
    Thank you for your response but the trouble we are having is the Samsung Galaxy we purchased for my husband is having major issues and is just out of warranty.  Both Verizon and Samsung are giving us a hard time trying to deal with any troubleshooting, replacement or any other help.  Like I said before Verizon even gave us a replacement charger that was the wrong charger which is useless to us.  It was recommended we look for an iPad/Apple product for it's reputation, reliability and numerous positive attributes that would assist my husband and his disability.
    Thanks again.

  • Packaging required for event-driven message processing

    Hi,
    Could you pls. let me know whether message packaging is required for using event-driven message processing in Integration Server (PI).
    Also can we use event-driven message processing in Integration Server (PI) for outbound HTTP adapter interface.
    Thanks.
    Best Regards,
    Gajendra.

    What is your scenario and why exactly your are looking for event-based message processing?
    Normally those are background jobs which triggers the services(inbuilt ) and makes the process designed by us to run.
    In case ofR/3 its possible to do so i.e to trigger messages based on event like incase of proxt to PI can be done through Event-based
    Rajesh

  • I am looking for Oracle Application Express develop

    I am starting a business next year 2009, If you are that person looking for a new start you can email at [email protected]

    Are you also interested in contacts to a company which can support you with ApEx-skilled employees?

  • Stuck in "Looking for Backup Disk" in Time Machine with Time Capsule

    I too am having a "Looking for Backup Disk" message going on forever . . . .
    I have the following showing in my log (which is for a backup that started almost 6 hours ago . . .)
    Starting automatic backup
    Attempting to mount network destination URL: afp://Toni%20Way;AUTH=[email protected]/Data
    Mounted network destination at mount point: /Volumes/Data using URL: afp://Toni%20Way;AUTH=[email protected]/Data
    Disk image /Volumes/Data/Toni’s iMac.sparsebundle mounted at: /Volumes/Time Machine Backups
    Backing up to: /Volumes/Time Machine Backups/Backups.backupdb
    I am not getting successful backups.  I first thought it was a problem with the WD hard drive I had so I invested in a Time Capsule thinking maybe it would work better with the Mac (i.e. Apple to Apple).  I got a few successful backups when I got the Time Machine on June 12th but none since.  I only just noticed that I wasn't having successful backups as there was no notification.  I have tried a Full Reset as per these instructions with no success: 
    http://pondini.org/TM/A4.html
    Help!

    I've successfully changed the name of the Time Capsule to "Toni TC" but still no success.  It is still sticking at Looking for Backup Disk.
    Still have a space in the name.. No spaces. No non-alphanumeric.
    Not that I think that is your problem.
    From the log the actual unit is mounted and you have everything working but not actually able to copy packets across the network.
    I have an ethernet cable running from my cable provider's router to the Time Capsule and then an ethernet cable running from the Time Capsule to the iMac.
    This is good... also turn off wireless in the computer to force connection by ethernet only.
    But when I go into Disk Utility, it isn't listed in the left hand side.
    Only the sparsebundle will list and only when it is mounted.. TC is a network drive not a local drive. It will not show up in disk utility.
    Let me suggest you erase the TC and start over.. sometimes it is the only way to get things going again.
    A4 reset of TM. http://pondini.org/TM/Troubleshooting.html
    And do a verify of the local disk.. A5.
    I would also like you to test copying a single large file to the TC.. create a new directory in the TC from finder.. and copy a single large file.. 1GB sort of size and get actual speed measurement from Activity Monitor.

  • I am looking for instructions on how to create a personalized signature at the end of email messages

    I am looking for a tutorial or instructions about how to create a signature at the end of emails....Name, contacts, disclaimer info etc...to be posted at the end of each email..?

    http://hosting.com/support/email/create-an-email-signature-in-mac-mail/

Maybe you are looking for

  • Are operating files only within Windows (C:) or are Word and Excel files ok in Documents and (C:) folders in 8.1?

    A Microsoft tech said "oh-oh" when he saw Word and Excel files, and I think other files, in Windows (C:). He said only operating files should be in that folder or a user might delete an operating file by mistake. I have Word and Excel files in both (

  • Problem launching OC4J with HSQL db settings

    jdeveloper auto-creates this xml when launching OC4J, but I get "Invalid Oracle URL specified" even though I know the connection string works elsewhere (e.g. in jdevs connection navigator). Any ides please. <?xml version = '1.0' encoding = 'windows-1

  • J2EE_ADMIN login authentication failed everyday

    Hi, I went to http://host:port/nwa and log in with j2ee_admin. it says authentication failed though we did not change the password before. I went to config tool, key storage,... to reset password for j2ee_admin and then sync it with j2ee_admin in ABA

  • Strange problem with P35 Neo

    Hi there. Got a strange problem with a computer that got a P35 Neo system board. The problem I got, is that the computer don't boot. If I reset the CMOS, I can get the computer to boot, but then it hungs on loading Vista. Then I try to repair my Vist

  • Well, we finally got one....

    Hi there! We got an MBP in today to configure for a customer (Boot Camp and our application). This notebook is the devil. There are three 6's in the serial number (no, not all together, but you get my point). This is the first notebook where we all f