Dialog windows close prior to action  Illustrator CC

When I select "open" from the menu, the "open" dialog box opens and then immediately shuts.  I can't open a document in Illustrator.  Also, this has been happening in other dialog boxes, such as save as....
Creative Cloud indicates my software is up to date.  Any Clues?
Thanks!

This was happening to me in all my Creative Cloud programs.  When the dialog comes up quickly change the view option to list view.  Mine was on Cover flow and that seems to be the issue.  Since I've changed it I haen't had any quickly closing boxes.

Similar Messages

  • Open dialog window closes suddenly on Illustrator and Photoshop

    Hello,
    open dialog window closes suddenly on Illustrator and Photoshop

    PPI is the correct word for an image's resolution.
    As for printing: ask the service provider what's best for their workflow. It totally depends on the process, on the hardware, on the paper and on the size of the print.
    For video: use screen resolution unless you want to enlarge the footage in the video.
    Additionally:
    read the manual of the video software in use
    read about printing:
    Search for the "Creative Suite® 6 Printing Guide" in your preferred search engine.

  • Disable a stage, dialog, window to prevent user actions

    Dear all,
    I'am developing an application with JAVA8 b96 and I'm asking myself how to prevent the user from doing user actions.
    I have long running Tasks (e.g. 3sec. to load detail data) and would like to disable the gui (prevent user from pressing other buttons, show wait Cursor, etc.). The StackPane approach is not realy working, because it does not prevent the user from using the tab and space key to e.g. use Buttons (it only supresses mouse clicks).
    Thank you in advance, Tim

    Just experimented with this a bit; I don't really claim to fully understand this (at least, not at this time of night). It looks like you need to consume key events from the scene using an event filter. You can consume mouse events by placing an overlay over the entire scene (using something like a transparent rectangle) with the mouseTransparent property set to false.
    Something like the following seems to do the trick; there may be a much easier way I'm not seeing.
    import javafx.animation.KeyFrame;
    import javafx.animation.Timeline;
    import javafx.application.Application;
    import javafx.beans.binding.Bindings;
    import javafx.event.ActionEvent;
    import javafx.event.EventHandler;
    import javafx.scene.Cursor;
    import javafx.scene.Scene;
    import javafx.scene.control.Button;
    import javafx.scene.control.Label;
    import javafx.scene.control.TextArea;
    import javafx.scene.control.TextField;
    import javafx.scene.input.KeyEvent;
    import javafx.scene.layout.BorderPane;
    import javafx.scene.layout.HBox;
    import javafx.scene.paint.Color;
    import javafx.scene.shape.Rectangle;
    import javafx.stage.Stage;
    import javafx.util.Duration;
    public class InputConsumerExample extends Application {
      @Override
      public void start(Stage primaryStage) {
        final BorderPane root = new BorderPane();
        final HBox top = new HBox(5);
        final Button showTextButton = new Button("Show text");
        final TextField textField = new TextField();
        final TextArea textArea = new TextArea();
        top.getChildren().addAll(textField, showTextButton);
        showTextButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            System.out.printf("textField has %s%ntextArea has%n%s%n",
                textField.getText(), textArea.getText());
        root.setTop(top);
        root.setCenter(textArea);
        final Rectangle mouseConsumer = new Rectangle();
        mouseConsumer.setFill(Color.TRANSPARENT);
        mouseConsumer.setMouseTransparent(false);
        mouseConsumer.setX(0);
        mouseConsumer.setY(0);
        mouseConsumer.widthProperty().bind(root.widthProperty());
        mouseConsumer.heightProperty().bind(root.heightProperty());
        mouseConsumer.setVisible(false);
        final Button pauseButton = new Button("Pause UI");
        pauseButton.setOnAction(new EventHandler<ActionEvent>() {
          @Override
          public void handle(ActionEvent event) {
            final EventHandler<KeyEvent> keyEventConsumer = new EventHandler<KeyEvent>() {
              @Override
              public void handle(KeyEvent event) {
                event.consume();
            pauseButton.getScene().addEventFilter(KeyEvent.ANY, keyEventConsumer);
            pauseButton.getScene().setCursor(Cursor.WAIT);
            mouseConsumer.setVisible(true);
            Timeline pause = new Timeline(new KeyFrame(Duration.seconds(8),
                new EventHandler<ActionEvent>() {
                  @Override
                  public void handle(ActionEvent event) {
                    mouseConsumer.setVisible(false);
                    pauseButton.getScene().removeEventFilter(KeyEvent.ANY, keyEventConsumer);
                    pauseButton.getScene().setCursor(Cursor.DEFAULT);
            pause.play();
        HBox pauseButtonContainer = new HBox(10);
        Label state = new Label();
        state.textProperty().bind(
            Bindings.when(mouseConsumer.visibleProperty()).then("Paused")
                .otherwise("Available"));
        pauseButtonContainer.getChildren().addAll(pauseButton, state);
        root.setBottom(pauseButtonContainer);
        root.getChildren().add(mouseConsumer);
        primaryStage.setScene(new Scene(root, 600, 400));
        primaryStage.show();
      public static void main(String[] args) {
        launch(args);

  • Close dialog window by clicking on 'X'

    Hi
    I am displaying a dialog window that allows the user to modify data.
    When the user clicks on the 'Cancel' button I have placed on the window, the action code fires and the return listener fires.
    I have added some java script that executes the following command when the user closes the dialog by clicking on the close icon.
    submitForm("groupCaptureForm",0,{source:"cancelGroup"});
    Basically simulating a click on the 'Cancel' button.
    For some reason when the user closes the window by clicking on the close icon, the action code fires, but the return listener code never fires.
    Any idea why?

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Closing a Swing App with Window Closing Event With Dialogs On Close

    A while back I started a thread discussing how to neatly close a Swing app using both the standard window "X" button and a custom action such as a File menu with an Exit menu item. Ultimately, I came to the conclusion that the cleanest solution in many cases is to use a default close operation of JFrame.EXIT_ON_CLOSE and in any custom actions manually fire a WindowEvent with WindowEvent.WINDOW_CLOSING. Using this strategy, both the "X" button and the custom action act in the same manner and can be successfully intercepted by listening for a window closing event if any cleanup is required; furthermore, the cleanup could use dialogs to prompt for user actions without any ill effects.
    I did, however, encounter one oddity that I mentioned in the previous thread. A dialog launched through SwingUtilities.invokeLater in the cleanup method would cause the app to not shutdown. This is somewhat of an academic curiosity as I am not sure you would ever have a rational need to do this, but I thought it would be interesting to explore more fully. Here is a complete example that demonstrates; see what you think:
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.awt.event.WindowAdapter;
    import java.awt.event.WindowEvent;
    import javax.swing.BoxLayout;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JOptionPane;
    import javax.swing.JPanel;
    import javax.swing.SwingUtilities;
    public class CloseByWindowClosingTest {
         public static void main(String[] args) {
              SwingUtilities.invokeLater(new Runnable() {
                   public void run() {
                        launchGUI();
         private static void launchGUI() {
              final JFrame frame = new JFrame("Close By Window Closing Test");
              JPanel panel = new JPanel();
              panel.setLayout(new BoxLayout(panel, BoxLayout.Y_AXIS));
              JButton button1 = new JButton("No Dialog Close");
              JButton button2 = new JButton("Dialog On Close");
              JButton button3 = new JButton("Invoke Later Dialog On Close");
              button1.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        postWindowClosingEvent(frame);
              button2.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        JOptionPane.showMessageDialog(frame, "Test Dialog");
                        postWindowClosingEvent(frame);
              button3.addActionListener(new ActionListener() {
                   public void actionPerformed(ActionEvent e) {
                        SwingUtilities.invokeLater(new Runnable() {
                             public void run() {
                                  JOptionPane.showMessageDialog(frame, "Test Dialog");
                        postWindowClosingEvent(frame);
              panel.add(button1);
              panel.add(button2);
              panel.add(button3);
              frame.setContentPane(panel);
              frame.pack();
              frame.setLocationRelativeTo(null);
              frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              frame.addWindowListener(new WindowAdapter() {
                   @Override
                   public void windowClosing(WindowEvent event) {
                        System.out.println("Received Window Closing Event");
              frame.setVisible(true);
         private static void postWindowClosingEvent(JFrame frame) {
              WindowEvent windowClosingEvent = new WindowEvent(frame, WindowEvent.WINDOW_CLOSING);
              frame.getToolkit().getSystemEventQueue().postEvent(windowClosingEvent);
    }An additional note not in the example -- if in the button 3 scenario you were to put the window closing event posting inside the invoke later, the app then again closes. However, as implemented, what is it that causes button 3 to not result in the application closing?
    Edited by: Skotty on Aug 11, 2009 5:08 PM -- Modified example code -- added the WindowAdapter to the frame as a window listener to show which buttons cause listeners to receive the window closing event.

    I'm not sure I understand why any "cleanup" code would need to use SwingUtilities.invokeLater() to do anything. Assuming this "cleanup method" was called in response to a WindowEvent, it's already being called on the EDT.
    IIRC, my approach to this "problem" was to set the JFrame to DO_NOTHING_ON_CLOSE. I create a "doExit()" method that does any cleanup and exits the application (and possibly allows the user to cancel the app closing, if so desired). Then I create a WindowListener that calls doExit() on windowClosingEvents, and have my "exit action" call doExit() as well. Seems to work fine for me.

  • "ESC" button to close Dialog window? how it can be done

    Dear Friends,
    my application has got lot of Dialog windows, How can i map ESC button so that when the users press ESC button the window will get close automatically, all these windows designed so show data only.
    Please advise me.

    For Esc button it is not possible anway u can use F1 key,use Key-Help tigger on block level and write
    Exit_form (no_validate);
    but it will disable help menu on this block but i dont think so it is relate to user the sample code would be for F1 key is
    Tigger : Key-Help
    Level : Block
    exit_form(no_validate);
    By pressing F1 on this block your form can exit .You can exit this trigger on Form level and it will work for all blcoks in ur Forms if any problem contact my personel email address
    [email protected]
    thank you
    Khurram Siddiqui

  • Cannot link files in illustrator CC, as finder window closes by itself after installing maverick

    Hi, After installing Mavericks (Doh!) I can no longer link files in illustrator CC as the finder window closes by itself after one second or if I click on anything. It was happening with save as also, but that seems to have rectified itself by reinstalling the program. Anyone any thoughts? Im in a spot of bother!

    theoutset,
    There are several threads about Maverick issues just now, such as:
    http://forums.adobe.com/thread/1320367?tstart=0
    http://forums.adobe.com/thread/1319868?tstart=0
    http://forums.adobe.com/thread/1320608?tstart=0
    http://forums.adobe.com/thread/1320983?tstart=0
    Astute Graphics are working on making VectorScribe compatible with Maverick, http://www.astutegraphics.com/blog/mac-os-mavericks-10-9-compatibility /
    It may be worth postponing your use of Maverick until the dust has settled.

  • Refresh Table Data after dialog window is closed.

    My JDeveloper version is 11.1.1.6.0
    I have a master-detail scenario where in Master records(Table Component) are displayed in top half of the splitter panel.
    Detail records are displayed in second half of the splitter control using table components placed on tab panel.
    After clicking on the LinkButton in Master record a bounded-task-flow is invoked in a separate inline dialog window (applicaitonModal).
    In the dialog window changes to the child records is done using SelecteManyShuttle Component.
    After invoking the commit action to close the modal window the child records do not refresh or the child records do not display changes immediately. Only after the page is refreshed the changes are visible.
    Kindly suggest a solution.
    Thanks
    Deven

    are you using af;dialog then you cn use dialog listener see this
    http://www.techartifact.com/blogs/2013/03/handling-ok-and-cancel-button-in-afdialog-using-popup-in-oracle-adf-by-dialogl…

  • Wizard in a dialog window does not show errormessages from the database

    I have a main window and some wizards defined with JHeadstart. The wizards are started as dialogs to get them in a separate windows from the main window. This gives me a cancel and a save button for the dialog in addition to the ones for the wizard.
    I have managed to take away the cancel and save button from the dialog using custom .vm files. The problem is that then pressing the FINISH button for the wizard it closes the dialog window without showing errormessages from the database (ie constraint messages) and these only appear in the log. If I use the save button from the dialog it gives the errormessages, but does not exit the dialog even if there are no errormessages.
    Is this a bug or is there another way I should have done this ?
    The code for starting the wizard.
    <af:commandLink id="StartVeiRegMerknad"
    text="#{nls['TABLE_TITLE_VEIREGMERKNAD']}"
    action="dialog:StartVeiRegMerknad"
    useWindow="true" partialSubmit="true"
    launchListener="#{DialogLaunchHandler.handleDialogLaunch}"
    windowWidth="600" windowHeight="600"
    returnListener="#{backing_show.backFromPopup}"
    immediate="true">
    <f:actionListener type="oracle.jheadstart.controller.jsf.listener.DoRollbackActionListener"/>
    <f:actionListener type="oracle.jheadstart.controller.jsf.listener.ResetBreadcrumbStackActionListener"/>
    <af:resetActionListener/>
    </af:commandLink>

    Your finish button should call a custom managed bean method that executes the commit, checks whether there are errors, and only close the dialog of there are no errors.
    To close the dialog in code, you can use this:
    AdfFacesContext adf = AdfFacesContext.getCurrentInstance();
    adf.returnFromDialog(null, null);
    which is similar to using the <af:returnActionListener/> that you probably now used but should be removed from your finish button.
    Steven Davelaar,
    JHeadstart Team.

  • Window: close event handler

    I have a button (action="dialog:ADD_MEMBER" useWindow="true" windowEmbedStyle="inlineDocument" windowModalityType="applicationModal" windowHeight="600" windowWidth="700"), which open a new window in the same TaskFlow. This window can be closed by using the special (my af:commandButton) button and by using common window close button ('X'). I want to write my custom close event handler in the second case. How can I do it?

    Hi,
    don't think you can. Did you check ifthe return listener fires ?
    Frank

  • Script to open the Open Dialog Window

    Hello everyone!
    I'm new to scripting and this is probably an easy question but I'm trying to write a script that opens the Open Dialog Window. Basically I need to start the script in one active document, have the script open the Open Dialog (to let the user select another image) and then finish the script in the newly opened document. Every script I find is to open a specific file, but I need it to be User Selected through the Open Dialog of Photoshop.
    I hope that makes sense! LOL. Any help would be greatly appreciated!
    Thanks,
    Bradi

    Is this also possible to simply open the "Find and Replace" dialog in Illustrator & then close it?
    No need to do anything with "Find and Replace" just want to open it then have it close to avoid an Illustrator bug.

  • Both windows close while only one is supposed to

    I have 2 windows that appear when the program is ran. One window you input 4 strings whihc should get input froma nother program ( not relevent for this problem ) it then gets arrays and is supposed to graph it on the other window ( also not relevent ). But what is relevent is that the graph window is supposed to stay open for the grtaph to be displayed. It stays blank until you press ok in the other window whihc then performs an action to add the stuff to the graph window. The problem is that the graph window will not stay up, once the ok button is pressed both the windows close. How could I keep the graph window open, or if not that, both the windows open. Thanks

    i believe you used the System.exit(0)???
    This will terminate the application.
    Instead..use the dispose() method for the frame, dialog, etc.. that you want to close. This should leave the other intact..unless the window to dispose is the parent window.

  • Error: Could not complete Create LOV Dialog Window...

    Using Jdeveloper 10.1.2 UIX to drop a MessageLovInput onto an Input Form I get the following error:
    Could not complete Create LOV Dialog Window because it would result in an invalid document.
    Clicking on details reveals the following:
    oracle.bali.xml.model.XmlInvalidOnCommitException: Errors
    Errors:
    Element text not defined in parent contents [node = text ]
    invalid subtree:
    <contents>
    <text text="Find the collection (which contains the legal values for the lovInput) in the Data Control Palette. Select the attribute (of the collection) that will be set by the lovInput and drop it into this space as a 'LOV Table'. " />
    </contents>
         at oracle.bali.xml.model.XmlModel._validateSubtree(XmlModel.java:2646)
         at oracle.bali.xml.model.XmlModel._validateDocument(XmlModel.java:2583)
         at oracle.bali.xml.model.XmlModel.precommitTransaction(XmlModel.java:1467)
         at oracle.bali.xml.model.XmlModel._validateInCommit(XmlModel.java:2538)
         at oracle.bali.xml.model.XmlModel.commitTransaction(XmlModel.java:531)
         at oracle.bali.xml.model.XmlModel.commitTransaction(XmlModel.java:516)
         at oracle.cabo.ide.adf.LovModelXml._createLovPage(LovModelXml.java:125)
         at oracle.cabo.ide.adf.LovModelXml.createControl(LovModelXml.java:55)
         at oracle.cabo.ide.adf.UixModelXml.populateFragment(UixModelXml.java:165)
         at oracle.cabo.ide.adf.UixAdfDocumentFragmentProvider.preInitializeNode(UixAdfDocumentFragmentProvider.java:38)
         at oracle.bali.xml.model.datatransfer.XmlKeyDocumentFragmentProvider._createDomNodeFromKey(XmlKeyDocumentFragmentProvider.java:97)
         at oracle.bali.xml.model.datatransfer.XmlKeyDocumentFragmentProvider.createFragment(XmlKeyDocumentFragmentProvider.java:38)
         at oracle.bali.xml.model.XmlModel.getImportedDocumentFragment(XmlModel.java:1771)
         at oracle.bali.xml.model.XmlModel.getFragmentForImportIfPossible(XmlModel.java:1801)
         at oracle.bali.xml.model.XmlModel.importData(XmlModel.java:1078)
         at oracle.bali.xml.model.XmlView.importData(XmlView.java:773)
         at oracle.bali.xml.gui.swing.dnd.ModelDropHandler._transferData(ModelDropHandler.java:624)
         at oracle.bali.xml.gui.swing.dnd.ModelDropHandler.drop(ModelDropHandler.java:235)
         at java.awt.dnd.DropTarget.drop(DropTarget.java:398)
         at sun.awt.dnd.SunDropTargetContextPeer.processDropMessage(SunDropTargetContextPeer.java:542)
         at sun.awt.dnd.SunDropTargetContextPeer.access$800(SunDropTargetContextPeer.java:52)
         at sun.awt.dnd.SunDropTargetContextPeer$EventDispatcher.dispatchDropEvent(SunDropTargetContextPeer.java:805)
         at sun.awt.dnd.SunDropTargetContextPeer$EventDispatcher.dispatchEvent(SunDropTargetContextPeer.java:743)
         at sun.awt.dnd.SunDropTargetEvent.dispatch(SunDropTargetEvent.java:29)
         at java.awt.Component.dispatchEventImpl(Component.java:3494)
         at java.awt.Container.dispatchEventImpl(Container.java:1627)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:3483)
         at java.awt.LightweightDispatcher.processDropTargetEvent(Container.java:3269)
         at java.awt.LightweightDispatcher.dispatchEvent(Container.java:3123)
         at java.awt.Container.dispatchEventImpl(Container.java:1613)
         at java.awt.Window.dispatchEventImpl(Window.java:1606)
         at java.awt.Component.dispatchEvent(Component.java:3477)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:456)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:201)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:151)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:145)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:137)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:100)
    Opening the UIX page, the following code has been generated; not a <listOfValues> tag in sight!
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40"
    expressionLanguage="el">
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider>
    <!-- Add DataProviders (<data> elements) here -->
    </provider>
    <contents>
    <document>
    <metaContainer>
    <!-- Set the page title -->
    <head title=""/>
    </metaContainer>
    <contents>
    <body>
    <contents>
    <form name="form0">
    </form>
    </contents>
    </body>
    </contents>
    </document>
    </contents>
    </dataScope>
    </content>
    <handlers>
    <!-- Add EventHandlers (<event> elements) here -->
    </handlers>
    </page>
    I have checked Metalink but can't find this error there either. Based on examples on OTN I have tried to create the LOV window manually but it does not work as expected:
    1) The window is not empty when opened - i.e. data has been retrieved.
    2) The filtering does not work.
    3) The selected value does not update the Input Form.
    I have pasted the code below in case anyone can point me in the right direction to work around the Jdeveloper error. However, I think Jdeveloper should create the LOV window correctly.
    Thanks in advance for your help.
    <?xml version="1.0" encoding="windows-1252"?>
    <page xmlns="http://xmlns.oracle.com/uix/controller"
    xmlns:ui="http://xmlns.oracle.com/uix/ui"
    xmlns:ctrl="http://xmlns.oracle.com/uix/controller"
    xmlns:html="http://www.w3.org/TR/REC-html40" expressionLanguage="el">
    <content>
    <dataScope xmlns="http://xmlns.oracle.com/uix/ui">
    <provider>
    <!-- Add DataProviders (<data> elements) here -->
    </provider>
    <contents>
    <document>
    <metaContainer>
    <!-- Set the page title -->
    <head title=""/>
    </metaContainer>
    <contents>
    <body>
    <contents>
    <listOfValues title="Organization"
    searchText="Enter search string here">
    <contents>
    <!-- indexed children -->
    <table model="${bindings.OrganizationView1}" id="OrganizationView13">
    <contents>
    <column>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OrganizationView1,'Name')}"/>
    </columnHeader>
    <contents>
    <textInput model="${uix.current.Name}" columns="10" readOnly="true"/>
    </contents>
    </column>
    <column>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OrganizationView1,'Address')}"/>
    </columnHeader>
    <contents>
    <textInput model="${uix.current.Address}" columns="10" readOnly="true"/>
    </contents>
    </column>
    <column>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OrganizationView1,'Url')}"/>
    </columnHeader>
    <contents>
    <textInput model="${uix.current.Url}" columns="10" readOnly="true"/>
    </contents>
    </column>
    <column>
    <columnHeader>
    <sortableHeader model="${ctrl:createSortableHeaderModel(bindings.OrganizationView1,'Phone')}"/>
    </columnHeader>
    <contents>
    <textInput model="${uix.current.Phone}" columns="10" readOnly="true"/>
    </contents>
    </column>
    </contents>
    <tableSelection>
    <singleSelection model="${bindings.OrganizationView1Iterator}" text="Select and ">
    <primaryClientAction>
    <firePartialAction targets="OrganizationView13" source="OrganizationView13" event="select"/>
    </primaryClientAction>
    </singleSelection>
    </tableSelection>
    </table>
    </contents>
    <filterChoice>
    <choice name="filterBy">
    <contents>
    <option text="Name" value="name"/>
    <option text="Address" value="address"/>
    </contents>
    </choice>
    </filterChoice>
    <headerInstructions>
    </headerInstructions>
    <searchInstructions>
    </searchInstructions>
    </listOfValues>
    </contents>
    </body>
    </contents>
    </document>
    </contents>
    </dataScope>
    </content>
    <handlers>
    <!-- Add EventHandlers (<event> elements) here -->
    <event name="goto sort" source="OrganizationView13">
    <invoke method="handleTableUiEvent" javaType="oracle.cabo.adf.rt.AdfUtils">
    <parameters>
    <parameter javaType="oracle.adf.model.binding.DCIteratorBinding" value="${bindings.OrganizationView1Iterator}"/>
    <parameter javaType="oracle.cabo.servlet.expl.ControllerImplicitObject" value="${uix}"/>
    </parameters>
    </invoke>
    </event>
    <event name="select" source="OrganizationView13">
    <set target="${bindings.OrganizationView1Iterator}" property="currentRowIndexInRange" value="${ui:tableSelectedIndex(uix, 'OrganizationView13')}"/>
    </event>
    <event name="lovFilter">
    <compound>
    <invoke method="setWhereClause" javaType="oracle.jbo.ViewObject" instance="${bindings.Name.viewObject}">
    <parameters>
    <parameter javaType="string" value="${empty param.filterBy ? 'NAME' : param.filterBy} LIKE '${param.searchText}'"/>
    </parameters>
    </invoke>
    <invoke method="executeQuery" javaType="oracle.jbo.ViewObject" instance="${bindings.Name.viewObject}"/>
    </compound>
    </event>
    </handlers>
    </page>

    Thanks for the response. OK... This is the first day I have been able to get back to the problem.
    My system I am running Photoshop on is a Power Mac G4, AGP Graphics ATY Rage 128Pro chip set 16MB VRAM LCD 1280x1024 32-bit color, 500MHz, 1.75GB of memory, 1 MB L2 Cache, 100 MHz Bus Speed. I had installed the latest security update and repaired the permissions the day the problem started.
    Now to day I started the system and went in and created a Guest Account. I logged into the guest account and started Photoshop. Low and behold it worked just fine. So I logged out of guest and logged into my main user account And started Photoshop. Wouldn't you know it.... It works just fine. I can open any file I want with now problems.
    I got to thinking after I had done all of this that I wished I had tried to open a file in Photoshop today prior to creating the guest account to see if it still had the problem in my main user account.
    I did not change anything else on the system and all seems to work fine now. So at his point I am really not sure what the problem was.
    Again thanks for taking the time to respond to this issue.

  • Print Templates print preview window closes unexpectly when printing document

    This is a cross posting from Internet Explorer Web Development after a suggestion that this forum would be a better location. See
    https://social.msdn.microsoft.com/Forums/ie/en-US/351e1245-b606-4467-9f3c-1c72f9cdf9ea/print-templates-print-preview-window-closes-unexpectly-when-printing-document?forum=iewebdevelopment.
    I have raised an issue through Connect for this:
    https://connect.microsoft.com/IE/feedback/details/1134168/ie9-to-ie11-print-templates-print-preview-window-closes-unexpectly-when-printing-document, but I would like some more visibility of the issue as my customers thought my application was closing when
    they printed a document.  I also don't know if an issue in Connect gets any priority support via MSDN, but this forum does.
    This looks to me like a problem in the IE Print Templates startDoc API call, but if there is a more appropriate forum to raise this issue in please let me know.
    In the application where I use print templates, the window closing is not in it self a problem because the Javascript that is calling startDoc also closes the Print Preview window when the print is finished.
    The fact that the application looses focus and can be hidden by the windows of other applications when the Print Preview window is closed by startDoc is the issue noticed by our customers, so I need a fix preferably, or a work around at a pinch.
    Details of the issue reproduced below.
    When using IE Print Templates, the startDoc function is causing the print preview window to close.  This behaviour started with IE9, and is still present with IE11.
    When an application is using print templates (see
    https://msdn.microsoft.com/en-us/library/aa753279(v=vs.85).aspx) for print functionality, this has the effect of causing the application to become hidden by any other application window once printing from the print preview window has started.  It is
    actually this behaviour that started me looking at this issue as the users thought the hosting application had closed.
    Print Templates are not accessible by using IE as a web browser, but only when using the WebBrowser Control to embed IE in an application.  The reference for this feature is available from this url:https://msdn.microsoft.com/en-us/library/aa753279(v=vs.85).aspx
    and a sample Microsoft application that demonstrates the use of Print Templates can be used to demonstrate the problem (required for the reproduction steps).  The application is available via this article and searching for "download spiffy".
    Steps to reproduce the problem:
    To see the full effect of the issue, first ensure there is a window from another application (like Windows Explorer) that will cover the sample applications window if brought to the foreground (making the Windows Explorer window full screen works).
    Start the sample application (and ensure that the full screen Window Explorer is the next application to activate).
    Then in the drop down box in the top right corner of the UI select Template8.htm.
    Click the Print Preview button that is just below the drop down box (this will open a new Print Preview window).
    In the new window click the Print… button (this will open a Print dialog).
    Click the Print button at the bottom of the Print dialog.
    The Print dialog closes (expected) and then the Print Preview window also closes (not expected), however the document is still printed successfully.
    When the Print Preview windows is closed unexpectedly, the Windows Explorer window is brought to the foreground (obscuring the sample applications window).
    If you reselect the sample application and click the Print Preview button again, the Print Preview dialog is not displayed unless you restart the application (this looks to be a symptom of the same issue, not a separate problem).
    To see that the Print Preview window appears to be closed by the startDoc call, use the resource editor in Visual Studio (the exe can be opened directly by File | Open | File…) to edit the HTML resource "TEMPLATE8.HTM" (I found I needed to delete
    it and add it back in for the change to stick), find the startDoc call and add two alerts, one on the line before and one on the line after.  When IE is accessing the template, it is being done using the name of the executable (so do not rename the modified
    version of printtemplates.exe, make the changes to a copy in a different directory if you don't want to change the original).  Start the modified version of the application and follow the same steps as in the reproduction.  This time, after clicking
    the Print button in the Print dialog, the dialog will close, the first alert will pop up, then the Print Preview window will close, then
    the second alert will pop up.
    Thank you,
    Warren.

    Hi Shu,
    I have noticed that the print templates API is listed as part of the Legacy APIs. 
    Is this just because it hasn't changed or is not new?  Or does this mean that it is no longer maintained and may be removed (or at least deprecated) at some point in the future? 
    It would good to know if we should start planning for the implementation of a different method of printing.
    I understand that the sample application is no longer maintained, but I also think that the Print Template API that it uses has not changed, and so should still work (and it does mostly).
    If the Print Preview window was being closed as a result of using the Print dialog (and if it had behaved the same way with IE8) I would be willing to go with the by design argument.  
    I have found that the Print Preview window is not closed until startDoc is called, and it closes before control is returned from the startDoc function. 
    Just as part of investigating and try to find a workaround, if I call window.close(), any alert calls made no longer display the alert window after the close call. 
    Alert still functions after startDoc has closed the window however. 
    The is not the sort of consistent behaviour I would expect from something that is by design. 
    Also while investigating, I found that calling startDoc after calling window.close() results in an exception with the error code -2147467259 (0x80004005), this is probably quite normal and expected, but does indicate that the Web Browser Control should
    not be closed till after printing.
    I had found that old thread, and I had concluded it was the same issue, but it was also aimed at different aspect of the problem (which I see in the sample application, but not my application). 
    The visible issue I have is that my users think the application has been closed because after clicking print (on the Print dialog) the application gets hidden by other windows from other applications. 
    This aspect affects the sample in the same manner and so it was a convenient way to demonstrate the problem.
    If IE connect do not look at this issue any time soon, do I have any other avenues to resolve this issue?
    Thank you,
    Warren.

  • Open file/browse-file dialog window size too small

    It seems like the size of the "Open file" and "Browse file"-dialog windows have become too small to use efficiently.
    I'm not sure if this is related to the latest updates from testing, but it wasn't like this before. I have to resize the dialog window every time in order to be able to select files and folders.
    The changes are not saved across the same session of a program, but it does result in unpredictable behavior in gedit.
    If I resize the open file dialog, then close the dialog, then open it again, the changes are sometimes preserved, but not always. Sometimes it's small and sometimes it's resized, and there's no way of telling.
    I'm running compiz-fusion and emerald, but the bug is not related to window manager, as it's the same with metacity and openbox. So it's for all GTK programs.
    When I try to run gnome-appearance-properties, I get:
    "Unable to start the settings manager 'gnome-settings-daemon'.
    Without the GNOME settings manager running, some preferences may not take effect. This could indicate a problem with Bonobo, or a non-GNOME (e.g. KDE) settings manager may already be active and conflicting with the GNOME settings manager."
    and the problem remains no mather what GTK theme I choose.
    Is gnome-settings-daemon responsible for this kind of behavior?
    Last edited by WeeDie (2008-10-12 00:52:03)

    The issue was resolved by updating all to gnome-desktop 2.24 from testing..
    Seems like the swedish repository mirrors are a bit left behind..

Maybe you are looking for

  • Inbound Idoc set up..

    Hi All.. Iam using the following bapi " BAPI_SALESORDER_CREATEFROMDAT2" to create credit/debit memo requests in sap. If the bapi fails, i want to create an idoc and post the application document. For that purpose, iam using the idoc type SALESORDER_C

  • Adobe X cannot print from Win 7 VMWare virtual machine

    I've created several virtual machines using VMWare Workstation and VMWare fusion. I've installed Win 7 Pro 64bit. I've installed either Office 2010 32 bit or 64 bit. When I open any PDF file and click File Print. Adobe crashes. I get an OS error mess

  • Insert rows in the ViewObject

    Hi forum, I'm implementing an application that imports data into a database. I insert 100.000 rows in a ViewObject and then I do a commit to the database after doing some operations in order to select which objects have to be imported. Is it possible

  • Fusion Drive - How to resize partition?

    Hello there. I've been searching google for many hours on how to resize (make it bigger) fusion drive bootcamp partition, without doing it manually (deleting/creating new) Since i have MANY games and such, I dont want to reinstall / redownload them a

  • JSF 1.2 Rendered decode method not being called

    I've been banging my head about this one, I have a custom component with: TagClass RendererClass ComponentClass The encodeBegin is running fine in the renderer class, but the decode method is never being called - and it does properly over ride the su