Property Chooser dialog from Add Correlation Set dialog Doesn't Expand

We are using Windows XP with NetBeans IDE 6.0 Preview (M9, build 070502).
We are creating a BPEL workflow. We want to create a correlation set.
1. In the Navigator, we right clicked on Correlation Sets, and and chose "Add Correlation Set ..." from the menu
2. The Correlation Set dialog opened. It was empty.
3. We chose Add ...
4. The property chooser comes up.
5. We have some WSDL files in the property chooser
6. However, we cannot expand the WSDL files to see any parameters. (The plus sign is there, but we can't expland it)
Aside from correlation, the process works perfectly.

My workflow "HelloWorldProcess" has two Receive activities, they receive the same message, one receive has CorrelationSet with"initiate=yes" and another one has CorrelationSet with"initiate=no".
After the projet gets deployed, I sent the first message to "http://localhost:18181/HelloWorldProcessWSDLService/HelloWorldProcessWSDLPort", to instantiate a instance of workflow, the instance of workflow received message, then waited on the second Receive (ReceiveUserName2), then I sent a second message (the same as first one) to "http://localhost:18181/HelloWorldProcessWSDLService/HelloWorldProcessWSDLPort", I thought this message should be received by the ReceiveUserName2, but it is not, instead a new instance of workflow gets instantiated (the secons message was receieved by the first Receive activity of new instance of workflow). Why?
I am currently using ActiveBPEL workflow too and I am using correlation sending the same message to a existing instance of workflow. The second message was received by the second Receive activity in the workflow, I think, Correlation Set should work like this way.
Please advise.
Thanks
kebin

Similar Messages

  • Computer takes 15-20 seconds to sleep after choosing it from menu?

    After I choose "Sleep" from the Apple menu, it doesn't sleep instantaneously as it used to, but instead takes 15 or 20 seconds to do so. It always DOES sleep eventually, just takes a while. I thought this might be because of Azuerus being open, but even when it is closed the problem persists.
    Anyone have any advice?
    Thanks!

    This same thing just started happening with my new Mini. No antivirus installed on my system and it only happens after my Mini has been used for several hours. After initial startup it sleeps right away but after several hours use it takes 10-20 seconds for it to go to sleep.

  • Mss reports - add module pool (dialog) to the list

    Hi experts,
    I need to add new reports to MSS reporting.
    Is it possible to add module pool (dialog) to the MSS reports list?
    I got an error when executing the program " no object stored within selected period".
    The portal seems like it cannot trigger the data from backend.
    Is it related to dialog program that we use?
    What is the best solution because we need the manager to choose from dropdown button through the MSS reports.
    Rgds,
    Nanie Arianie

    Solved
    Program error

  • Couldn't open first dialog from second dialog in a single project (VC++)

    Hai all,
      Good Day. I am very new to Visual C++. I am learning VC++ and doing practice side by side using IDE - Visual Studio 2005. In my project i created two dialogs. In
    first dialog  BARCODE_DIALOG (CBarCodeDlg) if i clicked  a button "password", i want to open a
    second Dialog DIALOG2(CPasswordDlg).  in this if i clicked main button  DIALOG2 closed at same time i want to open first Dialog and have to do changes in first dialog. 
    my problem is i closed the second dialogv by calling OnOK(). but i couldn't open first dialog. How to do?
    //For opening second dialog from first dialog:
    //CBarCodeDlg.cpp
    void CBarCodeDlg::OnBnClickedBpswd()
    // TODO: Add your control notification handler code here
    OnOK();
    m_dPswdDlg.DoModal(); // added variable public CPasswordDlg m_dPswdDlg
    //For close second dialog and do changes in first dialog
    //CPasswordDlg.cpp
    void CPasswordDlg::OnBnClickedBmain()
    OnOK();
    m_dBarCodeDlg.DoModal(); //added varible public CBarCodeDlg m_dBarCodeDlg
    if i added this 
    m_dBarCodeDlg.DoModal(); //added varible public CBarCodeDlg m_dBarCodeDlg
    getting errors.  How to call it and also i have to do changes in BarcodeDlg if clicked main button. can you plese help me to do it.

    yes david. Thanks a lot david.  i got it. but what i am doing in second dialog, i getting a string and comparing with another string. if equal then enabling another button "main". if i clicked main i want enable product number combo box
    in first dialog. how to enable it.
    You are thinking wrong about the second dialog. It should not be trying to control the first dialog. What it should do is set some internal state that the first dialog can interrogate after DoModal() returns. The simplest (bur not best OOP practice) is to
    use a public member variable, say a bool m_bSame. Then you could do
    //CBarCodeDlg.cpp
    void CBarCodeDlg::OnBnClickedBpswd()
    CPasswordDlg dlg;
    if( (dlg.DoModal() == IDOK) && dlg.m_bSame)
    // enable Combo box
    else
    // report some kind of error
    Or, even simpler, you could only allow the second dialog to return IDOK if the two strings are the same. Then you would not need the bool variable.
    Or you could put the user-entered string in a public member variable and do the test in the first dialog. Then you could create the entire second dialog in the designer, without adding any code (just add a public CString variable that is bound to an edit
    control).
    Modal dialogs are usually just information gatherers. They should bot be reaching out into the rest of the application.
    David Wilkinson | Visual C++ MVP

  • Pass parent frame to Dialog, from panel within CardLayout

    Hi!
    I have a main class that uses card layout (EntryPoint.java), and where I instantiate all my panels from. All my panels(cards) are seperate classes.
    I have a login class(card) that I call from my main class (LoginClass.java). When it displays and the user wants to change his/her password - I created a custom dialog to pop up and handle the request. This custom dialog is another class on it's own.
    My problem is I cant seem to pass the frame to my dialog. I created a frame only in my main class, seeing the login panel is only a card displayed in my Main class.
    I have followed the example at http://java.sun.com/docs/books/tutorial/uiswing/components/dialog.html
    Can anyone please assist me? I would greatly appreciate it. ;o)
    Here is some code if it helps:
    EntryPoint.java -----------------------------
    public class EntryPoint extends JFrame {
        //instantiate the main frame
        public JFrame frame = new JFrame();
        //create a panel to add all of the components to
        private JPanel cards = new JPanel();   
        LoginClass lc = new LoginClass();
        public EntryPoint() {
            cards.add("login", lc);
            //add the panel to the frame
            frame.getContentPane().add(cards, BorderLayout.CENTER);
            frame.getContentPane().add(buttons, BorderLayout.PAGE_END);
            //Display the window.
            frame.pack();
            frame.setVisible(true);
    }LoginClass.java ----------------------------------
    public class LoginClass extends JPanel  {
        private JButton loginB = new JButton("login"');
        CustomDialog customDialog;
        public boolean loginProceed = false;
        public LoginClass() {
            //this is where it shows in the example i have to pass parameters
    //        customDialog = new CustomDialog(frame, "geisel", this);
    //        customDialog.pack();
            this.setLayout(new GridLayout());
            this.add(loginBut);
            //set action listener to button ..................
        public boolean loginBut_actionPerformed(ActionEvent e) {
           //if password needs to be changed, invoke the dialog with this text
    //                        customDialog.setLocationRelativeTo(frame);
    //                        customDialog.setVisible(true);
    //                        String s = customDialog.getValidatedText();
    //                        if (s != null) {
    //                            //The text is valid.
    //                            setLabel("Congratulations!  "
    //                                     + "You entered \""
    //                                     + s
    //                                     + "\".");
    }My actual dialog is pretty much the same as
    http://java.sun.com/docs/books/tutorial/uiswing/components/example-1dot4/CustomDialog.java
    Thanx for your help and time ;o)

    Change the constructor for LoginClass and give it an argument:
    public LoginClass(JFrame frame) {
        customDialog = new CustomDialog(frame, "geisel", this); // this line looks weird but without the code I cannot say for sure that it is wrong.
        customDialog.pack();
        this.setLayout(new GridLayout());
        this.add(loginBut);
    }By the way.. if you are instantiating a JFrame in the main class, why does the main class also extend JFrame? Pick one pattern or the other and stick with it... I recommend that you NOT extend. So your JFrame oriented class should have a member JFrame and the JPanel oriented class should have a JPanel. This is not the way most people do it, but it is better design, even if only marginally so.
    Drake

  • Error when opening the Add-Remove Descriptors dialog

    I've got the error message below when I am trying to open the Add-Remove Descriptors dialog. The problem appears suddenly from one day to another and I don't find the reason. It works in new projects, but does not work on my main project. Where should I find the reason?
    java.lang.NullPointerException
         at oracle.jdeveloper.java.provider.BaseFileProvider.getSourceClass(BaseFileProvider.java:966)
         at oracle.jdeveloper.java.JavaManager.getSourceClass(JavaManager.java:705)
         at oracle.toplink.addin.utils.MWJDevUtils.isOnProjectSourcePath(MWJDevUtils.java:341)
         at oracle.toplink.addin.model.MWDescriptorChooserMetaClassRepository.buildListOfJavaClassNamesInJProject(MWDescriptorChooserMetaClassRepository.java:83)
         at oracle.toplink.addin.model.MWDescriptorChooserMetaClassRepository.refreshOn(MWDescriptorChooserMetaClassRepository.java:63)
         at oracle.toplink.addin.model.MWDescriptorChooserMetaClassRepository.<init>(MWDescriptorChooserMetaClassRepository.java:47)
         at oracle.toplink.addin.ui.action.project.AddRemoveTypeAction$1.<init>(AddRemoveTypeAction.java)
         at oracle.toplink.addin.ui.action.project.AddRemoveTypeAction.buildAvailableTypes(AddRemoveTypeAction.java:70)
         at oracle.toplink.addin.ui.action.project.AddRemoveTypeAction.execute(AddRemoveTypeAction.java:230)
         at oracle.toplink.tsceditor.ui.action.AbstractAction.executeImp(AbstractAction.java:129)
         at oracle.toplink.tsceditor.ui.action.AbstractAction.mav$executeImp(AbstractAction.java)
         at oracle.toplink.tsceditor.ui.action.AbstractAction$1.run(AbstractAction.java:112)
         at java.awt.event.InvocationEvent.dispatch(InvocationEvent.java:209)
         at java.awt.EventQueue.dispatchEvent(EventQueue.java:461)
         at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:242)
         at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:163)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:157)
         at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:149)
         at java.awt.EventDispatchThread.run(EventDispatchThread.java:110)

    I get the same error also, even when I create a new project. I found I can edit the files manually and use that as a work around, but it is incredible time consuming.

  • How to stop the Dialog from being dragged

    I was hoping that someone could tell me when calling a Dialog from Jframe, a how to stop the Dialog from being dragged
    while a dialog is showing.
    When it is visible I can still click and drag the Dialog
    I want to set it so you can not drag it until the dialog has be closed.

    If you don't have access to the parent frame, a "hack" that usually works:
    Frame frame = Frame.getFrames()[0];
    if (null != frame && frame instanceof JFrame){
    JFrame jf = (JFrame)frame;
    JDialog jd = new JDialog(jf, "title");
    ... code here ...
    As each JFrame (or Frame) is opened, its stored in the array of Frames that you can get. Same thing with Dialog.getDialogs(). Almost always, at least so far for me I've never had this problem, the [0] index is the main window opened, or the parent/top frame. I'd put the check in there to be safe and make sure its a JFrame and usually you'll only have the one JFrame.

  • "DEADLOCK" when showing dialog from RMI-callback.

    Hi!
    Today is the 10th day (full time) that I've been searching for a solution in Java Forums and Internet, but I couldn't find anything that helps me. Help is extremely appreciated, otherwise I'll go crazy! :-)
    The problem is that RMI-callback thread "somehow blocks" the Event Dispatch Thread.
    I want to do following:
    1) I push the button in the client (btDoSomething)
    (MOUSE_RELEASED,(39,14),button=1,modifiers=Button1,clickCount=1 is automatically pushed onto EventQueue)
    2) btDoSomethingActionPerformed is invoked
    3) inside of it I make a call to RMI-server (server.doSomething())
    4) from this server method I invoke RMI-callback back to the client (client.askUser())
    5) in the callback I want to display a question to the user (JOptionPane.showConfirmDialog)
    6) user should answers the question
    7) callback returns to server
    8) client call to the server returns
    9) btDoSomethingActionPerformed returns and everybody is happy :-)
    This works normally in normal Client, that means, while a button is pushed, you can show Dialogs, but with RMI callback I get problems.
    I just made a small client-server sample to simulate real project. What I want to achieve is that client invokes server method, server method does something, but if server method doesn't have enough information to make the decision it needs to do call back to the client and wait for input, so the user gets an JOptionPane.
    Here is my callback method:
        /** this is the remote callback method, which is invoked from the sevrer */
        public synchronized String askUser() throws java.rmi.RemoteException {
            System.out.println("askUser() thread group: " + Thread.currentThread().getThreadGroup());
            System.out.println("callback started...");
            try {
                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        System.out.println("My event started...");
                        JOptionPane.showConfirmDialog(parentFrame, "Are you OK?", "Question", JOptionPane.YES_NO_OPTION);
                        System.out.println("My event finished.");
            }catch (Exception e) {
                e.printStackTrace();
            try {
                Thread.currentThread().sleep(10000);
            }catch (Exception e) {
                e.printStackTrace();
            System.out.println("callback finished.");
            return "Yo!"; // just return anything
        }Here in this sample I let the callback thread sleep for 10 seconds, but in real project I let it sleep infinitely and I want to wake it up after the user has answered JOptionPane. But I have the DEADLOCK, because event queue is waiting for callback to finish and doesn't schedule the "showing dialog" event which contains the command for waking up the callback thread.
    I looked very precisely when the event queue starts again to process events: it is precisely then when btDoSomethingActionPerformed is finished.
    When I'm not accessing GUI inside of the callback, this callback mechanism works perfectly, but as soon as I want to show the dialog from inside of the RMI-callback method, the "AWT Event Dispatch Queue" is somehow frozen until RMI-callback thread is finished (and in turn btDoSomethingActionPerformed terminates) . I cannot explain this weird behaviour!!!
    If I don't use SwingUtilities.invokeLater (I know this shoudn't be done outside of Event Dispatch Thread), but access the GUI directy, my JOptionPane is shown, but is not painted (it is blank gray) until callback thread returns.
    Why showing (or painting) of dialog is not done until btDoSomethingActionPerformed is finished?
    I also tried to spawn a new Thread inside of main RMI-callback thread, but nothing changed.
    I also tried the workaround from some older posting to use myInvokeLater:
        private final static ThreadGroup _applicationThreadGroup = Thread.currentThread().getThreadGroup();
        public void myInvokeLater(final Runnable code) {
            (new Thread(_applicationThreadGroup, new Runnable() {
                public void run() { SwingUtilities.invokeLater(code); }
            ).start();
        }but this didn't help either.
    Then I tried to spawn a new Thread directly from the Client's constructor, so that I'm sure that it belongs to the main appplication thread group. I even started that thread there in the constructor and made it wait for the callback. When callback came in, it would wake up that sleeping thread which should then show the dialog. But this did't help either.
    Now I think that it is IMPOSSIBLE to solve this problem this way.
    Spawning a new Process could work I think, but I'm not really sure if I want do to that.
    I know I could make a solution where server method is invoked and if some information is missing I can raise custom exception, provide the input on client side and call the same server mathod again with this additional data, but for that I need to change server RMI interfaces, etc... to fit in this concept. I thought callback would much easier, but after almost 10 days of trying the callback...I almost regreted it :-(
    Is anyone able to help?
    Thank you very much!
    Please scroll down for the complete sample (with build and run batch files), in case someone wants to try it. Or for the time being for your convenience you can download the whole sample from
    http://www.onlineloop.com/~tornado/download/rmi_callback_blocks_gui.zip
    ######### BEGIN CODE ####################################
    package callbackdialog;
    public interface ICallback extends java.rmi.Remote {
        public String askUser() throws java.rmi.RemoteException;
    package callbackdialog;
    public interface IServer extends java.rmi.Remote {
        public void doSomething() throws java.rmi.RemoteException;
    package callbackdialog;
    import java.rmi.Naming;
    public class Server {
        public Server() {
            try {
                IServer s = new ServerImpl();
                Naming.rebind("rmi://localhost:1099/ServerService", s);
            } catch (Exception e) {
                System.out.println("Trouble: " + e);
        public static void main(String args[]) {
            new Server();
    package callbackdialog;
    import java.rmi.Naming;
    public class ServerImpl extends java.rmi.server.UnicastRemoteObject implements IServer {
        // Implementations must have an explicit constructor
        // in order to declare the RemoteException exception
        public ServerImpl() throws java.rmi.RemoteException {
            super();
        public void doSomething() throws java.rmi.RemoteException {
            System.out.println("doSomething started...");
            try {
                // ask the client for the "missing" value via RMI callback
                ICallback client = (ICallback)Naming.lookup("rmi://localhost/ICallback");
                String clientValue = client.askUser();
                System.out.println("Got value from callback: " + clientValue);
            }catch (Exception e) {
                e.printStackTrace();
            System.out.println("doSomething finished.");
    package callbackdialog;
    import java.rmi.server.RemoteStub;
    import java.rmi.server.UnicastRemoteObject;
    import java.rmi.registry.Registry;
    import java.rmi.registry.LocateRegistry;
    import java.rmi.Naming;
    import javax.swing.JOptionPane;
    import javax.swing.SwingUtilities;
    import javax.swing.JFrame;
    public class Client extends javax.swing.JFrame implements ICallback {
        private final JFrame parentFrame = this;
        private Registry mRegistry = null;
        private RemoteStub remoteStub = null;
        private IServer server = null;
        private final static ThreadGroup _applicationThreadGroup = Thread.currentThread().getThreadGroup();
        /** Creates new form Client */
        public Client() {
            initComponents();
            System.out.println("Client constructor thread group: " + Thread.currentThread().getThreadGroup());
            try {
                server = (IServer)Naming.lookup("rmi://localhost/ServerService");
                // register client to the registry, so the server can invoke callback on it
                mRegistry = LocateRegistry.getRegistry("localhost", 1099);
                remoteStub = (RemoteStub)UnicastRemoteObject.exportObject((ICallback)this);
                Registry mRegistry = LocateRegistry.getRegistry("localhost", 1099);
                mRegistry.bind("ICallback", remoteStub);
            }catch (java.rmi.AlreadyBoundException e) {
                try {
                    mRegistry.unbind("ICallback");
                    mRegistry.bind("ICallback", remoteStub);
                }catch (Exception ex) {
                    // ignore it
            }catch (Exception e) {
                e.printStackTrace();
        /** This method is called from within the constructor to
         * initialize the form.
         * WARNING: Do NOT modify this code. The content of this method is
         * always regenerated by the Form Editor.
        private void initComponents() {
            java.awt.GridBagConstraints gridBagConstraints;
            secondTestPanel = new javax.swing.JPanel();
            btDoSomething = new javax.swing.JButton();
            getContentPane().setLayout(new java.awt.GridBagLayout());
            setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
            setTitle("RMI-Callback-GUI-problem sample");
            addWindowListener(new java.awt.event.WindowAdapter() {
                public void windowClosing(java.awt.event.WindowEvent evt) {
                    formWindowClosing(evt);
            secondTestPanel.setLayout(new java.awt.GridBagLayout());
            btDoSomething.setText("show dialog");
            btDoSomething.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    btDoSomethingActionPerformed(evt);
            gridBagConstraints = new java.awt.GridBagConstraints();
            gridBagConstraints.gridx = 0;
            gridBagConstraints.gridy = 3;
            gridBagConstraints.insets = new java.awt.Insets(10, 0, 0, 0);
            secondTestPanel.add(btDoSomething, gridBagConstraints);
            gridBagConstraints = new java.awt.GridBagConstraints();
            gridBagConstraints.gridx = 0;
            gridBagConstraints.gridy = 1;
            gridBagConstraints.fill = java.awt.GridBagConstraints.BOTH;
            gridBagConstraints.weightx = 1.0;
            gridBagConstraints.weighty = 1.0;
            getContentPane().add(secondTestPanel, gridBagConstraints);
            pack();
        private void btDoSomethingActionPerformed(java.awt.event.ActionEvent evt) {                                             
            System.out.println(java.awt.EventQueue.getCurrentEvent().paramString());
            try {
                server.doSomething(); // invoke server RMI method, which will do the client RMI-Callback
                                      // in order to show the dialog
            }catch (Exception e) {
                e.printStackTrace();
        private void formWindowClosing(java.awt.event.WindowEvent evt) {                                  
            try {
                mRegistry.unbind("ICallback");
            }catch (Exception e) {
                e.printStackTrace();
            setVisible(false);
            dispose();
            System.exit(0);
        /** this is the remote callback method, which is invoked from the sevrer */
        public synchronized String askUser() throws java.rmi.RemoteException {
            System.out.println("askUser() thread group: " + Thread.currentThread().getThreadGroup());
            System.out.println("callback started...");
            try {
                SwingUtilities.invokeLater(new Runnable() {
                    public void run() {
                        System.out.println("My event started...");
                        JOptionPane.showConfirmDialog(parentFrame, "Are you OK?", "Question", JOptionPane.YES_NO_OPTION);
                        System.out.println("My event finished.");
            }catch (Exception e) {
                e.printStackTrace();
            try {
                Thread.currentThread().sleep(10000);
            }catch (Exception e) {
                e.printStackTrace();
            System.out.println("callback finished.");
            return "Yo!"; // just return anything
         * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    Client client = new Client();
                    client.setSize(500,300);
                    client.setVisible(true);
        // Variables declaration - do not modify
        private javax.swing.JButton btDoSomething;
        private javax.swing.JPanel secondTestPanel;
        // End of variables declaration
    1_build.bat
    javac -cp . -d . *.java
    rmic callbackdialog.ServerImpl
    rmic callbackdialog.Client
    pause
    2_RunRmiRegistry.bat
    rmiregistry
    pause
    3_RunServer.bat
    rem java -classpath .\ Server
    java callbackdialog.Server
    pause
    4_RunClient.bat
    java callbackdialog.Client
    pause
    ######### END CODE ####################################

    I can understand that only partially, because SwingUtilities.invokeLater puts(redirects) my runnable object directly into AWT thread. The only conclusion I can draw from all things that I have tried until now , is that SwingUtilities.invokeLater(<showing the dialog>) invoked from a RMI thread somehow have lower "priority" than events coming directly from the AWT-thread and therefore it is held back until normal awt event completes (in this case BUTTON_RELEASED).
    But what I don't understand is the fact that the dialog is not shown even If I create and start a new thread from the client's constructor. This thread has nothing to do with RMI as it is in the main thread group:
        private BlockingObject dialogBlocker = new BlockingObject();
        private BlockingObject blocker = new BlockingObject();
        public Client() {
            initComponents();
            (new Thread() {
                public void run() {
                    try {
                        dialogBlocker.sleep(0);
                        System.out.println("My event started...");
                        JOptionPane.showConfirmDialog(parentFrame, "Are you OK?", "Question", JOptionPane.YES_NO_OPTION);
                        blocker.wake();
                        System.out.println("My event finished.");
                    }catch (Exception e) {
                        e.printStackTrace();
            }).start();
            ...Callback is then only used to wake up this thread which should display the dialog:
        public Object askUser() throws java.rmi.RemoteException {
            System.out.println("callback started...");
            dialogBlocker.wake();
            blocker.sleep(0);
            System.out.println("callback finished.");
            return userChoice; // return anything I don't care for now
    class BlockingObject {
        public void sleep(long timeout) {
            synchronized(this){
                try {
                    wait(timeout);
                }catch (InterruptedException e) {}
        public void wake() {
            synchronized(this){
                notifyAll();
        }In this case the dialog is shown, but it is NOT painted, so I have deadlock again. Why it is not painted?!?
    Haven't I uncouple it from RMI-Thread?
    But perhaps I'm looking at the wrong side of the whole thing.
    If I invoke server.doSomething (as ejp proposed) in a separate thread, then everything is fine (except that I cannot use this solution in my project :-( ).
    It seems that the whole problem is NOT AT ALL related to callback itself, but rather to the fact that if client invokes remote call, even dialogs can't be shown until the rmi call returns to the client.
    Thank you, Drindilica

  • Flash 10.0.2 Air Setting Dialog Doesn't Appear

    I can't seem to get the Air Setting dialog window to appear (Flash 10.0.2 with Adobe AIR 1.5) . All I see if the SWF exporting window which runs and disappears.
    However, I tested this on another machine (mac) which is running Flash 10.0 and Adobe AIR 1.1, the AIR Setting dialog windows comes up and I'm able to create an AIR app.
    Has anyone else run into this problem as well?

    UniQRO,
    AIR 2 is not supposed to show in the player dropdown in the publish settings.  The steps that you followed to install the AIR SDK in CS4 is overlaying AIR 1.5 SDK files with AIR 2 SDK files.  The player target is still showing AIR 1.5, but you actually use AIR 2 SDK to publish the .air file if you overlaying the files correctly.  If you want to use the AIR 2 features (API), you need to change the namespace in the application descriptor file (swfname-app.xml) from 1.5 to 2.0.
    Does it crash when you compile a brand new fla file that target Adobe AIR 1.5 with a trace statement like trace('a');?  Please give that a try and let me know.
    If it still crashed with the simple fla file, it might be due to a problem overlaying the files.  If that the case, you might need to uninstall Flash, reinstall Flash, run the 10.0.2 updater, and overlay the files again.  If it happens to a particular fla file, we will need to follow up with you further.
    Thanks,
    San

  • Calling Dialog from a dialog- size constraints

    Hi,
    I am using Jdev version 11.1.1.7.1.
    I am calling a taskflow and running it as a dialog. I have a requirement to call another taskflow which runs as dialog from this dialog. When I do so, my child dialog is restricted within the parent dialog space. If the size of my child dialog is greater than my parent dialog, I get a scroll bar on the parent dialog, and have to scroll through it to view the child dialog completely.
    Is there a way I could avoid the scroll bar or render the child dialog outside the parent space ? What setting could be used?
    Thanks in advance,
    Punin

    You can only make the parent dialog biet to give the child more room.
    Timo

  • Stop "add new events" dialog?

    Hi, the iCal I have on my desktop is a simple one (v.2.0.5). It has events on it already. I don't want to add new ones, but on opening the calendar, every time it shows a dialog box saying "this calendar contains new events". The events it wants to add are duplicates of ones already listed. I always say "cancel" but is there a way to stop this dialog from ever appearing? Thank you.

    iCal I have on my desktop
    Normally iCal is run from the Dock, or at startup. The Dock is a link back to the application in the Applications folder. I would guess, from your description, that you have a calendar file on your desktop; double-clicking that would run iCal (if not already running) which would then try adding any events in the desktop file to your calendars.
    If iCal is not in your Dock find it in Applications and drag it over to the Dock; this will make the necessary link. If my assumption is correct you can delete the desktop file.
    AK

  • Stop warning dialog from appearing with custom error codes

    I have created a custom error file using the 'Error Code Editor', I want to disable the warning dialog that appears when my error codes are detected. How can I do this?
    <?xml version="1.0" encoding="ISO-8859-1"?> <nidocument> <nicomment> </nicomment> <nierror code="5000"> SUCCESS </nierror> <nierror code="5012"> INVALID HANDLE </nierror> </nidocument>
    I want to stop this from appearing ->

    Hi eamo2020,
    Are you passing your error cluster through to a Simple Error Handler VI (the last function to execute on your block diagram?) 
    When your custom error is flagged, is it prompting the dialog box each time?
    If this is the case, you can set the 'type of dialog' input, as a constant. You set this constant as 'no dialog', from the five options available.
    The next time you run your code, the pop up dialog won't appear and you will be able to handle your errors programmatically, instead of through the dialog box.
    I hope this helps!
    Dom C

  • How can I know the name(s) of font from built-in font dialog from Word VSTO AddIns.

    Hi, All !!
    I would like to extract some values from the built-in font dialogbox "wdDialogFormatFont" through VSTO AddIns.
    Figured out short codes;
    Microsoft.Office.Interop.Word.Dialog 
    F_DLG  =  Globals.ThisAddIn.Application.Dialogs[Microsoft.Office.Interop.Word.WdWordDialog.wdDialogFormatFont];    
    F_DLG.Show();
    MessageBox.Show( F_DLG.FontMajor.ToString() );
    MessageBox.Show( F_DLG.FontHighAnsi.ToString() );
    Ther last two lines (red ones) do not work at all.
    How can I know the name of the fonts ? (English and Non-English)
    In VBA, it works beautifully.
    Thanks !!

    Hi,
    According to the description, you want to get some options from the build-in dialog dispaly by code.
    As far as I know, we can declare an dynamic object to achieve the goal. Here is the code for your reference:
    dynamic F_DLG = Globals.ThisAddIn.Application.Dialogs[Microsoft.Office.Interop.Word.WdWordDialog.wdDialogFormatFont];
    F_DLG.Show();
    MessageBox.Show(F_DLG.FontMajor);
    Also we can use refrection to get the property we wanted like below:
    Microsoft.Office.Interop.Word.Dialog F_DLG = Globals.ThisAddIn.Application.Dialogs[Microsoft.Office.Interop.Word.WdWordDialog.wdDialogFormatFont];
    F_DLG.Show();
    MessageBox.Show(F_DLG.GetType().InvokeMember("FontMajor", BindingFlags.GetProperty, null, F_DLG, null).ToString());
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Add Option of choosing values from list in "Person Responsible" field of Cost Center Master

    Dear All,
    Could anyone advise me how can I add the option to Choose Values from list to field "Person Responsible",
    in Cost Center Master Data ?
    The Technical Name of this field is VERAK, and currently it is an open field.
    I would like to allow the user to choose values from existing list.
    Thank you!
    Orly

    Hi Orly,
    You have take it to your ABAPer, who will have to modify the attributes of CSKSZ-VERAK field in CSKSZ structure. ABAPer will have to define it with foreign key and introduce the name of the table, which will be used for deriving the available values. No standard table exists for it, but you can either create your own Z-table or take it from users table (USR02) if you have the necessary information there. Of course, this action would account for modification of standard SAP structure.
    Regards,
    Eli

  • HT201514 i can't see the time capsule from airport utilities. i did follow "From the Apple menu, choose System Preferences. Choose View Time Machine. Set Time Machine to On if it is off. .....but i couldn't find the time capsule from airport utility.....

    i did follow "From the Apple menu, choose System Preferences. Choose View > Time Machine. Set Time Machine to On if it is off "
    . .....but i couldn't find the time capsule from airport utility..... why?

    Are you using a new 802.11ac Time Capsule - the "tall" one - and are you still using Mac OS X 10.6.8?
    You need OS X 10.7.5 "Lion" or later, or an iOS device, to configure an 802.11ac Time Capsule:
    http://manuals.info.apple.com/MANUALS/1000/MA1645/en_US/airport_time_capsule_802 11ac_setup.pdf
    See page 12.

Maybe you are looking for

  • Problem with the  Adobe Acrobat version 10.1.4 (Review Tracker)

    Friends!: I have a big problem, just a few days ago we installed the Adobe Acrobat version 10.1.4 The next version this is creating problems for the users, because normally we use the review (Track Review) to comment online, but this began to fail, b

  • Mac OS X utilities

    Hey , my Macbook pro , is asking me for a (4 number password) and  my original password is not working  helpmeet please ., ((( Mac OS X utilities ))) version 1.0(33)

  • Error when trying to open EBS R12 on Windows 8.

    Hi, I have recently upgraded to windows 8 and am now getting the Below Error when trying to open Oracle EBS R12, any help would be appreciated: You have encountered an unexpected error. Please contact the System Administrator for assistance. Click he

  • Cannot start j2ee

    i use win xp pro, j2sdk 1.4.0, beta 2, now installed j2sdkee 1.3.1 under C:\Program Files\, but cannot start all commands like j2ee, i got such error message: "'C:\Program' is not recognized as an internal or external command, operable program or bat

  • Storing iStore purchases on iCloud

    I have purchased several HD films & programmes recently and my iTunes library which is on an external hard drive is getting very full I need to free up space on my external hard drive & wondered if I need to store them elsewhere ie iCloud, in order t