Empty dialog boxes and missing text in tools

Acrobat 10.1.8 - Adobe Creative Suite Standard

Has several dialog boxes have become empty and fill the entire screen, for example the box that appears when a scan is complete.  In addition, when the tools are displayed (and the buttons on the toolbar for the tools are not there anymore) the icons but not the text.

I guess it's either a police problem - maybe some fonts used by Acrobat have been deleted - or I have to download the prgoramme and reinstal it.  But I can't find a download site for Acrobat 10.  There is no problem with the other Creative Suite programs.

What should do?

Make sure that you have the complete Segoe UI font family. These aren't the Adobe fonts, but essential Windows fonts.

Tags: Acrobat

Similar Questions

  • Free trial on Mac produces the empty dialog box

    I downloaded a free trial of Acrobat DC specifically to export text in Word.  CD player have been run successfully after that it has been installed.  But when I go to the Acrobat tools section and open the export function it will allow me to select the export document but the dialog box that appears once I selected 'Export' is totally empty.  The same thing happens if I am in a document and select "Save as", a totally empty dialog box appears and you are unable to select a location and proceed.  Anyone have any ideas?

    One must convert the text in a pdf document to Word for important revisions on a regular basis and have desperately needed an easy to use tool that eliminates a lot of time to shaped text after have exported them.

    iMac Intel Core i5 2.5 GHz

    Word for Mac 2008

    Safari 9.0.3

    Hi nicolej78674742,

    Do it me know the point exact version of Acrobat DC & operating system installed on your Mac?

    Make sure that Acrobat DC are updated to the latest version Release Notes | Adobe Acrobat, Reader.

    To save as a problem, try the troubleshooting steps below: -.

    The default "Save as" dialog Acrobat DC is different from the dialogue box you had in earlier versions of Acrobat, it also allows you to record in the clouds and previous locations that you saved the files. It is possible that when Acrobat tries to connect to the 'cloud', it runs into problems. You can try to disable this feature to see if this brings your backup in the back of the box: open Acrobat Preferences, then go to the "General" category and uncheck "show the online storage when you save files:

    Kind regards
    Nicos

  • app.execDialog returns an empty dialog box?

    Hello

    I had this problem for awhile now. I want to open my box customized to the high right after that an alert appears. I did a 'ok' button that calls the dialog box, and I had to insert the code of the complete dialog box in the button using JavaScript 'run '. If I simply app.execDialog the pop dialog box - up would be as expected but all selection fields would be empty. After playing, I gave up and inserted the entire code in the button and it works perfectly. Now, I need to use the app.execDialog again because I have an app.alert which is displayed only if some parts are picked. If the user selects these choices the app.alert appears and informs the user that they cannot choose those and go back and select again which is where I set the app.execDialog to. When you click 'OK' the app.alert to return to the dialog box, it returns to its position and the static text is there and the clusters and windows pop up, but there's absolutely nothing in the popups themselves. Is there a way to get around this? I searched on google and in this forum for a bit and asked my friend a few weeks ago, when it was still there and we found an answer on how to solve this problem anywhere. I can insert an example dropbox program as well. Thank you! I hope this has been descriptive enough!

    No, it should be:

    function getSection1() {}

    var Section1 = {}

    definition of the dialog box

    }

    return the Section1;

    }

  • Leave the dialog box change the text display/display

    I have a dialog box that is created with some text objects attached to its buttons. The user can make choices for each one, press OK, and asked of their choice. What I would like is for the buttons to the user in the text, so that they can see it in the context as they decide (that's the only reason why they are buttons; otherwise, they would be static text). I know how to handle this with a palette, but I wonder if there is a way to do it with a dialog box. With the help of a palette for all this seems unfair; I really don't want users to be able to make changes to the document, while the palette is open, and I don't want to change anything in the document until the user clicks OK. It is a dialogue with a palette as oddity, really.

    The problem is that. showText() and setting the activePage throw them the error "Cannot process the request because a modal dialog box or the alert is active." I tried to adjust the dialog box to .the = false or .visible = false, but it has no effect. Is it just impossible? This feature, change the view but not the content, seems to live in a grey zone between the way in which the work of dialog boxes and palettes of way work, so I don't know if I'm just a useless way. Any idea would be appreciated.

    Here's a code example to illustrate what I'm doing:

    #target indesign
    
    
    main();
    
    
    function main(){
        if (app.documents.length == 0){createTestDoc();}
        runDialog();
    }
    
    
    function createTestDoc(){
        //create a test document
        var myDocPre = app.documentPresets.add({name: "testPre", createPrimaryTextFrame: true, pagesPerDocument: 5});
        var myDoc = app.documents.add(true, myDocPre);
        var myPSty = myDoc.paragraphStyles.add({name: "newPageSty", startParagraph: StartParagraph.NEXT_PAGE});
        var myCSty = myDoc.characterStyles.add({name: "CSty", underline: true});
    
    
        myDoc.textFrames[0].contents = "1\r2\r3\r4\r5";
        myDoc.textFrames[0].texts.everyItem().appliedParagraphStyle = myPSty;
    
    
        app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
        app.findTextPreferences.findWhat = "^9";
        app.changeTextPreferences.appliedCharacterStyle = myCSty;
        myDoc.changeText();
    
    
        myDocPre.remove();
    }
    
    
    function runDialog(){
        //find text with a particular character style and send that text to my dialog creation function.
        var myDoc = app.activeDocument;
        var myCSty = myDoc.characterStyles.itemByName("CSty");
        if (myCSty.isValid){
            app.findTextPreferences = app.changeTextPreferences = NothingEnum.NOTHING;
            app.findTextPreferences.appliedCharacterStyle = myCSty;
            var myResults = myDoc.findText();
            myDialog(myResults);
        }
    }
    
    
    function myDialog(textRngs){
        //create the dialog.
        var myWin = new Window("dialog", "Test Dialog", undefined);
        var mainGroup = myWin.add("group");
        mainGroup.orientation = "column";
        //each text range gets a row.
        for (var i = 0; i < textRngs.length; i++){
            var myTextRng = textRngs[i];
            var myRow = mainGroup.add("group");
            myRow.orientation = "row";
            var myBut = myRow.add("button", undefined, myTextRng.contents);
            //attaches the text object to the button.
            myBut.targetObject = myTextRng;
            //does nothing - just a reminder that the actual dialog will do something at the end based on the info entered.
            myRow.add("editText");
            
            myBut.onClick = function(){
                //this is what I do when I want this functionality within a palette. Selects the text so that it can be seen in context.
                if (!(this.targetObject.hasOwnProperty("select") && this.targetObject.hasOwnProperty("showText"))) {}
                else{
                    this.targetObject.showText();
                    this.targetObject.select();
                    
                    //OR
                    //tried this as an alternative, but setting myWin.visible does nothing.
                    //myWin.visible = false;
                    //myDoc.layoutWindows[0].activePage = this.targetObject.parentTextFrames[0].parentPage;
                    //myWin.visible = true;
                }
            }        
        }
        var OKGrp = myWin.add("group");
        var OKBut = OKGrp.add("button", undefined, "OK");
        
        OKBut.onClick = function(){
            //do something
            myWin.close();
        }
        myWin.show();
    }
    

    You have no choice: If you want the script to interact with the text that you will need to use a palette.

    P.

  • Can't see anything in dialog boxes and layer/tool names are missing. Help!

    Adobe Help.jpg


    I noticed that after updating to Photoshop 2015. Since then, I have uninstalled re-installed via creative cloud, 2014 and 2015 but still having the same issue.


    I don't see any options in the pop up dialog boxes (new image, the image size, curves, layer options etc...). I also can't name/Rename layers and can not see the tool names. Before the update of 2015, I've been on Photoshop 2014 for a good half a year with no problems so I don't think it's a problem with my operating system or laptop. Any ideas or suggestions would be greatly appreciated!

    This could be. They have revamped the user interface in 2015, so if you receive just with him, I guess, but since you get it with 2014 also, it could be something the OS.

  • The cancellation of the 'file' dialog box and handle errors caused by the empty path that makes the DB connection

    Hi guys.

    I developed a VI that connects to the database reads the names of tables, columns of the selected table, etc. It works well as I want to.

    However, I have problem with identifying the UDL file with function of dialog 'file' use in a structure of the event that is triggered when the button 'Open' value is changed. It also works well, when I choose the UDL file, but the problem is when I cancel it and I get the error 43.

    I tried to deal with this problem with a "error handler" function to clear the error 43 but the next errors that are associated with the database conncetion appeared. The reason is, when file dialog is cancelled, an empty path passes by reference of connection and I can't start the while loop where are the key codes. I also used a box Structure connected to "Cancelled" with 'DB connection tool' in case of real and connection the reference connection for the while loop, but I get the same result.

    I want to apply for work as: start to push the button "Open" and select the file UDL, the loop run to establish the connections database, if not with the cancellation of the file dialog box, the application waits by pushing the button open and select the UDL file again.

    Thanks a lot for your help in advance.

    Hi lman,.

    start to push the button "Open" and select the file UDL, the loop run to establish the connections database, if not with the cancellation of the file dialog box, the application waits by pushing the button open and select the UDL file again.

    Some pseudocode, easy to implement:

    WHILE
    
      onevent(OPEN button)
        FileDialog
    
      IF file selected THEN
        open database
        do calculations
      ELSE
        do nothing
      ENDIF
    
    WEND
    

    What is your problem with the help of loops and structures of the case?

  • Tower or disable Windows features displays the empty dialog box

    I go to control panel > programs and features and click then on "Turn Windows features on or off". I get called "Windows features" dialog box that says "Please Wait". After 45 seconds, this dialog box becomes empty and nothing is displayed.

    I ran the twice System File Checker, but it shows no problem. I did repair Startup (by pressing F8 key so that Vista boots) but the problem persists.

    As suggested on some websites of support, at the command prompt, I have ran reg delete HKLM\COMPONENTS /v StoreDirty but had "error: the system was unable to find the specified registry or the value key.

    I tried http://support.microsoft.com/kb/931712 and it's of no use to me.

    I can't do a system restore I don't know since when this problem started can be 1 month back or can be 6 months because previously I had no need to turn on the features of vista as an option.

    I use a stand-alone HP laptop (Intel Core 2 Duo 2.0 Ghz) with Vista home premium pre-installed, and I also installed SP1. Please do not suggest format me my laptop and do a fresh install of vista that HP never gave me the operating system DVD.

    What should I do now? Help, please!

    Hey Anshul Rastogi,

    Thank you for your response.

    You are able to run updates on your system?

    If Yes please make sure you have all the updates installed on your system.

    Please see the following article to guide you through some troubleshooting steps: http://support.microsoft.com/kb/934538

    Please perform a system update and also walk through the troubleshooting steps in the above article and let us know if any of the two solves your problem then that otherwise we can take the next step and find a solution for you. The next step is to restore your system back a month to see if this is useful, and if not then do a restore of the system to the next restore until you find one that allows your system to the function you are eager to point.

    Robyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • How to validate and save the values to a combo box and two text boxes in flex4 mxml application with as3

    helllo all,.

    I'm working on the application web flex4 with as3.

    I have a doubt, I've created a mxml it has two text boxes, except the button and a combo box that is has two option as a percentage and the amount.

    my needs are I gave here.

    need 1: when I choose option amount that two text boxes does not have to be editable.when I select text tat box two percentage option will be editable.

    need 2: when I select the percentage in combox option and two text boxes are empty, and then click the button Save-> I want to display warning msg

    need 3: when I select the option amount combox and the two boxes are emptu click the button Save-> I don't want any warning messages.

    How to validate it and how to write backup for this function.

    any suggession or extract code is welcome.

    Thanks in advance,

    B.Venkatesan

    Looks like you are trying to do too much at once. Try to hang the events correctly

    The close event of the comboBox can do something like this

    protected function toggleTextEditing(event:DropDownEvent):void

    {

    If (this.optionCmb.selectedItem.label is "Percentage")

    {

    This.Text1.editable = true;

    This.Text2.editable = true;

    }

    Else if (this.optionCmb.selectedItem.label == "Number")

    {

    This.Text1.editable = false;

    This.Text2.editable = false;

    }

    }

    The button's click event can do something like

    protected function save(event:MouseEvent):void

    {

    If (this.optionCmb.selectedItem.label is "Percentage")

    {

    If (this.text1.text == "" & this.text2.text == "")

    {

    Alert.Show ("text is empty");

    return;

    }

    on the other

    {

    }

    }

    Else if (this.optionCmb.selectedItem.label == "Number")

    {

    }

    }

    If you can put in your entire code, maybe I can have a look to see if I can find something wrong with that.

    -Pramod

    http://www.flexmycode.com

  • multiple boxes and outString text entry



    I have a box of text that the user types his name in. He clicks on a button, and the name is moved to a new box in the scene, where a happy birthday message also.
    Name of the instance of the first box tb1, name of the instance of the second box is tb2.

    So far, this is the code:
    btn_enter.onPress = function() {}
    outString = 'Happy Birthday' + inString;

    What I have to do is to have another user to type their name in the first box. After their name by clicking on the button will move to the 2nd box and the name that has been in the 2nd box has to go to a third area, so it won't disappear from the screen. How to approach the issue?
    Create dynamic text boxes? Or input boxes more? What I am doing does not (text in motion, in box 2, box 3) so I don't know what to do next...
    Any suggestions are greatly appreciated!
    Thank you.


    I have the solution and wanted to post it in case others encounter this problem. It was given to me by a poster named NumbFinger, another site. It works perfectly!

    table that will store the user names
    var users: Array = new Array();
    variable coming out the text input field
    var newuser:String;
    inputName.text = "Enter name here";
    Fix function to the button named inputButton addUser
    inputButton.addEventListener (MouseEvent.CLICK, addUser);
    function addUser(Event:MouseEvent) {}
    Download the textfield text named inputName
    newuser = String (inputName.text);
    If users matrix is not empty, add the newuser to the front of the table
    {if(Users.Length>0)}
    Users.splice (0,0,newuser);
    If it is empty, just add the first value in the table
    } else {}
    Users.push (newuser);
    }
    If values exist in the table, set each textfield (named User1, User2 and user3) equal to the correct value
    if(Users.Length>0) {user1.text = users [0] ;} else {user1.text = ' ' ;}}}
    if(Users.Length>1) {user2.text = users [1] ;} else {user2.text = ' ' ;}}}
    if(Users.Length>2) {user3.text = users [2] ;} else {user3.text = ' ' ;}}}
    }

  • HP Pavilion g6-2330dx Notebook: keep displaying the "Windows Installer" dialog box and pressing OK button to restart over and over again

    Hello

    I tried to update my laptop Win8 to Win10, but before that Win 8 must be upgraded to Win8.1 then Win10. Unfortunately, I encountered the problem after you install the free upgrade to WIn10.

    I decided to use the system recovery and the source is from my USB.  (I created the USB key recovery).  The restoration was completed and started making configuration suddenly my laptop just because of the excessive heat caused my laptop stop does not complete the installation of windows 8 and finished to get the dialog box of "Windows Installer".

    I inserted the USB key, but it seems that its not reading. I tried F2 - mode of the system, but it only shows the Bios and other tests not the usual display of F2.  I haven't tried F11 and same thing no chance.

    My question is, how do I make my laptop back to the operating mode as the way to reinstall the entire operating system and HP Recovery Manager or HP configurations.

    Do I need to buy a CD of HP recovery my laptop?

    I have HP reactions appreaciate or someone who is ready to help and assist.

    Thank you in advance.

    Screen of the image below:

    Hi there @KierV,

    Thank you for visiting the Forums HP's Support and welcome! It is an excellent site to find answers and ask questions. I read your post on the Forums of HP Support. I understand that you had initially a question of upgrading Windows 10. After the upgrade, you have tried to restore on Windows 8 (previous version), and now you have issues going back.

    I did some research for you. I'll provide you with some troubleshooting documents that I had found.

    The first document is called a troubleshooting (Windows 8) HP system recovery problems. If this does not work, please follow this document called recover your computer from a USB flash drive. Please follow the troubleshooting steps in this document to see if you can get the USB recovery media you created to operate.

    If the USB key that you created still doesn't work after you troubleshoot, you can either you make on the Order Recovery Media-CD/DVD/USB and drivers HP Pavilion Notebook PC g6-2330dx Page or you can use the following link to create yourself a file number, then give us a call:

    Step 1. Open the link: www.hp.com/contacthp/

    Step 2. Enter the product number or select Auto detection
    Step 3. Scroll up to "still need help? Fill out the form to select your contact options.
    Step 4. Scroll down and click on: contact HP options - click Get phone number

    File number and phone number are displayed.

    They will be happy to help you immediately.

    If you want to try to restore Windows 8, Windows 8.1 upgrade and then upgrade to Windows 10 once again, please read this document called upgrade to Windows 10.

    I hope this helps!

    Have a great day!

  • Order of execution for explicit file dialog boxes and query the user input dialogue

    Hello

    In my VI I use 1 and 2 express file dialog boxes prompt the user for input dialogue box. Y at - it any easy way to determine an order of exuction for these express dialog boxes? Or I have to use screws to notify?

    In fact, I just need the input of fo dialogue to prompt the user to be the first.

    Thanks for the tips!

    Martin

    Like most of the functions, the flow of execution can be set by plugging the error / mistake on clusters.

  • Show progress dialog box and continue a process in the background.

    Hi all

    I need ro register a user on my server, causing Web service calls and some lenthy process.

    During this process of recording in the background, I want to show the user a dialog of progress with just a Cancel button.

    Once my process is complete, the dialog box needs to disapper.

    Is this possible?

    I looked in the dialog system progress, but it seems he needs user interaction., an OK button.

    I want just a Cancel button and my registration process going on in the background.

    Help, please!

    You can use a https://developer.blackberry.com/native/reference/cascades/bb__cascades__progressindicator.html and a standard button.
    Or a SystemProgressDialog where you use only the button cancel.

  • Dialog box and anti-pop

    I'm developing a blackberry app in which I need to POP from the screen on the basis of a user; s choice via a dialog box.

    While I've used without success the syntax is the following:

    D = new dialog box dialog box (Dialog.D_OK, "the record updated successfully", Dialog.D_OK, null, 0 ");

    If (d.getSelectedValue () == Dialog.D_OK) {}
    UiApplication.getUiApplication () .popScreen (homeScreen).
    }

    homeScreen is the instance of the form, which is declared and defined in the current class. I also tried to "this". The screen appears when I clicked OK.

    Thanks in advance.

    I agree with Simon.

    InvokeLater Code sample

    UiApplication application = UiApplication.getUiApplication();
    application.invokeLater( new Runnable() {
      public void run() {
         //pop your screen in here
      }
    });
    
  • Dialog boxes and message disappear in the framework programmes

    I use Windows 7 Professional 64-bit. For some reason, the dialog boxes that I invoke only stay on top for a few seconds. They disappear then in the programs, and if I have several programs open, I end up having minimize allow them to access the dialog box. This must be controlled by a few settings, but I can't find and the help of files were not useful.

    Any help is appreciated.

    Ken

    Hey, splashing,

    I think that if I were you, the first thing I would try is remove my graphics driver and install the latest version of the manufacturer.  Especially since it has the behavior you describe here.
    However, until you do this, just check to ensure that you do not have a second monitor enabled - perhaps dialog box shows off the screen.  Right-click on your desktop, choose the resolution, then make sure that there is no set additional monitors.
  • confirm the dialog box and to redirect the page when a button is click

    Try to cancel a button would pop up a confirmation dialog box if ok redirect as 1 page (homepage)

    I tried to copy the code
    JavaScript:apex.confirm ("are you sure you want to cancel ', 'CANCEL'");

    but im having a hard time finding how to redirect the page.

    I guess you get the page shown.

    If so, then create a branch with a Condition where ask = CANCEL and go to the redirect page to. Make sure you to another branch does not exist with a lower sequence that would fire until this new branch may trigger.

    Be sure to mark answered questions if in fact they are.

    Published by: Bob37 on January 18, 2012 09:48

Maybe you are looking for