How do I get the Speakable Dialog Bow to go away???

Hello,
I'm not certain what the feature is called Apple, as I must have hit a random set of keys on the key baord by mistake, but I am having a heck of a time trying to find out how to g close a speakable dialog box to close on my Mac. This is what it looks like - http://img689.imageshack.us/img689/5002/savedialogbox.png  It's the Black Box in the middle of the screen, with white lettering, and shows and speaks everything that I do.
I've gone to the System Preferences and opened the "Speef" preference and it was "Off," so that can't be it, so any other ideas would be greatly appreciated.
Thanks in advance,
SH

LOL... THANK YOU!!!!!  
It's always frustarting to hit a set of commands and get a feature and then not know the sequence to turn it off.
Thanks again... BIG sign going on over here.
Best,
SH

Similar Messages

  • How do i get the round micrphone thing to go away?

    how do you get the round micrphone thingy to go away? And i played chess and i can't reset it?

    From the Chess menu, select Preferences. Untick 'Allow Player to Speak Moves'.

  • How do I get the do not disconnect to go away?  Yep, I disconnected before I should have

    how do I get the DO NOT DISCONNECT message to clear....

    If you disconnected before your iPod came back on it could be bricked. Try resetting iPod back to factory settings but back up all your music, photos, files etc to an external or make sure you have them on your Mac before doing so.

  • How do I get the Open Dialog on Android ICS 4.0?

    Hi,
    I am using Flash CS6, Android setup, 3.0 AS
    I have a Galaxy Tab, ICS 4.0 for a device
    I can read & write a text file perfectly fine on my PC.
    But, when I upload to my Galaxy Tab 2 (7")....
    1) I get a generic dialog that displays my path (/mnt/sdcard/) ... And it also displays "Audio, Image, Video" options. It says "Download" as a diaglog title.
    I can save the file perfectly fine.
    2) When I try to open, it only displays the "Audio, Image, Video" options BUT DOES NOT allow me to open the file I saved.
    SO, HOW DO I GET A DIALOG THAT ALLOWS ME TO BROWSE TO THE FILE I SAVED??
    Here is my code...
    package com.adobe.examples
              import flash.display.Sprite;
              import flash.filesystem.*;
              import flash.events.*;
              import flash.system.Capabilities;
              import flash.text.TextFormat;
              import fl.controls.Button;
              import fl.controls.TextArea;
              //import flash.net.FileFilter;
              public class TextEditorFlash extends Sprite
                        //Fwhilton added
                        //var fileToOpen:File = new File();
                        //var txtFilter:FileFilter = new FileFilter("Text *.txt", "*.txt");
                        // The currentFile opened (and saved) by the application
                        private var currentFile:File;
                        // The FileStream object used for reading and writing the currentFile
                        private var stream:FileStream = new FileStream();
                         // The default directory
                        private var defaultDirectory:File;
                        // Whether the text data has changed (and should be saved)
                        public var dataChanged:Boolean = false;
                        public function TextEditorFlash()
                                  trace("TextEditor()");
                                  defaultDirectory = File.documentsDirectory;
                                  //Fwhilton added
                                  //defaultDirectory = File.documentsDirectory.resolvePath("testapps/");
                                  newBtn.addEventListener(MouseEvent.CLICK,newFile);
                                  openBtn.addEventListener(MouseEvent.CLICK,openFile);
                                  saveBtn.addEventListener(MouseEvent.CLICK,saveFile);
                                  saveAsBtn.addEventListener(MouseEvent.CLICK,saveAs);
                                  var tf:TextFormat = new TextFormat();
                                  tf.font = "Courier New";
                                  tf.size = "16";
                                  mainTextField.setStyle("textFormat",tf);
                        * Called when the user clicks the Open button. Opens a file chooser dialog box, in which the
                        * user selects a currentFile.
                        private function openFile(event:MouseEvent):void
                                  var fileChooser:File;
                                  if (currentFile)
                                            fileChooser = currentFile;
                                  else
                                            fileChooser = defaultDirectory;
                                  fileChooser.browseForOpen("Open");
                                  fileChooser.addEventListener(Event.SELECT, fileOpenSelected);
                        * Called when the user selects the currentFile in the FileOpenPanel control. The method passes
                        * File object pointing to the selected currentFile, and opens a FileStream object in read mode (with a FileMode
                        * setting of READ), and modify's the title of the application window based on the filename.
                        private function fileOpenSelected(event:Event):void
                                  currentFile = event.target as File;
                                  stream = new FileStream();
                                  stream.openAsync(currentFile, FileMode.READ);
                                  stream.addEventListener(Event.COMPLETE, fileReadHandler);
                                  stream.addEventListener(IOErrorEvent.IO_ERROR, readIOErrorHandler);
                                  dataChanged = false;
                                  currentFile.removeEventListener(Event.SELECT, fileOpenSelected);
                        * Called when the stream object has finished reading the data from the currentFile (in the openFile()
                        * method). This method reads the data as UTF data, converts the system-specific line ending characters
                        * in the data to the "\n" character, and displays the data in the mainTextField Text component.
                        private function fileReadHandler(event:Event):void
                                  var str:String = stream.readUTFBytes(stream.bytesAvailable);
                                  stream.close();
                                  var lineEndPattern:RegExp = new RegExp(File.lineEnding, "g");
                                  str = str.replace(lineEndPattern, "\n");
                                  mainTextField.text = str;
                                  stream.close();
                        * Called when the user clicks the "Save" button. The method sets up the stream object to point to
                        * the currentFile specified by the currentFile object, with save access. This method converts the "\r" and "\n" characters
                        * in the mainTextField.text data to the system-specific line ending character, and writes the data to the currentFile.
                        private function saveFile(event:MouseEvent = null):void
                                  if (currentFile) {
                                            if (stream != null)
                                                      stream.close();
                                            stream = new FileStream();
                                            stream.openAsync(currentFile, FileMode.WRITE);
                                            stream.addEventListener(IOErrorEvent.IO_ERROR, writeIOErrorHandler);
                                            var str:String = mainTextField.text;
                                            str = str.replace(/\r/g, "\n");
                                            str = str.replace(/\n/g, File.lineEnding);
                                            stream.writeUTFBytes(str);
                                            stream.close();
                                            dataChanged = false;
                                  else
                                            saveAs();
                        * Called when the user clicks the "Save As" button. Opens a Save As dialog box, in which the
                        * user selects a currentFile path. See the FileSavePanel.mxml currentFile.
                        private function saveAs(event:MouseEvent = null):void
                                  var fileChooser:File;
                                  if (currentFile)
                                            fileChooser = currentFile;
                                  else
                                            fileChooser = defaultDirectory;
                                  fileChooser.browseForSave("Save As");
                                  fileChooser.addEventListener(Event.SELECT, saveAsFileSelected);
                        * Called when the user selects the file path in the Save As dialog box. The method passes the selected
                        * currentFile to the File object and calls the saveFile() method, which saves the currentFile.
                        private function saveAsFileSelected(event:Event):void
                                  currentFile = event.target as File;
                                  saveFile();
                                  dataChanged = false;
                                  currentFile.removeEventListener(Event.SELECT, saveAsFileSelected);
                        * Called when the user clicks the "New" button. Initializes the state, with an undefined File object and a
                        * blank text entry field.
                        private function newFile(event:MouseEvent):void
                                  currentFile = undefined;
                                  dataChanged = false;
                                  mainTextField.text = "";
                        * Handles I/O errors that may come about when opening the currentFile.
                        private function readIOErrorHandler(event:Event):void
                                  trace("The specified currentFile cannot be opened.");
                        * Handles I/O errors that may come about when writing the currentFile.
                        private function writeIOErrorHandler(event:Event):void
                                  trace("The specified currentFile cannot be saved.");

    It is impossible with just AIR. If you do not want to user native extensions you can easily implement a simple file browser with File class.
    Try this: http://forums.adobe.com/message/4107990#4107990

  • How do I get the registration nag screen to go away permanently?

    I purchased Acrobat Pro 7 while an employee, and now that I'm retired, I have neither the money nor need to upgrade. However, I did get a W8 machine, and when I tried to install Acrobat, I needed a new link, which I received from Adobe. I downloaded and installed that software. I must have activated it, though I don't remember. The software works.
    But every time I start it, it asks me to register. I don't know how to do that with this replacement product, nor do I know how to make that nag screen disappear permanently?
    The chat support person said that I'd get the answer here.
    Cougar

    Find Acrobat.exe on your computer.  Right click the program and click 'Troubleshoot Compatibility'.  Set the compatibility to Windows XP service pack 3.  At least that seems to have worked for me.
    To help you find Acrobat.exe, you may want to download the Everything Search Engine.  A neat little program that searches your computer quickly for files by name even in hidden folders.  Available from www.voidtools.com.

  • How to get the black, talking bar to go away

    how do I get the black, talking bar to go away and how do I refresh?  Thanks

    Welcome to Apple Support Communities
    That's VoiceOver. To disable VoiceOver, press Command and F5 keys, or open System Preferences > Accessibility > VoiceOver, and disable VoiceOver

  • How can I get the "Open" and "Save As" dialog boxes to open at larger than their default size?

    How can I get the "Open" and "Save As" dialog boxes to open at larger than their default size?  I would like them to open at the size they were previously resized like they used to in previous operating systems.  They currently open at a very small size and the first colum is only a few letters wide necessitating a resize practically every time one wants to use it.  Any help would be appreciated.

    hi Prasanth,
    select werks matnr from ZVSCHDRUN into table it_plant.
    sort it_plant by matnr werks.
    select
            vbeln
            posnr
            matnr
            werks
            erdat
            kbmeng
            vrkme
            from vbap
            into table it_vbap
            for all entries in it_plant
            where matnr = it_plant-matnr and
                  werks = it_plant-werks.
    and again i have to write one more select query for vbup.
    am i right?

  • When clicking on a pdf attachment in my email I would get a dialog box asking whether to save or open file. I inadvertantly clicked Save with the 'Always do this' option checked. How can I reverse this and get the option dialog box back. Win 7 Ultimate

    How do I get the dialog box back when clicking on a pdf attachment in my email. Made the mistake of clicking save while the check box was ticked.

    From Control Panel | Programs & Features: right-click on Windows Essentials 2012, then select Repair all Windows Essentials programs.

  • How do you get the text box text properties dialog box to appear on a MAC?

    how do you get the text box text properties dialog box to appear in Adobe Reader XI on a MAC? I know windows is Ctrl-E but can't figure out what to hit for Mac.

    Right-click the toolbar and you should find it there (including the short-cut, which is probably Cmd+E).

  • How do I force the print dialog to default to Print All?

    Hi all,
    I've searched the forums for this and found several similar requests but no answers so I am posting this as a fresh post.
    I have a requirement to have the print dialog appear when printing from javascript and have it always default to Print All.  From my research, it appears that there are only two API methods to do this:
    1) Print()
    2) PrintWithDialog()
    Neither take paramters.  Both have the same description in the documentation (which seems odd in of itself).
    From our research, PrintWithDialog() appears immediately when called (even if the PDF is not yet fully loaded) but always defaults to, "Print 1 of x" unless the PDF is only 1 page.  In that case, it defaults to Print All.
    The Print() method defaults to Print All.  However, if you call it before the PDF is fully loaded, it does not show.  I have searched these forums and found many other people running into this issue.  One thread suggested to put in a timer to make sure the PDF is loaded and then call print.  This works for small PDFs but our customers could be printing thousands of pages so there is no way to know how long to make the delay.
    I tried paying for Support to answer this question and was told there were NO PAID OPTIONS for getting support on the Acrobat SDK and to come post the question here.  The Support Engineer I spoke with assured me developers read and respond to these forums.
    This is a critical issue for an important customer so any feedback is much appreciated.
    An Adobe employee (Irosenth) mentioned something about a bug being reopened in this thread (http://forums.adobe.com/message/2601148#2601148) but no bug number was ever given.  If it truly is a bug, please provide the number, description and ETA for fix.
    If there is no solution, can I get a response from Adobe that supports my research as posted above?  In other words, confirm that both the API are working as expected?
    Finally, given that it seems many people want this functionality, how do I submit an enhancement request?
    Best Regards,
    Brian

    I downloaded Reader X and the problem is still occurrring, as was reported by the originator of this thread back in November.
    Are there any parameters that need to be set for this to work?  My customer is getting very impatient with this.
    Also, since downloading Reader X the toolbar does not appear by default. It pops up when you hover over the top of the window.   How do I get the toolbar to appear by default?  (this is not nearly as important as defaulting the print dialog to Print All on mulitple page docs when using printwithdialog).

  • Given an alias created by the Finder, from the Unix prompt (e.g., in Terminal) how can I get the target of the alias?

    In my Finder windows I have numerous aliases that point mostly to other folders. When in the Terminal, these aliases present as regular files. How can I get the target of an alias so that I can perform some operation, e.g., "cd", on the target?

    This AppleScript demonstrates how to resolve the OS X alias and return a POSIX path for it
    set af to choose file
    tell application "Finder"
      if the kind of af is "alias" then
      set origFile to the POSIX path of ((original item of af) as text)
      end if
    end tell
    display dialog origFile

  • How do I get the color wheel to stop spinning?

    how do I get the color wheel to stop spinning?

    To invoke the Force Quit window, press Command-Option-Escape.
    If no joy, try holding down the Control key while you press the Eject key. This is supposed to bring up this dialog:
    If no joy there, you may have to resort to holding the Power-On key until the machine shuts off. This may leave un-repaired Directory damage, so it is a good idea to hold down the Shift key when you Restart. This invokes Safe Mode, which takes five minutes to run one pass of Disk Utility (Repair Disk), then starts with minimal extensions loaded. You will need your username and password to log in, even if you normally auto-login.
    Poke around a little, if all looks OK, you can restart in normal mode.

  • In Elements 11 how do I get the verification code needed to send files as e-mail attachments ?

    In Elements 11 how do I get the verification code to send files as e-mail attachments ?

    I’ve found it usually works best with web mail via Adobe after obtaining verification. I know some email services block bulk email completely and I’ve only tested it with Gmail which works fine. Should also work with other web mail e.g. Yahoo and Hotmail. Give it a try. Before you start it will help to check your internet security settings. If they are set to High, reduce the settings to Medium temporarily. Then follow these instructions.
    1. Log in to your mail provider on the web and add the following email to your address/contacts book.
    [email protected]
    2. Open Organizer and on the menu click:
    Edit >> Preferences >> Sharing
    3. Choose Adobe Email Service from the client dropdown menu.
    4. Add your name and email address to the fields provided and click OK
    5. Test the system (first use only)  by selecting a photo in organizer and choosing Share >> Photo Mail then click Next (Mac users should use attachments)
    6. Choose a contact then click  Next
    7. Click Next Step, then click Next - the sender verification dialog will open.
    8. Check you have spelt your email address correctly and hit the Resend E-Mail button.
    9. Go to your inbox (also check spam) and when the Adobe mailer message is received copy (Ctrl+C) the long verification code.
    10. Return to the verification dialog and paste it (Ctrl+V) into the Sender verification field and click OK. Wait for validation confirmation then click OK to continue

  • I had photoshop 11, i now have elements 13. how do i get the photos from elements 11 to elements 13 in one easy step

    I had elements 11 and I now have a new pc and elements 13. how do I get the photos from 11 ne easy step?

    When you open the File menu, you should have 19 options, including 'Manage catalogs, Ctrl+Maj+C'.
    All options should be available (not grayed out).
    Using the 'Manage catalogs' option should open a new dialog.
    In the white panel on the bottom you should find one or several catalogs found by the Organizer.
    In the upper right part, two buttons : Open and Convert.
    Click on 'Convert' which should open a new dialog allowing you to find the catalog to convert. The organizer should find most older catalogs in the list on the bottom. If you don't see your catalog to convert, you can tick the checkboxes to 'show previously converted catalogs' or to browse to their location.
    Highlight the catalog to convert and click the convert button.
    https://helpx.adobe.com/elements-organizer/using/creating-editing-catalogs.html#use_conver t_a_catalog_of_a_previous_vers…

  • I have Point, how can I get the component of this Point?

    Hi, everybody!
    Can U help me!
    I have 10 block in 1 applet. After 1 even, I kept the Point of the block, just made even. I want remove the block, which have the point. Then I use method getComponentAt() but I can't.
    Anyone tell me the way to process.
    Agains, I have the Point, how can I get the component of this Point?
    Thanks so much!

    That makes no difference, as you can still use this method with AWT.
    // parent is you main Frame or Dialog window.
    Component parent;
    // target is the AWT component that the user has clicked on.
    Component target;
    // "e" is is your click event.
    MouseEvent e;
    target = SwingUtilities.getDeepestComponentAt(parent, e.getX(), e.getY());

Maybe you are looking for

  • Theme Designer - source image location

    Hi,      I'm working on a NW740 upgrade project, and have run into what is probably a theme designer 101 problem with creating a user theme based on the sap_goldreflection theme for ABAP WD. Previously when I've worked on portal theming I have been a

  • Nautilus doesn't preview sound files

    Hi everyone. Why "preview sound files" isn't working in Gnome 2.12.2? Do you know if I need some add-on? Thanks in advance.

  • Master details Sharepoint list

    We have requirement for Master details sharepoint list as follows details list will be having multiple item for master list how can we get the id of master form since that id will be utilized to have details list item is there any sample custom web p

  • Unable to download itunes or quicktime

    I'm having some problems installing itunes and quicktime on my computer. My computer is an acer 5920g and my os is windows vista. After I download itunes and try to run it, it starts to install but then I get the following message: "Could not open ke

  • Premiere Pro CS3 Installation Fails

    I have download the Free Trial version, that fails the installation, shortly after the Setup window progess bar completes. There is a binary log file in Windows\Program Files\Common\Adobe Installers, but does not make any sense when view with a text