Problem on disable the WSStoreForwardInternalJMSServer on BEA configuration

Hi..i Have a problem with a BEA configuration on 8.3 sp2 version.
While i have configured my JMS server, on a BEA instance Server,and i found a problem relative to a double JMSServer one it's mine and other one is start automatically from Server with a name like
---- WSStoreForwardInternalJMSServer-----
Can I disable this secondary JMSServer??
So Help me
HYYYYYYY

Thanks All....and specially for the specialist in BEA..I solved my own problem thanks my intelligence.
Regard to the problem i have seen that,in the preceeding installation of bea instance,someone,BEA EXPERT :) :),has configured in the Server instance TAB(WebServices) the voice FILE STORE.
This has automatically configured the server WSStoreForwardInternalJMSServer in JMS Server section.
So i have dechecked the voice FILE STORE and i solved my problem....

Similar Messages

  • Firefox home doesn't load my bookmarks ? I have tried to do everything that they suggest to fix the problem from disabling the add-ons to reseting my data. nothing works, and yes I did check to see if private browser is not on. I am running window xp and

    firefox home doesn't load my bookmarks ? I have tried to do everything that they suggest to fix the problem from disabling the add-ons to reseting my data. nothing works, and yes I did check to see if private browser is not on. I am running window xp and everything is up to date.
    == This happened ==
    Every time Firefox opened
    == from the first time I tried it.

    Are you talking the the Firefox Home iPhone App?
    If not, please explain what you mean a little clearer.
    This is the location of the '''Firefox Home iPhone App Support Forum''':
    https://support.mozilla.com/en-US/forum/6

  • Problem in Disabled the Menus

    hi everyone,
    Hello am developing a application in java. I used InternalFrame and JDesktop.. My problem is after the login i want to disabled the menu in the Menubar when the user login sucessfully it will be enabled and ready to click. But am having a problem because my code in login is separated into the MainFrame.. i got to java file 1. MainFrame_PCM.java and MyLoginInternalFrame.java. So when the MainFrame_PCM was run it will call MyLoginInternalFrame as my login in window what i want is by default the MenuBar in MainFrame_PCM was set disabled and after login successfully i will set them enabled .Hope you understand my problem .Any help will do ..
    Thank you very much in advance
    Armando Dizon

    Hi Pravinth,
    Thank you very very much in reply in my email.Below is my code of the MainFrame and the LoginFrame as i mention in my previous post. The scencario in the thread that similar in my problem is you have to go to Main menu and click login and login form or frame will pop up in my case automatic popup and what i want sir is when the popup frame will appear and successfully login the Menu will be setEnabled. Thank you i really apprecaite your help
    /*File name : MainFrame_PCM.java*/
    import javax.swing.JInternalFrame;
    import javax.swing.JDesktopPane;
    import javax.swing.JMenu;
    import javax.swing.JMenuItem;
    import javax.swing.JMenuBar;
    import javax.swing.JFrame;
    import javax.swing.KeyStroke;
    import java.awt.event.*;
    import java.awt.*;
    * MainFrame_PCM.java is a 1.4 application that requires:
    * MyInternalFrame.java
    public class MainFrame_PCM extends JFrame implements ActionListener
    JDesktopPane desktop;
    public MainFrame_PCM()
    super("Peso Collection Module");
    //Make the big window be indented 50 pixels from each edge
    //of the screen.
    int inset = 50;
    Dimension screenSize = Toolkit.getDefaultToolkit().getScreenSize();
    setBounds(inset, inset,
    screenSize.width - inset*2,
    screenSize.height - inset*2);
    //Set up the GUI.
    desktop = new JDesktopPane(); //a specialized layered pane
    createLoginFrame(); //create first "window"
    setContentPane(desktop);
    setJMenuBar(createMenuBar());
    //Make dragging a little faster but perhaps uglier.
    desktop.setDragMode(JDesktopPane.OUTLINE_DRAG_MODE);
    /* This portion creates the Menu Tool Bar.
    // And creates the Menu Toor Bar sub menus.
    // Ining parti na ning code a ini gawa yang
    //menu Bar and Sube menus pra keng Main Menu
    protected JMenuBar createMenuBar()
    JMenuBar menuBar = new JMenuBar();
    //Set up Main Menus
    JMenu menu = new JMenu("Main Menu");
    menu.setMnemonic(KeyEvent.VK_D);
    menuBar.add(menu);
    JMenu menu2 = new JMenu("Maintenance");
    menu2.setMnemonic(KeyEvent.VK_M);
    menuBar.add(menu2);
    ///////////////////// SUB MENUS CODE HERE ///////////////////
    //a submenu
              menu2.addSeparator();
              JMenu submenu = new JMenu("Manage Users");
              submenu.setMnemonic(KeyEvent.VK_S);
              JMenuItem menuItem8 = new JMenuItem("Add New User");
              menuItem8.setAccelerator(KeyStroke.getKeyStroke( KeyEvent.VK_A, ActionEvent.ALT_MASK));
              menuItem8.setActionCommand("adduser");
              menuItem8.addActionListener(this);
              submenu.add(menuItem8);
              JMenuItem menuItem9 = new JMenuItem("Edit User Profile");
              menuItem9.setAccelerator(KeyStroke.getKeyStroke( KeyEvent.VK_E, ActionEvent.ALT_MASK));
              menuItem9.setActionCommand("editusers");
              menuItem9.addActionListener(this);
              submenu.add(menuItem9);
              menu2.add(submenu);
              JMenuItem menuItem10 = new JMenuItem("Delete User");
              menuItem10.setAccelerator(KeyStroke.getKeyStroke( KeyEvent.VK_D, ActionEvent.ALT_MASK));
              menuItem10.setActionCommand("deleteusers");
              menuItem10.addActionListener(this);
              submenu.add(menuItem10);
              menu2.add(submenu);
              //Set up the Maintenance Menu item.
    JMenuItem menuItemMtc = new JMenuItem(" Program Access");
    menuItemMtc.setMnemonic(KeyEvent.VK_U);
    // menuItemMtc.setAccelerator(KeyStroke.getKeyStroke( KeyEvent.VK_L, ActionEvent.ALT_MASK));     
    menuItemMtc.setActionCommand("manage_users");
    menuItemMtc.addActionListener(this);
    menu2.add(menuItemMtc);
              /*--------End of Maintenance Menu item--------*/
    //Set up the Main menu item.
    JMenuItem menuItem = new JMenuItem("Login");
    menuItem.setMnemonic(KeyEvent.VK_L);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_L, ActionEvent.ALT_MASK));     
    menuItem.setActionCommand("login");
    menuItem.addActionListener(this);
    menu.add(menuItem);
              JMenuItem menuItem2 = new JMenuItem("User Maintenance");
    menuItem2.setMnemonic(KeyEvent.VK_N);
    menuItem2.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_N, ActionEvent.ALT_MASK));     
    menuItem2.setActionCommand("user");
    menuItem2.addActionListener(this);
    menu.add(menuItem2);
              //Set up the QUIT menu item.
    menuItem = new JMenuItem("Quit");
    menuItem.setMnemonic(KeyEvent.VK_Q);
    menuItem.setAccelerator(KeyStroke.getKeyStroke(
    KeyEvent.VK_Q, ActionEvent.ALT_MASK));
    menuItem.setActionCommand("quit");
    menuItem.addActionListener(this);
    menu.add(menuItem);
    /*--------End of Main Menu item--------*/
    return menuBar;
    //////////////////// END OF SUB MENUS HERE ////////////////////
    //React to Sub menu selections. keni la mayayaus deng forms potng me click!
    public void actionPerformed(ActionEvent e)
    if ("login".equals(e.getActionCommand())) //new login fram
    createLoginFrame();
                   else if ("user".equals(e.getActionCommand())) //new temporary ya ini
                   createFrame();
                   else if ("adduser".equals(e.getActionCommand())) //new user frame
                   createManageUserFrame();//call the Manage User Form Functions
                   else if ("editusers".equals(e.getActionCommand())) //new user frame
                   createEditUserFrame();//call the Edit User Form Functions
                   else if ("deleteusers".equals(e.getActionCommand())) //new user frame
                   createDeleteUserFrame();//call the Edit User Form Functions
              else //quit
    quit();
         /*-------------- End Of Sub Menus Reactions ------------*/     
         //Create a new internal frame for User Login
              protected void createLoginFrame()
                   MyLoginInternalFrame frame = new MyLoginInternalFrame();
                   frame.setVisible(true); //necessary as of 1.3
                   desktop.add(frame);
                   try
                        frame.setSelected(true);
                   } catch (java.beans.PropertyVetoException e) {}
              //Create a new internal frame for User Maintenance TEMPORARY YA INI BOI
              protected void createFrame()
                   MyInternalFrame frame = new MyInternalFrame();
                   frame.setVisible(true); //necessary as of 1.3
                   desktop.add(frame);
              try
                        frame.setSelected(true);
                   } catch (java.beans.PropertyVetoException e) {}
              // Create a new internal fram for Manage Users
              protected void createManageUserFrame()
                   ManageUserForm frame = new ManageUserForm();
                   frame.setVisible(true); //necessary as of 1.3
                   desktop.add(frame);
              try
                        frame.setSelected(true);
                   } catch (java.beans.PropertyVetoException e) {}
              // Create a new internal fram for Edit Users
              protected void createEditUserFrame()
                   createEditUserForm frame = new createEditUserForm();
                   frame.setVisible(true); //necessary as of 1.3
                   desktop.add(frame);
              try
                        frame.setSelected(true);
                   } catch (java.beans.PropertyVetoException e) {}
              // Create a new internal fram for Edit Users
              protected void createDeleteUserFrame()
                   createDeleteUserForm frame = new createDeleteUserForm();
                   frame.setVisible(true); //necessary as of 1.3
                   desktop.add(frame);
              try
                        frame.setSelected(true);
                   } catch (java.beans.PropertyVetoException e) {}
    //Quit the application.
    protected void quit() {
    System.exit(0);
    * Create the GUI and show it. For thread safety,
    * this method should be invoked from the
    * event-dispatching thread.
    private static void createAndShowGUI() {
    //Make sure we have nice window decorations.
    JFrame.setDefaultLookAndFeelDecorated(true);
    //Create and set up the window.
    MainFrame_PCM frame = new MainFrame_PCM();
    frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    //Display the window.
    frame.setVisible(true);
    public static void main(String[] args) {
    //Schedule a job for the event-dispatching thread:
    //creating and showing this application's GUI.
                        javax.swing.SwingUtilities.invokeLater(new Runnable()
                             public void run() {
                                  createAndShowGUI();
    /*File name : MyLoginInternalFrame.java*/
    import javax.swing.JInternalFrame;
    import javax.swing.JLabel;
    import javax.swing.JButton;
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import java.sql.*;
    public class MyLoginInternalFrame extends JInternalFrame implements ActionListener
         static final int xOffset = 320, yOffset = 200;
         JPasswordField pass_word;
         JTextField user_name;
         JLabel lbl;
         JButton btnclear, btnexit,btnsearch;
         String url;
         Connection connect;
    public MyLoginInternalFrame()
         super("User Login ");
                        //Database Connectivity
                        try
                        url = "jdbc:odbc:Plogbook";
                        Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                        connect = DriverManager.getConnection(url);
                             catch(ClassNotFoundException cnfex)
                             cnfex.printStackTrace();
                             System.err.println("Failed to load JDBC/ODBC driver");
                             System.exit(1);     
                             catch (SQLException sqlex)
                             sqlex.printStackTrace();     
                             catch (Exception ex)
                             ex.printStackTrace();     
                   //Fields to be Set Up
                   Container c = getContentPane();
                   GridLayout ly = new GridLayout(0,3);
                   c.setLayout(ly);
                   //Blank Labels
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   lbl = new JLabel(" Username:");
                   c.add(lbl);
                   user_name = new JTextField(20);
                   user_name.setToolTipText("Enter Your User Name");
                   c.add(user_name);
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   lbl = new JLabel(" Password:");
                   c.add(lbl);
                   pass_word = new JPasswordField(200);
                   pass_word.setToolTipText("Enter Your Password");
                   c.add(pass_word);
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   btnsearch = new JButton("Login");
                   btnsearch.addActionListener(this);
                   c.add(btnsearch);
                   //btnclear = new JButton("Clear");
                   //btnclear.addActionListener(this);
                   //c.add(btnclear);
                   btnexit = new JButton("Cancel");
                   btnexit.addActionListener(this);
                   c.add(btnexit);
                   //Blank Labels
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   lbl = new JLabel(" ");
                   c.add(lbl);
                   setSize(300,150);
                   setLocation(xOffset, yOffset);
                   //Quit the application.
                   protected void quit()
                   System.exit(0);
                   public void actionPerformed(ActionEvent e)
                   // Clear the fields
                        if(e.getSource() == btnclear)
                        user_name.setText("");
                        pass_word.setText("");
                   // Exit the program
                        if(e.getSource() == btnexit)
                        //setVisible(false);
                        quit();
                             // Search the file
                                  if(e.getSource()==btnsearch)
                                            try
                                                 Statement statement=connect.createStatement();
                                                 String sqlQuery ="SELECT * FROM a_user WHERE user_id = '"+ user_name.getText() + "' AND password = '"+ pass_word.getText() + "'";
                                                 ResultSet rs = statement.executeQuery(sqlQuery);
                                                 if(rs.next())
                                                      setVisible(false);
                                                      JOptionPane.showMessageDialog(null,"ACCESS GRANTED");     
                                                      else
                                                           JOptionPane.showMessageDialog(null,"ACCESS DENIED");
                                                           user_name.setText("");
                                                           pass_word.setText("");
                                                 catch (SQLException sqlex)
                                                      sqlex.printStackTrace();          
                                                      JOptionPane.showMessageDialog(null, sqlex.toString());     
                   public static void main(String arg[])
                             MyLoginInternalFrame frm = new MyLoginInternalFrame();
                             frm.show();
    }

  • Problem in starting the web-server after configuring .so on AIX

    I am trying to configure a .so file in iplanet fasttrack web server 4.1 on AIX 4.3. I have build the .so file on IBM AIX 4.3. But while starting the web-server it failed to start.It fails when I include the following in obj.conf "Init fn="test-init" config="ConfigFile". While starting web-server I got the following :
    server terminated (signal 11): watchdog is restarting it
    failure: server initialization failed
    Any pointers on this would be helpful.

    I got similar errors in the past when the web server process was running in the background. Sometimes shutting down WAS does not work.
    Before you start WAS ensure that no java process is running or better try rebooting.

  • Problem in finding the Communication channels under configuration

    helo all.
    i want to look at communication channels under cd1 (businness system)but i couldnt found.
    but when i take a look at these through my neighboous systems i did find those.
    can any body tell me wat would be the story behind this and do i need to have any settings under my system in XI.
    waiitng for u r response.
    bye.
    regards.
    seeta ram.

    Hi,
    If the objects are activated then u must be able to see it. Have u checked in the objects tab...where all the CC are listed under their respective business systems. Are you trying with ur user id in ur colleagues comp or their user id..?? Try to refresh the cache.
    Thanks!!

  • Howto disable the firewall in AEBS Airport Extreme Base Station

    Is there any way to do that?
    Motivation: I don't want to reroute ports to a DHCP address which changes constantly. Plus: Editing the port reroute list is a pain!
    I have no problems with my Asus WL500gP but this thing just doesn't get printing right while all the other funktions work flawlessly.
    AEBS plus: Canon ip3000 works perfect over WLAN
    AEBS minus: All services relying on ports being redirected are blocked
    I have a firewall in my mac which I can switch on and allow services to whatever I want, for the Airport Extreme Base Station, this simply does not work. If I donwload a new Ubuntu torrent with the Asus it's yipiiee, with the AEBS it's 0KB/s. Great.

    The only way to disable the "firewall" is to configure the AEBS to act as a bridge. In that mode it is not providing local IP addresses for local machines.
    Motivation: I don't want to reroute ports to a DHCP address which changes constantly. Plus: Editing the port reroute list is a pain!
    You can configure the AEBS to use DHCP. You can give one of your computers a static IP address outside the range used by the AEBS's DHCP server. Then you can configure the AEBS to recognize that computer as default host (thing DMZ) or you can forward selected ports only to that computer. Once configured you won't need to change anything since that computer is at a static IP address.

  • Problem in Assigning the Business System

    Hi,
       I have problem in Assigning the Business System at Configuration when I am trying to configure the Communication Channel. I had created two Software Components and also Two Technical Systems (Third Party) and Business System and I imported the SWC into repository and done with the design and now I am not able to Configure, can anyone help me out as this is very urgent.
    Thanks in advance
    Andy

    Hi Andy,
    Check if you have created you business system according to the steps given here, maybe you missed out on something.
    Configuring a Business System
    http://help.sap.com/saphelp_nw04/helpdata/en/ae/e3bd4f6b61e146ad1384954ecabb41/content.htm
    Defining a Business System as a Service
    http://help.sap.com/saphelp_nw04/helpdata/en/3e/60653f0c9fa075e10000000a114084/content.htm
    Regards,
    Chandra

  • Adobe Acrobat Add-On 11.0.6.70 will not allow me to download a .pdf file. Disabling the Add-On allows me to download the .pdf.

    I attempted to download a .pdf file and open it with Adobe Add-On 11.0.6.70 in FF 25.0.1 and got a message that the file was damaged and could not be repaired. I called the site's Tech Support and they requested that I try the download with another (Ugh!) browser and the download worked. I went back and disabled the Adobe Add-On in FF and the download worked in FF also. Not sure who developed the Add-On but whoever did so, left a bug in the process.

    HI central_texan,
    Please update to the latest version of Firefox by going to the About Firefox in the Firefox menu. If downloads hang at the last minute (just before reaching 100%), the cause might be antivirus software which tries to scan the file and during that process hangs the Firefox instance. It may also happen when the download becomes corrupt. What I want to know is in the System Requirements what " Firefox Extended Support Release" means.
    In order to fix the problem, try disabling the scanning as follows:
    # In the [[Location bar autocomplete|Location bar]], type '''about:config''' and press '''Enter'''. The about:config "''This might void your warranty!''" warning page may appear.
    # Click '''I'll be careful, I promise!''', to continue to the about:config page. A list of settings should appear
    # Filter the list by typing in the search bar at the top. Type in ''scanWhenDone''. You should now find the '''browser.download.manager.scanWhenDone''' preference.
    #Double-click on that preference to set the value to ''false''.
    #Next, try to download something and see if it still hangs.
    Please reply and tell us whether this helped you!

  • Is there any way to disable the "Device Configuration" Screen under ccmuser options screen?

    Hi,
    I am running Communications Manager 7.1.5.31900-3 and I am trying to enable users to set their own PIN numbers. The only way I know that this can be done is through CCM (not good from admin burden) and the User Options Screen. The problem with the Cisco User Options Screen is that the "Device Configuration" screen contains a lot of options that I do not want the users to see, so I would like to be able to disable this screen and just leave the users with a change PIN screen. Is there any way you can do this?
    Thanks

    Hi Rob,
    Thanks for that I did have a look at this setting and although you can disable most settings it does not seem you can disable the "Device Configuration" section. Do you have any other ideas on how you might be able to do it or is it impossible?
    Thanks

  • I have 2 ipad 2s.  On the newer one I can log in and update to IOS 5 with no problem.  On the older one I get the message "Your Apple ID has been disabled."  Why does it work on one ipad and not on the other?

    I have 2 ipad 2s.  On the newer one I could log in and update to IOS 5 withno problem.  On the older one I get the message "Your Apple ID has been disabled." No other explanation.  Why can I log in on one ipad and I'm disabled on the other?

    Well, I spoke too soon.  Yes, I'm using the same account on both iPads, but I just changed my password for the umpteenth time and now I get the disabled message on both iPads.  Just yesterday I was able to upgrade one to IOS 5 but got the error message on the other.  I'm getting more confused by the minute.

  • I have a problem with my iPhone 5 stopped working the sleep / power and simultaneously refused to obey the HOME button. I can not use either one or the other. I can not enable or disable the device, display lights up when you plug the charger. same displa

    I have a problem with my iPhone 5 stopped working the sleep / power and simultaneously refused to obey the HOME button. I can not use either one or the other. I can not enable or disable the device, display lights up when you plug the charger. same display works fine as it is surprising. or maybe someone knows what is the reason for this? is there any way to solve this problem?

    More than likely its a hardware issue, I have never encountered such a problem and best bet is to just go get it replaced. If you have insurance on your device apple will replace it as long as there was no water damage, if you dont have insurance they will charge $200 more or less. Hope you get it fixed

  • Problem in reading the JDK1.4Logger configuration file from java prog

    I have written a java program and want to log the messages in a log file , I'm using commons logging with JDK1.4logger as logging subsystem .
    I am facing the problem in reading the JDK1.4Logger configuration file which is commons-logging .properties file from my java program as a result my log messages are appearing directly on the screen while I try to run program , during compilation no error is shown . I have tried to set java.util.logging.config.file ="Path of my commons-logging .properties file " by setting system properties also.
    Please suggest the appropriate solution for this .

    Some webservers won't recognise the resource bundle provided in message-resources
    In that case, you need to specify that resource bundle information in web.xml at the time of specifying the action servlet like this. Check for the init-param application.
    <servlet>
        <servlet-name>action</servlet-name>
        <servlet-class>org.apache.struts.action.ActionServlet</servlet-class>
        <init-param>
          <param-name>application</param-name>
          <param-value>resource.ApplicationResource</param-value>
        </init-param>
        <init-param>
          <param-name>config</param-name>
          <param-value>/WEB-INF/struts-config.xml</param-value>
        </init-param>
        <init-param>
          <param-name>debug</param-name>
          <param-value>2</param-value>
        </init-param>
        <init-param>
          <param-name>detail</param-name>
          <param-value>2</param-value>
        </init-param>
        <init-param>
          <param-name>validate</param-name>
          <param-value>true</param-value>
        </init-param>
        <load-on-startup>2</load-on-startup>
      </servlet>In this, the drawback is, you can not specify the key for your resource bundle. In the JSP, you have to access the property like this.
    <bean:message key="label.fName"/>

  • Problem with SCs that created before the Name Server was configured

    Hello,
    I have created an SC and developed it.
    When I created it, the Name Server wasn't configured and because of that, when I created new DC for this SC I needed to write the vendor manually. Lets assume I wrote example.org.
    Sometime after I did configured the Name Server and I reserved example.org as a namespace prefix.
    When I create new SC and new DCs in it everything is OK: Instead of writing example.org as my vendor I can choose from a combo box between sap.com and my own which is example.org.
    The problem arises with the SC that has been developed before the Name server was configured: If I create new DC for it the vendor is shaded with sap.com inside with no option to change it, even though the previous DCs for this SC were created under the vendor example.org (which I entered manually).
    I assume I can (with a lot of manual work) create new SC and move the DCs (or only their code) to the newly created SC, where I have the option to choose, but I am looking for more simpler solution. For example, changing a certain configuration file at the SC or so.
    Anyone has an idea?
    Thank you in advance,
    Roy

    Anyone...?

  • Facing Strange Problem in DIR HOW TO DISABLE THE RIGHT CLICK MOUSE IN THE DIRECTOR? (through parent script/ movie?)

    Summary : HARD QUESTION : In the DIR file, the game runs well, right click = no effect. Coz I'm not making right click scripts. BUT in EXE file, right click = ERROR.
    Explanation :
    In the Adobe Director screen, this DIR file game is worked 100%.
    I tested right click EVERYWHERE... NOTHING HAPPENS.
    Because I don't make any programming with "on rightmouseup" or "on rightmousedown" command.
    THEN, I published it into EXE...
    I tested right click EVERYWHERE...I hoped the result will be the same as DIR tests....
    WHEN I RIGHT CLICK IN THE AREA THAT'S GIVEN ON EXITFRAME ME, IT SHOWS ERROR, CHANGING PICTURES.....
    this does not happened in the DIR file...
    I didn't make a runmode program or anything else.... This is awkward... mystery for me...
    WHY THERE'S A DIFFERENCE IN DIR and EXE... it should be exactly the same result.
    I have used Director for years.... This is really strange for me...
    >>>>>>>>HOW TO DISABLE THE RIGHT CLICK MOUSE IN THE DIRECTOR?
    THIS ONE is useless.... It doesn't prevent the rightmouse click,...
          on rightmouseup me
                 nothing
         end
          on rightmousedown me
                 nothing
         end

    Dear Adobe Forums friends
    I need your help and guide through this problem...
    In the game's dir file that is run on the DIRECTOR softwawre,
    the game runs perfectly, I can do LEFT CLICKS (coz I programmed the script)
    and when I do RIGHT CLICKS = there are no effect ( coz I don't do script for it)
    LATER THIS GAME TURNED INTO EXE.
    It supposed to run like the dir file as ABOVE. BUT STRANGELY, WHEN
    I DO RIGHT CLICKS, it turns Error and showing as the picture attachment.
    The right clicks that goes error are above the picture of numeric button only. (in DIR file
    this run normal). I looked into the script behind the numeric button picture, there are only "on exitframe me", there are no script I made inside the "on exitframe me" that is triggering RIGHT CLICKS.
    1. I wonder why there are differences in DIR and EXE effect
    2. Why right click? Left click effects are all normal.
    3. IS THERE ANY WAY TO DISABLE ALL RIGHT CLICKs since the beginning of EXE. So the game will be run normal. I don't need right clicks anyway, but whenever people do right click there will be ERROR.??
    4. Is there any way to STOP THE MESSSAGE BOX TO APPEAR IN FRONT OF THE GAME? (I hate the Dirrector Error Message Box), or auto press OK.
    NB: this game uses Buddy API Xtras, File IO Xtras.
    Thx
    David S

  • A java virus disabled the click + at the left to open new tab. I have reinstalled firefox but the problem is not fixed. what do i do to fix this?

    A java virus disabled the click + at the left to open new tab. I have reinstalled firefox but the problem is not fixed. what do i do to fix this?
    admins of forum feel free to edit post.

    Try disabling the Ask Toolbar extension.

Maybe you are looking for

  • LV8.5.1 Labview memory is full error message Windows Vista 64bit

    I have a small application where the top level vi will no longer load into either LV8.5.1 or LV8.6 (see attachment) when using the project exployer.  Anyone else have this problem? Hardware: ASUS G1 4Gig memory Windows Vista 64bit Regards, Karl Attac

  • How to hide the Navigation and Builder links in edit mode

    I am building a portal that will have outside vendors sharing documents to a site... I would like them to be able to change the file, author or experation date ... but I don't want them to see the naviagtion or builder links when you go into edit mod

  • Wait Step, Exception Handling, Alerts

    Hi Everybody,              I am implementing a BPM scenario. I have a few questions: 1) The wait step i am using in BPm, allows me the min wait time as 1 min, can't I have lesser wait time then that. Lets say 30 secs. 2) Under what conditions should

  • Canon imagerunner C3200 problem - won't print

    Hi to all, I have searched this forum and not found this error/solution. We just switched from PC to Mac and of course all is heaven! Except one tiny issue - going crazy. We have installed the printer driver from Canon for all of our imagerunner prin

  • Adjust image size

    this is probably insanely easy, but I can't figure it out. I need to adjust JUST the height of and image, but when I resize it, it automatically adjusts both the height and width of the image. This is ******* ******* me off. how do I turn it off. I k