Can you use voice command to get map directions

Does the iphone 4 have the ability to use a voice command to get map directions----then display the map?

You need a third-party app like: TomTom or Navigon. There are others in the app store.

Similar Messages

  • Can I use Voice Commands (Speech) to control the DVD Player?

    Problem: I want to insert a DVD in the the DVD drive and use voice commands to stop, pause, play, move forward, move back, and quit the DVD Player. Is this possible? If so how would I do this?
    Thanks in advance for your help.
    Jim Minor

    You can create a speakable item. Use AppleScript Editor (Applications > Utilities > AppleScript Editor) to write the appropriate AppleScript to perform the desired action, and give it a name which is the command you want to speak. Then, make a subdirectory in the Speakable Items directory named "DVD Player" and copy your script to it. You should be able to speak the name of the script when DVD Player is in the foreground and have the script execute.
    An example script (Play.scpt):
    tell application "DVD Player"
    play dvd
    end tell
    Other commands that the DVD Player application understands:
    fast forward dvd
    pause dvd
    rewind dvd
    stop dvd
    step dvd
    go to \[ main menu / title menu / subpicture menu / audio menu / angle menu / beginning of disc \]
    press \[ up arrow key / down arrow key / left arrow key / right arrow key / enter key \]
    open VIDEO_TS
    open dvd video folder
    play next chapter
    play bookmark
    play named bookmark
    play video clip
    play named video clip
    exit clip mode
    obscure cursor
    eject dvd
    The DVD Player application also has a bunch of properties related to chapters, titles, subtitles, etc.

  • Can you use chat commands in Office Communicator - Lync

    In several other chat clients there are commands you can enter that perform various functions or actions. For example in some clients I can write
    "/me slaps you with a large trout"
    and the chat window will display:
    "c.maples slaps you with a large trout"
    Does communicator / lync have similiar features?
    Thanks,
    C.Maples

    /me confirms that lync is still lame in Microsoft Lync 2013

  • Can you use an Australian purchased ipad 3G in the USA and Canada and can you get Aussie sim card work there

    My daughter is going to the US and Canda soon and we want to get an ipad to contact.
    Can you use an ipad purchased in Australia?
    Also is it best to buy a prepaid sim card here or overthere?

    The 3G telecom in the USA is AT&T, so she will need an AT&T microSIM and then to activate a data plan from the iPad.
    http://www.wireless.att.com/cell-phone-service/accessory-details/?wtSlotClick=1- 0054JG-0-1&WT.svl=calltoaction&q_categoryid=cat2180038&q_sku=sku4530230&q_manufa cturer=&q_model=#fbid=ugXpZcaKbxs
    She can activate the data plan for a month with a bank card and then deactivate as she wishes. Hopefully AT&T will allow an international bank card.
    http://www.att.com/shop/wireless/devices/ipad.jsp
    A telecom with iPad service in Canada is Rogers;
    http://www.rogers.com/web/content/ipad-dataplans

  • Can I use voice recognition to fill in an existing template?

    Is there a way to use voice recognition to fill in blanks on an existing (self-prepared) form?  Can I prepare the blanks on the form in a way (e.g., tabs) that lets me use voice commands to move the cursor from blank to blank?  Imagine a simple list of questions.  I would like to find a way to use voice commands to move the cursor to the end of the next question once I finish dictating the answer to the previous question. 

    Even though it works fine when all of Firefox Portable is
    wrapped?
    While I am at it, do you know if SOCKS wrapping the correct term? Perhaps it is port mapping? I am unsure which is why I put it in italics.

  • Can you use the browser and search the web by utilizing a speach recognition program instead of the mouse & keyboard ?

    ''locking as a duplicate of https://support.mozilla.org/en-US/questions/972710''
    I would like to know if Mozilla's ( Firefox Browser) can integrate with and utilize a speech recognition program, I would like to have control of and be able to use all of the browsers functions while navigating the web using voice commands (only) ,instead of having to use a mouse & keyboard. If the browser does have that capability, are there any issues I need to be aware of and are there any tutorials or web pages Mozilla can suggest that will help with this.
    Thanks in advance for answering my questions and for the information forthcoming!
    Frank G

    What is this speech recoginaziom program called? I need to know if I am to help you. Thanks Nathan.

  • Can you create an index on a Map?

    I have a few questions that I can't seem to figure out nor find a viable example for. Can you create an index for a Map contained within a nested object, and if so, how would you do this? I currently have a Filter the inspects this criteria in the cache but am unable to figure out to create a usabe index for the custom filter. I'm using Coherence 3.5.2 - any help would be most appreciated. I'm not sure if/what I need to do with the SimpleMapIndex....
    Here's the basic object map below. My filter is retrieving all of the CustomerGroup objects that have a Customer in it's collection that contains the passed in Integer value in the Customer's Map. So can you create an Index on a Map (and a nested one at that) and how do you that? The index would need to be on the nested customerValues hashmap.
    class CustomerGroup
        Set<Customer> customers ;
    class Customer
        Map<Integer, CustumerValue> customerValues;
    }

    If you write a custom ValueExtractor, which you need to create an index, then you will not need a custom Filter.
    Depending on how efficient you need to be you custom extractor can use POF and not have to deserialize the entries to create the index, or it can deserialize the class, which will make the code more straight forward.
    For example, without using POF
    public class MapKeyExtractor extends EntryExtractor implements PortableObject {
        public MapKeyExtractor() {
        @Override
        public Object extractFromEntry(Map.Entry entry) {
            Set<Integer> keys = new HashSet<Integer>();
            CustomerGroup group = (CustomerGroup) entry.getValue();
            Set<Customer> customers = group.getCustomers();
            for (Customer customer : customers) {
                keys.addAll(customer.getCustomerValues().keySet());
            return keys;
        @Override
        public boolean equals(Object obj) {
            return (obj instanceof MapKeyExtractor);
        @Override
        public int hashCode() {
            return MapKeyExtractor.class.hashCode();
        @Override
        public void readExternal(PofReader in) throws IOException {
            super.readExternal(in);
        @Override
        public void writeExternal(PofWriter out) throws IOException {
            super.writeExternal(out);
    }The extractor above will return a collection of all of the Integer values in the keys of all the customerValues of all the customers in a CustomerGroup (I have guessed you might have accessor methods on the classes you posted).
    You can then use a ContainsFilter for your query. For example to get all the values from the cache where the customerValues map contains a 19 in the key...
    Set results = cache.entrySet(new ContainsFilter(new MapKeyExtractor(), 19));You could write a version of the MapKeyExtractor that uses POF and would not deserialize the values but this would be more complicated code as it would need to extract the Map from the POF stream of the value and walk down the keys and values extracting the keys. It is doable but not worth it unless you are really worried about performance of index updates.
    Discalimer I have written the code above from the top of my head so have not compiled it or tested it but it should be OK.
    JK

  • Using Voice command to call some one...

    Hello,
    On the key note presentation in June the Steve Jobbs had done he used voice command to call a person.
    How do you go about doing the set up for that. I can not seem to do it.
    Sean

    I could swear he did because he made a comment along the lines that "today's technology" ...
    I could be wrong but I can not quote his comment but I know he made a comment about it before he did it.....
    Oh well. One would think with the issue of driving and cell phone this would of been included.
    Sean

  • Can you use a 3600 for an Ethernet bridge??

    Can you use a Cisco 3600 to do a P2P bridge? Using the MAP's ethernet port  to connect to a remote LAN?  On that remote LAN can you have  lightweight APs that connect to a controller on the RAP side?

    Can you use a 3600 for an Ethernet bridge??
    http://www.cisco.com/en/US/docs/wireless/controller/7.0MR1/configuration/guide/cg_mesh.pdf
    Check - Converting Indoor Access Points to Mesh Access Points
    Ethernet bridging has to be enabled for the following two scenarios:
    1. When you want to use the mesh nodes as bridges.
    2. When you want to connect Ethernet devices such as a video camera on the MAP using its Ethernet port.
    Wireless Backhaul:
    In a Cisco wireless backhaul network, traffic can be bridged between MAPs and RAPs. This traffic can
    be from wired devices that are being bridged by the wireless mesh or CAPWAP traffic from the mesh
    access points.
    Guidelines For Using Voice on the Mesh Network
    • Voice is supported only on indoor mesh networks in release 5.2, 6.0, 7.0, and 7.0.116.0. For
    outdoors, voice is supported on a best-effort basis on a mesh infrastructure.
    other factors to note:-
    #you would be running on backhaul using A radio which is prone to DFS.
    #CAPWAP may not tolerent enough with AWPP convergence on MAP roaming.
    #CAPWAP is more latency sensitive than voice.

  • Can you use color splash on a photo that was edited in black and white or do you have to mask the photo before editing it in black and white?

    can you use color splash on a photo that was edited in black and white or do you have to mask the photo before editing it in black and white?

    I think you are asking whether it makes an difference whether you create the mask before or after you edit the black & white version. The answer is that since the color version and the b&w version are on different layers (as seen here), it makes no difference when you edit the b&w version.
    Also consider another technique that separates the color element in the image. Here, the area surrounding the color image is a line interpretation of the scene, similar to a Tone Line Conversion, a technique that was created with film many years ago.  (I am so old,  I still remember how it was done.) This is how to get the result similar to the one shown above but with a line illustration created in Photoshop replacing the b&w layer version:
    1. Open an image. This technique is more successful if the image you select has many clearly defined edges.
    2. Make a duplicate layer. (Cmd+J). It becomes Layer 1
    3. With Layer 1 chosen, go to Filter>Blur>Smart Blur. Set the Quality to High and the Mode to Edge Only. The default settings are Radius 3.0, Threshold 25.0. To increase the amount of detail in the line conversion, raise the Radius setting. Use the white-on-black illustration within Smart Blur as a guide. Then click OK.
    4. The line illustration will appear as white lines in a black background. To change this to black-on-white, choose Image>Adjustments>Invert.
    5. Insert a new layer below Layer 1. It will serve as the background for the line illustration. To do this, hold down the Command key while clicking on the New Layer symbol at the bottom of the Layers panel. It is the second symbol from the right. It will become Layer 2.
    6. Fill this new layer with a light color. To do this, click on the Foreground Color symbol in the Tools section. It will open the Color Picker. Choose a light color and click OK.
    7. Choose Edit>Fill. Use: Foreground Color.  Mode: Normal. Opacity: 100% and click OK. Layer 2 will fill with the color. Although it will not appear in the image because Layer 1 is above it, a quick check of the Layers panel will confirm that the color you chose has filled Layer 2.
    8. Remove the white area from in Layer 1. Go to Layer 1. Choose the Magic Wand tool. Uncheck the Contiguous box in the Options Bar and click in a white area of the image. Next, click the Delete key.  Choose Select>Deselect to remove the marching ants. 
    9. (Optional)  You may now change the line illustration in Layer 1 from black to a dark color compatible with the color in Layer 2. To choose the color, click on the Foreground Color symbol in the Tools section. It will open the Color Picker. Choose a suitable dark color and click OK. While in Layer 1, click the first symbol next to the word  Lock:  in the Layers panel above Layer 1. This will prevent the dark color from appearing in the blank area of Layer 1. Choose Edit>Fill. Use: Foreground Color.  Mode: Normal. Opacity: 100% and click OK. The black lines will change to the dark color you chose.
    10. Combine Layers1 and 2: While in Layer 1, choose Layer>Merge Down. The layers are combined into a single layer called Layer 2.
    11.  Add a black mask to Layer 2 by clicking on the Mask symbol at the bottom of the Layers panel. It is the symbol to the right of the fx symbol. Where you would like full color objects to appear within the line rendition, paint in white on the black mask with a brush set to either soft-edge or hard-edge as the illustration and your taste dictate.  

  • Can you use 2 Thunderbolt Displays with Windows 7/Bootcamp on a Early 2011 Macbook pro?

    Can you use 2 Thunderbolt Displays with Windows 7/Bootcamp on a Early 2011 Macbook pro?
    I have 2 and cannot seem to get them to work?

    Can you use 2 Thunderbolt Displays with Windows 7/Bootcamp on a Early 2011 Macbook pro?
    I have 2 and cannot seem to get them to work?

  • Can you use an itunes gift card to purchase ibooks?

    Can you use an itunes gift card to purchase ibooks on your iphone? If yes, how? When I attempt to purchase a book it automatically appears that it will automatically charge my stored card.
    Thanks!

    To use an iTune Gift Card to buy books...
    Open iTunes on your computer and click on the iTunes Store.
    You'll need to be signed in...
    Click on the little House icon in the dark gray bar across the top. (or Shift+Command+H)
    On the right side of the page under Quick Links click Redeem and enter your code.
    Then it will show your credit balance in the dark gray bar across the top next to your account name to let you know how much you have to spend.
    Then as you buy books, it'll deduct from the credit balanace.
    There is a distinction between, iTunes Gift Card and Apple Gift Card.
    Apple Gift Card: can be used to purchase Apple hardware and accessories at any Apple Retail Store, the Apple Online Store...
    iTunes Gift Card: To give music, movies, TV shows, apps, books, or anything on the iTunes Store, the App Store, the iBooks Store or the Mac App Store, select an iTunes Gift Card

  • HT1766 Can you use an external hard drive to back up my movies in iTunes but still be able to access them or is there a device so I don't have to use a pc ??

    Can you use an external hard drive to back up my movies in iTunes but still be able to access them or is there a device so I don't have to use a pc ??

    You can store them on a separate hard drive, you don't need to keep them on your laptop's hard drive. On your computer's iTunes on the Advanced tab in Edit > Preferences there is a 'copy files to iTunes media file when adding to library' tickbox - if you untick that, you should be able to copy the films to a separate drive and add them back to your iTunes library (File > Add To Library) and it should then point to them on that separate drive and not copy them to your hard drive. When you are happy that it is what is happening and that they are safely on your external drive you can delete the films from your laptop's hard drive.
    If you plug the external drive into a different USB port next time (assuming that your laptop has more than one) then it might get a different drive letter, so you might need to always use it with the same port.

  • Can you use a Ethernet hard drive on a airpot express

    Can you use a ethernet hard disk on a airport express?
    such as this one?
    http://www.currys.co.uk:80/martprd/store/curpage.jsp?BV_SessionID=@@@@1258649623.1206555836@@@@&BVEngineID=cccdadedjieihldcflgceggdhhmdgmj.0&page=Accessory&sku=306727

    More than likely this is NOT possible since most Belkin routers are NOT compatible with Apple's WDS.
    However if you are using a Belkin F5D7230-4 or F5D7231 you might be able to get it to work. You need to configure the Belkin and the AirPort Express (AX) to connect wirelessly using WDS. Only then is the AX's Ethernet port enabled.

  • Can I use short commands in CCNA exam

    Can I use short commands in CCNA exam
    for example
    “conf t” instead of “configure terminal”

    Sim questions are always answered by configuring
    something!
    The Exam Engine grades the running config, not the
    startup config
    Before exam day …
    Practice as much as you can (real gear, simulators, sample
    tests, read every configuration in books, repeat labs while in
    class, etc.)
    Use multiple sources for practice/review of configurations
    Exam day …
    Do what you can—partial credit!!!
    Start with “show running-config”
    There are no style points!
    You can use the short version of commands on the exam.

Maybe you are looking for

  • BODS 3.1 : How to trigger an email alert for the jobs on BODS server ?

    Hi All. I have this request. BODS 3.1 : How to trigger an email alert for the jobs on BODS server ? We have jobs scheduled on BODS running smoothly and absolutely fine. But to check, i am logging into the admin console and check for the jobs status.

  • How do I fix my IMAP email bug?

    I just tried to switch my email accounts from POP to IMAP. I created new IMAP accounts and then deactivated the POP accounts (this may have been the wrong order to do this in). Mail is now confused and deleting all of my email. If I send an email to

  • Macbook won't recognise maximum resolution of 32" Panasonic HDTV

    My white Macbook (2007, 2.13GHz, 2GB RAM) will only output 1400x1050 to my Full HD HDTV (a Panasonic TH-32LZ80, Japanese model). Everything looks stretched... I'd like to use it as I intended at 1920x1080! I tried messing with SwitchresX in a novice

  • Way to mass change cost centre in positions

    Hi Experts We have a scenario, where the client i srequired to change the cost centre for multiple positions. Is there any report by which this can be done at one go. Regards Saurav

  • Could not connect to store

    Everytime I try to log into to the store I get error "iTunes could not connect to the music store. The network connection was reset." And this account was set to be able to set up on two computers. It works on one but not this one.