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();
}

Similar Messages

  • Dreamweaver encountered problems while constructing the menus from the current menus.xml file

    So, after having trouble with my Photoshop scratch disk, I had to do an archive and install of my Mac OS 10.6.1 then reinstall the Adobe suite. I then had to run the Licensing Repair Tool (http://www.adobe.com/support/contact/licensing.html).
    Now everything works but Dreamweaver, which is throwing the following error:
    "Dreamweaver encountered problems while constructing the menus from the current menus.xml file.
    Please delete the current menus.xml file and rename menus.bak to menus.xml"
    I tried that. menus.bak is a directory, not a file. Even renaming the directory didn't work.
    I saw this http://forums.adobe.com/message/2188511#2188511
    but I don't have a /FlashPlayerTrust/ directory, nor do I see what that has to do with Dreamweaver.
    I couldn't find a corresponding solution for this http://forums.adobe.com/message/862339#862339 for the Mac OS.
    This http://forums.adobe.com/message/3396334#3396334 didn't help, either.
    Anybody have any ideas?
    Thanks!

    This is the error I got after deleting (moving) the configuration directory.
    "No document types have been found in the Configuration/DocumentTypes/ folder. The MMDocumentTypes.xml file may be missing or corrupted. The application will exit now."
    I've reinstalled the entire Adobe CS4 (which fixed my Photoshop problem but created this Dreamweaver problem) and then reinstalled Dreamweaver alone.
    I've also attached a screenshot of the Dreamweaver directory tree with the menus.xml files.

  • 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 Highlighting the menus that are selected in 11g

    Hi,
    While creating a Menu Hierarchy(created using Navigation Panes and NavigationItems) I want the menus to be highlighted, for the one which I select.
    I set the "Selected" property for the NavigationItems to "True". But always the first one in Menu and submenu is selected on PageLoad and also when I select others.
    Thanks

    Try something like this:
    <af:navigationPane>
      <af:commandNavigationItem text="commandNavigationItem 1"
          selected="#{pageFlowScope.selected=='first'}">
        <af:setPropertyListener type="action" from="first"
            to="#{pageFlowScope.selected}"/>
      </af:commandNavigationItem>
      <af:commandNavigationItem text="commandNavigationItem 2"
          selected="#{pageFlowScope.selected=='second' or pageFlowScope.selected==null}">
        <af:setPropertyListener type="action" from="second"
            to="#{pageFlowScope.selected}"/>
      </af:commandNavigationItem>
      <af:commandNavigationItem text="commandNavigationItem 3"
          selected="#{pageFlowScope.selected=='third'}">
        <af:setPropertyListener type="action" from="third"
            to="#{pageFlowScope.selected}"/>
      </af:commandNavigationItem>
    </af:navigationPane>
    {code}
    Notice:  *pageFlowScope.selected==null* - when you first time enter the page, this tab will be selected and change your nick (user617801).                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • 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....

  • 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!

  • Can't access the menus on our Tandberg 3000 MXP - TTC7-09

    It appears the password for our unit has been changed and someone has disabled the menus on screen, now we can't access the unit, from screen, through the network interface or via the data port.
    Can anyone help me with this, is there a hardware reset, or some way other way of re-gaining control.
    At the moment we have no control, can't see or access menus, make calls, can't even see current status. all we see when we boot the system is our local camera.

    Because you don't know the system password and can't access the codec without it, you'll need to perform a factory reset, however this will clear out any option keys installed.  Of course, because you can't see the OSD menu or access the codec, you can't write them down.  Depending on how old your codec is, you could try and look up the option keys in the Cisco Licensing Portal, go to Get Other Licenses > TelePresence License to Resend.
    Steps to perform a factory reset for an MXP codec:
    Connect the RS232 serial cable to the unit
    Using Putty or similar software, connect to the serial port @ 9600baud
    Reboot the codec
    Hit CTRL + BREAK when the codec starts
    Wait for the $-sign and type 'EEE' and Enter
    Wait for the system to be reset
    Reboot system

  • The spry pop-up menu I built in Adobe Dreamweaver worked fine in my old Firefox, I updated Firefox today and the menu no longer works--despite disabling the pop-up blocker in Firefox preferences...what's the problem??? I need the menu to work!!!

    I built a new pop-up menu for my website using Spry in Adobe Dreamweaver. Because of some differences in .HTML and .XHTML
    it took me days to get it right. I tested every variation in Firefox until it worked perfectly. Today, I installed the newest version of Firefox and now the pop-up no longer works. I changed the preferences in Firefox to disable to pop-up blocker and it STILL DOESN'T WORK...although an older style of pop-up menu (menu machine) which is no longer supported by Adobe, DOES WORK.
    HELP!!! THIS IS IMPORTANT.

    pixlor:
    OP is using CS3 and the menu blog is talking about the menus
    in earlier
    versions of FW, so *most* of the points made in the blog
    don't apply.
    That's not to say that using CS3 pop-up menus is a *good*
    thing....
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "pixlor" <[email protected]> wrote in
    message
    news:gbce7b$a50$[email protected]..
    >
    quote:
    Originally posted by:
    captainbianco
    > I agree completely and totally, and I will haha but I'd
    like to get this
    > one
    > fixed if I can. You can view the page here
    >
    http://www.flooringanswers.com/nysurfaces/index2.htm
    > Hover over the letters to see the pop-up menu's. The one
    over "t" is the
    > problem.
    > Under Flooring, for example, you have a div with id of
    > MMMenu0910163730_1_1
    > (ugh). Under that are four items and they have their own
    IDs:
    > MMMenu0910163730_1_1_Item_0
    > MMMenu0910163730_1_1_Item_1
    > MMMenu0910163730_1_1_Item_2
    > MMMenu0910163730_1_1_Item_3
    > MMMenu0910163730_1_1_Item_4
    >
    > Your CSS file, however, doesn't have location
    information for the ..Item_4
    > object.
    >
    > That's just from a quick, cursory look. In order to fix
    this, you're going
    > to
    > have to go through it line by line and debug it. By the
    time you do this,
    > you
    > might be better off getting something else and starting
    from scratch.
    >
    > Read this:
    >
    http://www.losingfight.com/blog/2006/08/11/the-sordid-tale-of-mm_menufw_menujs/
    >

  • 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

  • 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.

  • When i open firefox it runs in background but does not open. if i disable the internet connection immediately it opens. each and every time i do this when i start work. what kind of problem is this

    i am using windows xp profession sp3 os
    when i open firefox it runs in background but does not open(see through task manager or one message "firefox is already running in background" when i again click the icon.)
    if i disable the internet connection, immediately it opens. each and every time i do this when i start work. what kind of problem is this
    == This happened ==
    Every time Firefox opened
    == i every time starts firefox

    I had the same problem and it was because of my firewall settings, which I had set to block all activity and forgot to reset it.

  • Welcome. At the outset, I'm sorry for my English :) Please help with configuration Photoshop CS6 appearance. How to disable the background of the program so you can see the desktop. (same menus and tools) Chiałbym to be the same effect as CS5.

    Welcome.
    At the outset, I'm sorry for my English
    Please help with configuration Photoshop CS6 appearance.
    How to disable the background of the program so you can see the desktop. (same menus and tools)
    i wantto be the same effect as CS5.

    Please try turning off
    Window > Application Frame

  • When I am connected to the WiFi, my apps cannot be download. Once I had disable the wifi and connect directly to the service provider, the apps will start to download. Please advise what is the problem and solution for my iPhone 5.

    When I am connected to the WiFi, my apps cannot be download. Once I had disable the wifi and connect directly to the service provider, the apps will start to download. Please advise what is the problem and solution for my iPhone 5.

    I can't follow your meaning. What does connect directly to your ISP mean?
    Did you mean turning off WiFi but turning on Cellular Data on your iPhone?

Maybe you are looking for