Photoshop crashes with the dialog box open to 8.1 Windows

I just upgraded Windows 8.0 for Windows 8.1. I have Photoshop CC, I also Photoshop Elements installed. On occasion, CC of Photoshop crashes when you use the open dialog box. It blocks and then explore. The only way to solve it is to restart the PC.

Has anyone seen this behavior. I have the newspaper now.

Thank you

Bill Byrnes

Yes, it is a dialogue of BONE, but Photoshop does not display icon or image - that is, until the BONE and shell extensions, that you have added.

Most likely one of your shell extensions (to provide icons) has a bug.

Tags: Photoshop

Similar Questions

  • How can I configure the dialog box open to show details by default?

    By default, the open dialog box always opens in list view. I want that it is displayed in the details view and I want to rearrange the columns as well.

    Is it possible to change the default layout of the open dialog boxes in Windows? I expected to work like the Windows Explorer, but it does not work.

    It should do, in fact.  I just tested here with Notepad.

    1. Open Notepad and click file/open
    2. Change the style or the size of the icons (I put it "Extra large icons")
    3. Clicked on cancel
    4. File/open again and I have observed that the icons were always great like last time.  I changed them will be list.
    5. I closed and opened the dialog box "Open" once more and has pointed out that the icons are still in list view.

    Given this test, I think that it must be based on the program that you are using.

  • [JS CS5] problem with memory leak possible with the dialog box in the event handler

    Hello

    I'm having a very difficult problem.

    I am attaching a script in a handler for a menu item, by using an installation script menu that I wrote based on one by Marc Autret. My version of the script menu installation attach a bunch of event handlers at the same time, to the actions of different menu.

    What is the event handler, with that I have a problem is to prompt the user for a URL and then applies the URL as a hyperlink to the text selection, with our house style for the way in which the URL should look like.

    The problem is the following:

    1. all other installed menu actions work very well, except for this one.

    2. the addition of URL script works fine, when you run it directly from the script menu.

    3. the combination of #1 and #2 (using the script to add URL by function as an event handler in the Edit menu) blocks to InDesign. But it is only after the addition of URL script has finished and done what it was supposed to do!

    4. when I comment on the section of the script URL adding user input, so that instead of saying

    userInput = myDisplayDialog();
    

    It is said

    userInput = "http://thisworks.com";   // userInput = myDisplayDialog();
    

    It works well as an event handler.

    So obviously a problem with the dialog box, but only when adding URL script is executed as an event handler. My first guess is that this is some kind of memory leak, but I think I am following the model of. destroy() the way I saw it elsewhere.

    Someone knows something like that before?

    I can provide all relevant if necessary scripts, but they are quite complicated. The most important of them is the input of the user function. Here it is:

    var myDisplayDialog = function( defaultText ) {
      
        var defaultText = defaultText || "";
        
        var myDialog = app.dialogs.add({
            name: "Type in a URL"
        });
        
        var myOuterColumns = [];
        var myInnerColumns = [];
        var myOuterRows = [];
        var myBorderPanels = [];
        var myTextEditboxes = [];
        var myInput;
        
        myOuterColumns[0] = myDialog.dialogColumns.add();
        myOuterRows[0] = myOuterColumns[0].dialogRows.add();
    
    
        myBorderPanels[0] = myOuterRows[0].borderPanels.add();
        myInnerColumns[0] = myBorderPanels[0].dialogColumns.add();
        myInnerColumns[0].staticTexts.add({
            staticLabel: "URL:"
        });
        
        myInnerColumns[1] = myBorderPanels[0].dialogColumns.add();
            
        myTextEditboxes[0] = myInnerColumns[1].textEditboxes.add({
             minWidth: 300,
             editContents: defaultText ? defaultText : "http://"
        });
        
        var myResult = myDialog.show();
        var myInput = myTextEditboxes[0].editContents;
        
        myDialog.destroy();
    
        if (myResult == false) {
              exit();
        }
        
        return myInput;
    
    }
    
    

    Hi Richard,

    Unfortunately, there is no guarantee that the ScriptUI longer work.

    Thake a peek here: http://forums.adobe.com/message/2881364

    --

    Marijan (tomaxxi)

    http://tomaxxi.com

  • Problem with the dialog box displayed when the RadioButton is selected.

    It is an application with 3 buttons button1, radio 2 and output key that uses System.exit (0)
    The problem is with the dialogs first two buttons

    1. I open the application

    2 Select a radiobutton, I get a dialog box, I click 'ok', dialog will, that's fine.

    3. I choose an another radiobutton button1 or button2, I get the corresponding dialog, BUT know I have to click 'ok' twice to keep it alive.

    I don't know what could be the problem, here is the code:

    package com.thinkingblackberry;
    import net.rim.device.api.system.Display;
    import net.rim.device.api.ui.Color;
    import net.rim.device.api.ui.DrawStyle;
    import net.rim.device.api.ui.Field;
    import net.rim.device.api.ui.FieldChangeListener;
    import net.rim.device.api.ui.Graphics;
    import net.rim.device.api.ui.component.ButtonField;
    import net.rim.device.api.ui.component.Dialog;
    import net.rim.device.api.ui.component.LabelField;
    import net.rim.device.api.ui.component.PasswordEditField;
    import net.rim.device.api.ui.component.RadioButtonField;
    import net.rim.device.api.ui.component.RadioButtonGroup;
    import net.rim.device.api.ui.component.RichTextField;
    import net.rim.device.api.ui.component.Status;
    import net.rim.device.api.ui.container.MainScreen;
    import net.rim.device.api.ui.container.VerticalFieldManager;
    import net.rim.device.api.ui.component.PasswordEditField;
    
    public class HelloWorldScreen1 extends MainScreen implements FieldChangeListener, DrawStyle {
    
        protected static final int RED = 0;
        MButtons fullscreen;
        //protected RadioButtonGroup rbGroup= new RadioButtonGroup();
        public HelloWorldScreen1() {
    
            final RadioButtonGroup rbGroup=new RadioButtonGroup();
    
            setTitle("Application");
    
            RadioButtonField rbField= new RadioButtonField("RadioB1"){
    
                protected void paint(Graphics g){
                    g.setColor(Color.ROSYBROWN);
                    super.paint(g);
                }
            };
            RadioButtonField rbField2= new RadioButtonField("RadioB2"){
                protected void paint(Graphics g){
                    g.setColor(Color.SIENNA);
                    super.paint(g);
                }
            };
            RadioButtonField rbExit=new RadioButtonField("Exit"){
                protected void paint(Graphics g){
                    g.setColor(Color.DARKSLATEBLUE);
                    super.paint(g);
                }
            };;
            rbGroup.add(rbField);
            rbGroup.add(rbField2);
            rbGroup.add(rbExit);
            add(rbField);
            add(rbField2);
            add(rbExit);
    
            rbGroup.setChangeListener(new FieldChangeListener() {
                public void fieldChanged(Field field, int context) {
                if (rbGroup.getSelectedIndex() == 0) {
                    Dialog.inform( ""+rbGroup.getSelectedIndex());
    
                }
                else if (rbGroup.getSelectedIndex() == 1) {
                    Dialog.inform( ""+rbGroup.getSelectedIndex());
                }
                else if(rbGroup.getSelectedIndex()==2){
    
                    System.exit(0);
                }
    
                }
            });
    
        }
    
        public HelloWorldScreen1(long arg0) {
            super(arg0);
        }
    
        public void fieldChanged(Field field, int context) {
    
        }
    
    }
    

    I guess the event changed field is called twice, once deselection button1 and once to select button2. you pay your processing logic to account for this.

  • Area of the dialog box open in Apex 5

    Apex 5.0

    Firefox

    I'm playing with Apex 5 and I wanted to open a dialogue on the click of a button

    Created a region with a region called dialogue region dialog box template

    Created a button called OPEN

    Created a dynamic of Action

    Event: click on

    Selection type: button

    Button: OPEN

    Action: show

    Selection type: region

    Region: Region of dialogue

    When I open the page in the area of the dialog box is not displayed as expected.

    When I click the button nothing happens

    Gus

    Do not know if Oracle people want the articles published here on 5 APEX, you COULD add this to their comments that you can access in your workspace...

    Thank you

    Tony Miller
    Software LuvMuffin
    Ruckersville, WILL

  • Developer SQL 2.1: problem with the dialog box to change the display

    I am running Version 2.1.0.63 on Windows XP SP3.

    When I open an existing view and make changes in the change display dialog box and then click on the button OK the dialog box remains open and the view is not changed.

    This user has Create View privileges and can run CREATE or REPLACE the sql statement to change the view. The same view of edition having the same user works very well in Version 1.5.3.

    Someone else has a similar problem?

    Thank you.

    It's a bug, the following exception is raised:

    Exception occurred during event dispatching:
    oracle.javatools.db.ddl.UnsupportedDDLException: Cannot update VIEW MADREMIA with the given changes using ALTER statements.
            at oracle.javatools.db.ddl.DDLGeneratorImpl.getUpdateDDLImpl(DDLGeneratorImpl.java:480)
            at oracle.javatools.db.ddl.AbstractDDLGenerator.processResultSet(AbstractDDLGenerator.java:148)
            at oracle.javatools.db.ddl.AbstractDDLGenerator.getUpdateDDL(AbstractDDLGenerator.java:110)
            at oracle.javatools.db.ddl.DDLDatabase.appendUpdateDDL(DDLDatabase.java:661)
            at oracle.javatools.db.ddl.DDLDatabase.updateObjects(DDLDatabase.java:556)
            at oracle.ide.db.dialogs.CascadeConfirmDialog.updateObjects(CascadeConfirmDialog.java:111)
            at oracle.ide.db.panels.TabbedEditorPanel.commitToProvider(TabbedEditorPanel.java:357)
            at oracle.ide.db.panels.TabbedEditorPanel.onExit(TabbedEditorPanel.java:246)
            at oracle.ideimpl.db.panels.TraversableProxy.onExit(TraversableProxy.java:62)
            at oracle.ide.panels.TDialog$L.vetoableChange(TDialog.java:104)
            at java.beans.VetoableChangeSupport.fireVetoableChange(VetoableChangeSupport.java:335)
            at java.beans.VetoableChangeSupport.fireVetoableChange(VetoableChangeSupport.java:252)
            at oracle.bali.ewt.dialog.JEWTDialog.fireVetoableChange(JEWTDialog.java:1472)
            at oracle.bali.ewt.dialog.JEWTDialog.dismissDialog(JEWTDialog.java:1502)
            at oracle.bali.ewt.dialog.JEWTDialog$UIListener.actionPerformed(JEWTDialog.java:1894)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
            at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
            at java.awt.Component.processMouseEvent(Component.java:6263)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
            at java.awt.Component.processEvent(Component.java:6028)
            at java.awt.Container.processEvent(Container.java:2041)
            at java.awt.Component.dispatchEventImpl(Component.java:4630)
            at java.awt.Container.dispatchEventImpl(Container.java:2099)
            at java.awt.Component.dispatchEvent(Component.java:4460)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
            at java.awt.Container.dispatchEventImpl(Container.java:2085)
            at java.awt.Window.dispatchEventImpl(Window.java:2475)
            at java.awt.Component.dispatchEvent(Component.java:4460)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:178)
            at java.awt.Dialog$1.run(Dialog.java:1045)
            at java.awt.Dialog$3.run(Dialog.java:1097)
            at java.security.AccessController.doPrivileged(Native Method)
            at java.awt.Dialog.show(Dialog.java:1095)
            at java.awt.Component.show(Component.java:1563)
            at java.awt.Component.setVisible(Component.java:1515)
            at java.awt.Window.setVisible(Window.java:841)
            at java.awt.Dialog.setVisible(Dialog.java:985)
            at oracle.bali.ewt.dialog.JEWTDialog.runDialog(JEWTDialog.java:395)
            at oracle.bali.ewt.dialog.JEWTDialog.runDialog(JEWTDialog.java:356)
            at oracle.ide.dialogs.WizardLauncher.runDialog(WizardLauncher.java:55)
            at oracle.ide.panels.TDialogLauncher.showDialog(TDialogLauncher.java:225)
            at oracle.ide.db.dialogs.BaseDBEditorFactory.launchDialog(BaseDBEditorFactory.java:623)
            at oracle.ide.db.dialogs.BaseDBEditorFactory.editDBObject(BaseDBEditorFactory.java:368)
            at oracle.ide.db.dialogs.AbstractDBEditorFactory.editDBObject(AbstractDBEditorFactory.java:332)
            at oracle.ide.db.dialogs.BaseDBEditorFactory.editDBObject(BaseDBEditorFactory.java:54)
            at oracle.ide.db.dialogs.AbstractDBEditorFactory.editDBObject(AbstractDBEditorFactory.java:314)
            at oracle.dbtools.raptor.navigator.DatabaseNavigatorController.editObject(DatabaseNavigatorController.java:470)
            at oracle.dbtools.raptor.navigator.DatabaseNavigatorController.handleEvent(DatabaseNavigatorController.java:308)
            at oracle.ide.controller.IdeAction.performAction(IdeAction.java:531)
            at oracle.ide.controller.IdeAction.actionPerformedImpl(IdeAction.java:886)
            at oracle.ide.controller.IdeAction.actionPerformed(IdeAction.java:503)
            at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
            at javax.swing.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
            at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
            at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
            at javax.swing.AbstractButton.doClick(AbstractButton.java:357)
            at javax.swing.plaf.basic.BasicMenuItemUI.doClick(BasicMenuItemUI.java:1225)
            at javax.swing.plaf.basic.BasicMenuItemUI$Handler.mouseReleased(BasicMenuItemUI.java:1266)
            at java.awt.Component.processMouseEvent(Component.java:6263)
            at javax.swing.JComponent.processMouseEvent(JComponent.java:3267)
            at java.awt.Component.processEvent(Component.java:6028)
            at java.awt.Container.processEvent(Container.java:2041)
            at java.awt.Component.dispatchEventImpl(Component.java:4630)
            at java.awt.Container.dispatchEventImpl(Container.java:2099)
            at java.awt.Component.dispatchEvent(Component.java:4460)
            at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:4574)
            at java.awt.LightweightDispatcher.processMouseEvent(Container.java:4238)
            at java.awt.LightweightDispatcher.dispatchEvent(Container.java:4168)
            at java.awt.Container.dispatchEventImpl(Container.java:2085)
            at java.awt.Window.dispatchEventImpl(Window.java:2475)
            at java.awt.Component.dispatchEvent(Component.java:4460)
            at java.awt.EventQueue.dispatchEvent(EventQueue.java:599)
            at java.awt.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
            at java.awt.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
            at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
            at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
            at java.awt.EventDispatchThread.run(EventDispatchThread.java:122)
    

    Bug 9199263 has been filed for this, but apparently it wasn't a showstopper for the production. It may be set in one of the upcoming patches...

    Kind regards
    K.

  • The mouse pointer jump at the top of the screen when the dialog box opens

    In the last few weeks my mouse pointer jumps sometimes extreme high (left side) of the FF browser window. Only happens in FF, Chrome or IE or any other application from Ms. The mouse to update drivers fees Reloaded, switched mouses, USB switch, ports switched to a mouse not MS - all to nothing does.

    "It seems to happen most often when I mouse ' snap to" feature is turned on and that the pointer automatically moves to the default button in the dialog box.

    This unique disability FF to hide the pointer when you enter (when the value in the mouse properties box) have become very annoying.

    Please address and solve the two problems above. Thank you.

    Good news! Now come on. For the moment, you can disable
    KeyScrambler. You can always turn it on when you need it.

  • Photoshop CS6 resize the dialog box showing centimeters instead of inches when leaders are set to pixels

    Hello I have a problem with photoshop CS6 who is using my business. When I leaders set pixels in the preferences of my resize dialog box sets the document size centimeters. It also sets new records when the default value of centimeters. I need to know how to solve this problem. Should not act that way. I'm including screenshots of the questions.

    Screen Shot 2015-05-27 at 3.59.07 PM.png

    It's preferences where leaders are defined in pixels.

    Screen Shot 2015-05-27 at 4.00.53 PM.png

    This is the screenshot of a new document, set the default size of photoshop. As you can see instead of having the height/width and resolution set to inches centimeters by default for some reason any.

    Screen Shot 2015-05-27 at 3.58.50 PM.png

    And here's the image size dialog box. It back the same as the new Document dialog box. It defines the size of the Document in centimeters, even if the resolution is in Pixels/inch.

    It's frustrating and I don't know why this is happening. I could use some help.

    Mac OSX Yosemite 10.10.3 running on a Mac Pro mid 2012

    Processor: 3.2 GHz Quad-Core Intel Xeon

    Memory: 16 GB 1066 MHz DDR3 ECC Ram

    Graphics card: ATI Radeon HD 5770 1024 MB

    Any help would be appreciated.

    Hello! First of all thanks for the screenshots and a system of care.   You have done this a lot easier for me and after looking at my Mac, (Yosemite and CC 2014), I think I have a lead.

    There are two ways to solve this

    In the units and leaders, it is best to stay with the thumbs in the preferences.

    You can set leaders apart to Pixels by right-clicking them, choose only the desired unit and that will stick. It won't change if it's a new document or a more recently opened.

    The image size is a "sticky". Once you set in inches, he stayed.

    Then there's the language settings. This could be a problem.

    There are a few varieties of English: North American and International or the United Kingdom.

    My North American English definition defines the default units in inches.  Assignment the default International or the United Kingdom, the metric system

    The fix is North American selection in preferences and restarting. If you have Creative clouds you can install North American, or do a reinstall and select if you have a license permanent.

  • catch the dialog box "open field"?

    Hello world

    I have an EditField with a limited number of characters in the line. If the user types an equal number, or more characters, "full field" default dialog box appears. Is it possible to change the text in this dialog box?

    lol but you might use a field without maxchars and implement a control of the length of yourself.

  • Remove the dialog box open on several occasions

    When I select any file deletion tab opens several times 20 to 30 times. I feel very difficult to open a file.it is not serious if I select with the mouse or the keyboard. Can someone help me please?

    See if this does nothing,

    http://support.Microsoft.com/mats/windows_file_and_folder_diag/

    Also use it,

    http://support.Microsoft.com/kb/929833

    http://www.SevenForums.com/tutorials/1538-SFC-SCANNOW-Command-System-File-Checker.html

  • Photoshop crashes with the batch in a new window 10

    Given that I have updated to windows 10 my cc 2015 photoshop crashes when I try to automate > a set of batch files

    go to control panel/adminsistrative observer of tools/events / newspapers/windows application

    Find the journal of crash PS

    Select 'Copy text' and psot information here.

  • How can I remove a shortcut from the dialog box 'Open with' in Windows 7?

    Inadvertently, I added a few shortcuts to open with that are unnecessary (I chose .exe that are not supposed to work this way, as a few .exe 7zip), but I'm unable to remove from this menu.

    I found a Microsoft article on this operation, but he says it's for Windows 8, tells me to click on the version for Windows 7, which brings me to a search page, and when I search for it, it shows links that take back me to the original page, so I'm going in circles.

    http://support.Microsoft.com/kb/258860

    How can I do this?

    Hello Dave!

    Have a look here: http://www.sevenforums.com/tutorials/96077-open-clean-up-remove-programs.html

    (When you scroll down on this page, you will find many more related tutorials)

    This link might be interesting, too: http://www.howtogeek.com/howto/18119/remove-programs-from-open-with-menu-in-explorer/

  • CC of Photoshop crashing with the new Windows 10

    I just installed Windows 10 on my pc, everything seemed fine until I tried to print a document from Photoshop CC, window pops up saying photoshop had to close, no code error or a message.  I used Windows 7 before and never had this problem.  I am using and old Dell all-in-printer.  Tried many times, restarted, still nothing, just crashes every time.

    It is the driver, you need to install, which is assuming you on Windows 64 bit OS

    I had problem with getting the correct driver installed on my laptop, it took me a while to get the right AMD driver installed, what I had to do was completely uninstall the driver control panel AMD and to remove all references to this driver, then I had to go into the Device Manager and display adapters and uninstall the Windows driver it should on a pilot basis the pilot , then I was able to install the software AMD, once the software is installed you need to go into Device Manager and display adapters select once again, put to update driver and point it to C:\AMD, and it should install the driver from there.

    Have to admit Windows 10 is a pain with drivers AMD, Nvidia on my PC however did not have any problems.

    Legacy

  • to select several files in the dialog box open, but it is impossible, isn't it?

    Hi forum,

    File and folder objects have a openDlg() method. The first also has the multiSelect parameter, it is not.

    I wish I could have also for the folder so that I can ctrl/shift select several folders instead of picking up a folder and all its subfolders processing.

    Maybe I'm missing something obvious or there is a solution to such a dialogue box.

    Kind regards

    Kasyan

    As suggested, an approach as possible:

    Folder.prototype.selectMultipleDialog = function (prompt,multiselect){
      var w = new Window('dialog','MultipleSelectDialog'),
      st,
      ls,
      btnGp,
        koBtn,
        okBtn,
        folderFilter = function(f){
            return (f instanceof Folder)
        },
        u,
        folders = this.getFiles(folderFilter),
        getFolderNames = function(foldersObjectArray){
            var n = foldersObjectArray.length,
            namesArray = [];
            while ( n--){
                namesArray[n] = decodeURI(foldersObjectArray[n].name);
            }
            return namesArray;
        },
        folderListItems = getFolderNames(folders),
        n = 0;
    
        st = w.add('statictext',u,prompt);
        ls = w.add('listbox',undefined, folderListItems, {multiselect:multiselect} );
    
        btnGp = w.add('group');
    
        koBtn = btnGp.add('button',u,'Cancel');
        okBtn = btnGp.add('button',u,'Select');
    
        koBtn.onClick = function(){
      w.close(0);
      }
    
      okBtn.onClick = function(){
      w.close(1);
      }
    
        ls.onChange = function() {
            okBtn.enabled = ls.selection!==null;
        }
    
        w.preferredSize.width = 450;
        w.alignChildren = ["fill","top"];
        ls.preferredSize.height = 200;
        btnGp.alignChildren = ["right","top"];
    
      okBtn.enabled = false;
    
        if ( w.show()==1 ){
      if ( ls.selection instanceof Array ) {
      n = ls.selection.length;
                while ( n-- ) folders[ls.selection[n].index].execute();
      }
      else {
      folders[ls.selection.index].execute();
      }
      }
    }
    
    var fo = Folder.desktop;
    fo.selectMultipleDialog("test", true)
    

    HTH

    Loïc

    www.ozalto.com

  • I have acrobat 8 standard on PCs 7 system.    trying to send MS Works document with the dialog box get pictures cannot find printer PDF

    System 7 on PC.   Have version 8 Acrobat Standard.   Attempts to send the MS Works document with attached photos.

    Get a dialog (not available PDF printer

    You need the PDF printer. This is called Adobe PDF is displayed in the Control Panel Printers and is installed automatically. Or it was. The chances of this old version of Acrobat in Acrobat 8 is quite small, but you can try doing a REPAIR (Help menu of Acrobat).

Maybe you are looking for