I can't enter any values in JTextField after loading the flash files.

Hi to all,
In my application I have two panels. One panel has JTextField and another panel i loaded flash files.
The flash files are build by CS4. I'm using JDIC to load the flash files. While open the application i loaded flash file and I try to enter any input in the textfiled, but I can't. After minimize and maximize the application I can enter the values. This problem happens only after I change the jre version from 1.6 to 1.7.
While loading flash files I'm getting the below exception.
org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename, directory name, or volume label syntax is incorrect
     at org.jdesktop.jdic.init.JdicManager.initBrowserNative(Unknown Source)
     at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unknown Source)
pls give me a solution.
Thanks in advance...:)

I can't enter any values in JTextField after loading the flash files., locking.

Similar Messages

  • I can't enter any value in the Text field, after loading flash files

    Hi to all,
    In my Java application, I'm using a text field and a panel to load flash files. I'm using JDIC 0.9.1 to load the flash files in the panel. The flash files are created by Flash CS4.
    While running the application, I can't enter any value in the Text field, after minimize and maximize the application I can enter the values.
    This problem happens after change the jre version from 1.6 to 1.7.
    I'm getting the following exception while running the application.
    org.jdesktop.jdic.init.JdicInitException: java.io.IOException: The filename, directory name, or volume label syntax is incorrect
    at org.jdesktop.jdic.init.JdicManager.initBrowserNati ve(Unknown Source)
    at org.jdesktop.jdic.browser.WebBrowser.<clinit>(Unkn own Source)
    pls give me a solution.
    Thanks in advance...:)

    I can't enter any values in JTextField after loading the flash files., locking.

  • TS1368 Can't open or connect to iTunes after loading the latest 6.0 any help

    Any help you can see and extend for this problem of not connecting to iTunes store as well as app store happened just after loading up the latest 6.0
    Thanks guys and appreciate any help you can extend,
    SnyCz

    I tested this:
    Reinstalled Aperture 3.1 from the Trial Installer.
    In some way it seems to be working. But the whole thing is a scary Chimera.
    It can create an Aperture library. I can import and edit images, even in Graphic Converter ias an external editor.
    But the Media Browser does not show the aperture Library that I created.
    The versioning is inconsistent. The library appears as an Aperture 3.4 library in the Finder.  Aperture 3.5 seems to be able to read this library and to upgrade it to 3.5
    The Applications folder is showing the application as version 3.4 and as compatible. Spotlight is showing it as illegal.
    When opening the chimera Aperture, I see plenty of warnings in the Console window:
    An Aperture "Hang" report
    xpcproxy assertion failed
    com.apple.IconServiceAgent: main failed to composite image
    quicklookd: Warning
    and more ... the hang was critical. I had to force quit Aperture more than once.
    So be careful. I would not trust any important Aperture library to this patched application, without testing thoroughly. Be careful with your  precious photos.

  • Need Help !!!!! ( Urgent )I can't open any document in word after update the pages version, can anyone give me some suggestion how to do it ?

    PLSSSSSS hep me how to solve my problem ? Thank you very much !

    Pages creates .pages files that only it can open and there are several version of each of those.
    Menu > File > Export > Word .doc/docx
    Peter

  • All of the sudden my keyboard is not working.  the trackpad is working, but i can't enter any letters/numbers?

    all of the sudden my keyboard is not working.  the trackpad is working, but i can't enter any letters/numbers?

    Try:
    - Reset the iOS device. Nothing will be lost
    Reset iOS device: Hold down the On/Off button and the Home button at the same time for at
    least ten seconds, until the Apple logo appears.
    - Restore from backup. See:                                 
    iOS: How to back up           
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem. Likey a bad digitizer
    Apple Retail Store - Genius Bar          

  • Disable jTable so that user cant enter any value & is stopped to do so

    Hi
    my program has 2 options for user: 1. To enter a list of values(for which im using table), 2. To use default values embedded in the program.
    for these options i have used jRadioButtons n ButtonGroup.When user selects DefaultValues radiobutton program uses default values,but when it selects DefaultValues radiobutton i want to disable the Table such that the user cannot enter any value in the cell and it should be visible to the user too that the table has been disabled.
    The user should only b able to enter values in table if he/she selects the first option's radiobutton.
    note: im using DefaultTableModel, if somebody can tell me any way other than using isCellEditable(),it would be more appreciatable
    thanks

    Erm i use netbeans..... the program i am pasting is really small in netbeans but when it is pasted somewhere else alot of code appears.....if its not right to do,tell me what to do....to make it more smaller
    import java.awt.Color;
    import java.awt.Component;
    import predoms.DisabledPanel;
    * @author Me
    public class test extends javax.swing.JFrame {
        /** Creates new form test */
        public test() {
            initComponents();
        /** 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.
        @SuppressWarnings("unchecked")
        // <editor-fold defaultstate="collapsed" desc="Generated Code">
        private void initComponents() {
            buttonGroup1 = new javax.swing.ButtonGroup();
            jRadioButton1 = new javax.swing.JRadioButton();
            jRadioButton2 = new javax.swing.JRadioButton();
            jScrollPane1 = new javax.swing.JScrollPane();
            jTable1 = new javax.swing.JTable();
            setDefaultCloseOperation(javax.swing.WindowConstants.EXIT_ON_CLOSE);
            buttonGroup1.add(jRadioButton1);
            jRadioButton1.setText("default");
            jRadioButton1.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jRadioButton1ActionPerformed(evt);
            buttonGroup1.add(jRadioButton2);
            jRadioButton2.setText("use table");
            jRadioButton2.addActionListener(new java.awt.event.ActionListener() {
                public void actionPerformed(java.awt.event.ActionEvent evt) {
                    jRadioButton2ActionPerformed(evt);
            jTable1.setModel(new javax.swing.table.DefaultTableModel(
                new Object [][] {
                    {"a", null},
                    {"b", null},
                    {"c", null},
                    {"d", null}
                new String [] {
                    "Title 1", "Title 2"
                Class[] types = new Class [] {
                    java.lang.Object.class, java.lang.Integer.class
                boolean[] canEdit = new boolean [] {
                    false, false
                public Class getColumnClass(int columnIndex) {
                    return types [columnIndex];
                public boolean isCellEditable(int rowIndex, int columnIndex) {
                    return canEdit [columnIndex];
            jScrollPane1.setViewportView(jTable1);
            javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane());
            getContentPane().setLayout(layout);
            layout.setHorizontalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(72, 72, 72)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jRadioButton1)
                        .addGroup(layout.createSequentialGroup()
                            .addComponent(jRadioButton2)
                            .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                            .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 98, javax.swing.GroupLayout.PREFERRED_SIZE)))
                    .addContainerGap(74, Short.MAX_VALUE))
            layout.setVerticalGroup(
                layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                .addGroup(layout.createSequentialGroup()
                    .addGap(136, 136, 136)
                    .addComponent(jRadioButton1)
                    .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.UNRELATED)
                    .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING)
                        .addComponent(jScrollPane1, javax.swing.GroupLayout.PREFERRED_SIZE, 102, javax.swing.GroupLayout.PREFERRED_SIZE)
                        .addComponent(jRadioButton2))
                    .addContainerGap(193, Short.MAX_VALUE))
            pack();
        }// </editor-fold>
        private void jRadioButton1ActionPerformed(java.awt.event.ActionEvent evt)
            DisabledPanel disabledPanel = new DisabledPanel(jTable1);
            disabledPanel.setDisabledColor(Color.lightGray);
            Component addu = this.add(disabledPanel);
            disabledPanel.setEnabled(false);        
        * @param args the command line arguments
        public static void main(String args[]) {
            java.awt.EventQueue.invokeLater(new Runnable() {
                public void run() {
                    new test().setVisible(true);
        // Variables declaration
        private javax.swing.ButtonGroup buttonGroup1;
        private javax.swing.JRadioButton jRadioButton1;
        private javax.swing.JRadioButton jRadioButton2;
        private javax.swing.JScrollPane jScrollPane1;
        private javax.swing.JTable jTable1;
        // End of variables declaration
    }

  • I'm using photoshop elements 2.0 and window vista.  when i want to crop i cannot enter any values in

    I'm using photoshop elements 2.0 and window vista.  when i want to crop i cannot enter any values in the width and height boxes.  the cursor won't enter.  same thing with resolution.  what did i do?  what's wrong?

    The first thing you might try is resetting the Crop Tool by right clicking on the crop icon in the tool options bar and choosing Reset Tool.
    If that doesn't work then the next thing is to reset the photoshop elements 2 settings file by holding down
    the Shift+Ctrl+Alt keys just after clicking or double clicking on the pse 2 shortcut.
    Keep holding the keys until a dialog appears ask if you want to delete the photoshop elements settings file
    and click yes in the dialog.

  • When I select a title or lower thirds and try to enter text by double clicking on it I cannot enter any text at all. Also the text area box does not show up at all where you can enter text also.

    When I select a title or lower thirds and try to enter text by double clicking on it I cannot enter any text at all. Also the text area box does not show up at all where you can enter text also.

    It's a bit hit and miss, Walter. Sometimes the box to enter text shows up straight away in the inspector under "text". Other times, although you click "text" in the inspector, there's nowhere to actually write anything.... then what you have to do is move the trackbar over the Title Box until you see the text boxes in the main Viewer. In the Viewer, double click a text box.... you can enter text there, but it's a bit flaky, but when you've clicked in it, you'll find that under "Text" in the inspector, the box for inputting text has magically appeared!
    I'm not sure if anyone else has this trouble, but it is a bit of a pain!

  • Can't enter any text in Safari address bar. Why?

    I can't enter any text into the Safari address bar. The keyboard is working fine as it works in all other applications?
    Any ideas??
    Thanks.

    I understand. Close the window, and open a new one. Try the Address Bar. If no go, try Safari from another User Account. I'm curious if the Address Bar works there. If it doesn't, then you'll need to reinstall Safari.
    Just in case you need this: Here is guidance from Apple on how to set up the account. You can ignore step 7 in the article.
    Also, on the system preference>Accounts panel, click on "log-in" options. There, select "fast user switching". This allows you to go back and forth between user accounts via an icon in your Menu Bar at the top of the computer screen.
    Log-on to the new account and start Safari. If the address bar works in the new account, then your problem is specific to your regular user account. Otherwise, similar response means a system-wide problem.
    Post back
    Message was edited by: Hawaiian_Starman

  • How to enter a value versus picking one from the pop-up menu?

    I am new to numbers and am using version 3.5.2.  I understand one can define a Pop-Up for cell value selection, but what if I want to also be able to specify a value that is not in the pull down?  I thought "start with blank" would do the trick, but it won't let me enter any values.  Thanks in advance for your suggestions!

    Hi Sultry,
    If your entry is a one time deal you could just delete the cells value and type in your choice. If you want to update your popup you need ot redefine its values. And then of course replace your old popups with your new one.
    quinn

  • I am trying to install software for iTwin Connect, but after downloading the dmg file and launching the program, I receive a message saying the file can't open and to check my internet connection.  Any ideas?

    I am trying to install software for iTwin Connect, but after downloading the dmg file and launching the program, I receive a message saying the file can't open and to check my internet connection.  Any ideas?

    Many Thanks, Kurt.
    I knew I'd seen the solution you've provided somewhere - either in MacWorld or MacFormat - but couldn't remember the Gatekeeper bit!
    I shall save it somewhere VERY safe now in case this happens again …
    You have made an old man very happy and saved me from worrying that senile decay had suddenly set in. (I was 70 last week so you might understand the situation from that.)
    Best wishes
    OllyanDinah

  • My I pad is not connected to I tunes. I can't install any app. What could be the proble?

    My I pad is not connected to I tunes. I can't install any app. What could be the proble? Whenever I try to open app store it ggives me message that I cannot conect o I tune.

    Hello Marwasambo,
    Thanks for using Apple Support Communities.
    For more information on this, take a look at:
    Can't connect to the iTunes Store
    http://support.apple.com/kb/ts1368
    Troubleshoot issues on an iPhone, iPad, or iPod touch
    If you haven't been able to connect to the iTunes Store:
    Make sure your date, time, and time zone are correct in Settings > General > Date & Time.
    Note: Time Zone may list another city in your time zone.
    Make sure that your iOS software is up to date by tapping Settings > General > Software Update (iOS 5 or later) or connecting your iOS device to iTunes and clicking Check for Update on your device's Summary page.
    Check and verify that you're in range of a Wi-Fi router or base station. If you're on a device with cellular service, make sure that cellular data is turned on from Settings > General > Cellular.
    Note: If connected to cellular data, larger items may not download. You may need to connect to Wi-Fi to download apps, videos, and podcasts.
    Make sure that you have an active Internet connection. You can check the user guide for your device for help with connecting to the Internet.
    Make sure that other devices (portable computers, for example) are able to connect to the Wi-Fi network and access the Internet.
    Try resetting (turning off and then on again) your Wi-Fi router.
    If the issue persists, try troubleshooting your Wi-Fi networks and connections.
    If the steps above didn't resolve your issue, be sure that your specific alert isn't listed as a possible iTunes Store error. Then, if your issue is still unresolved, follow these steps.
    Best of luck,
    Mario

  • Can anyone recommend any good books on leaning actionscript for flash?

    Can anyone recommend any good books on leaning actionscript
    for flash?
    Intermediate level
    I have been using flash for about 2 years more as a hobby
    than anything else, some websites etc but now I realise I am going
    to need to learn more actionscripting to do what I want, I have
    come to terms with the simple stuff like goto – basic
    variables – load mov – enough to programme up website
    navigation.
    I ideally want to learn more about the dynamic side of flash,
    mostly for designing user interfaces and websites etc
    I’m after a book that doesn’t get too heavy too
    fast yet I’m a little past the more basic functions
    Any thoughts?
    Cheers

    You appear to be stuck on iOS 4.2.1. That means up really have a 2G iPod. A real 3G can go to 5.1.1
    .To find compatible apps more app for 4.2.1 see:
    Old Apps
    VintApps 3.1.3 for iPhone, iPod touch, and iPad on the iTunes App Store
    apps for ios 4.2.1: Apple Support Communities
    Finding iOS 4.2.1 Apps Compatible with Older Devices - Apple Club
    HT4972 Touch Game 4.2.1 Apps: Apple Support Communities
    apps for 4.2.1 (also works for 3.1.3)
    Tip - Finding 4.2.1 apps that work on an...: Apple Support Communities
    4.2.1 iPod 2nd generation unable to use any...: Apple Support Communities

  • After loading the latest sofware with an update, (iphone 4 /5.0) I do not have zoom any longer with my camera, can I correct after loading the latest sofware with an update, (iphone 4 /5.0) I do not have zoom any longer with my camera, can I correct this?

    After loading the latest software with an update, iphone 4/ 5.0, I do not have zoom with the camera any longer, can I correct this or is it a software item?

    Steve:
    Welcome to Apple Communities.  The Zoom feature has changed a little in iOS5.  To activate the zoom, "pinch" the screen with two fingers.  You will see the screen zoom and will also now see the slider that you use to see when tapping the screen.
    Hope this helps.
    David

  • Can I have any  documentation or links on creating the Enhancement spots ?

    Hi All ,
    Can I have any Documentation or links on creating the Enhancement spots ?
    Thanks ,
    Dharma .

    Implicit and Explicit Enhancement Spots
    http://help.sap.com/saphelp_nw70/helpdata/en/94/9cdc40132a8531e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw70/helpdata/en/09/9bf240a5668d38e10000000a155106/content.htm
    /people/thomas.weiss/blog/2006/03/15/the-new-enhancement-framework-part-2--what-else-you-need-to-know-before-building-an-enhancement
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/9cd334f3-0a01-0010-d884-f56120039915
    http://www.adfahrer.com/workplace/Sem/2006-11-28-ADSIG-SBN-WalldorfABAP/MikaelAcker-EFW-4-nordic.pdf

Maybe you are looking for

  • What's happening to my 5s battery?

    For the past week or so I have been having issues with the battery on my iPhone 5s and I would like some answers. I know people are complaining about the battery life but I've never had many problems with it until the past week or two. The battery is

  • JAXB in Jdeveloper 10.1.3.2

    Hi, Does Jdeveloper 10.1.3.2 contains JAXB inbuilt? or do we need to add the api explicitly ? Can anyone please tell to Add JAXB in Jdeveloper 10.1.3.2? Thanks in Advance

  • Separate thread for input stream and output stream.

    Hi Techies, In a socket connection, can we run the input stream and output stream in separate threads. actually in my case, the input stream will be getting the input regularly and output stream will send data very rare. so if i impelment them in one

  • Planning on getting first iPhone

    Hi, I was planning on getting my first iPhone, but I'm not quit sure on how everything works. First, do I go to the apple store or at&t store first? Do I need some type of proof that I'm an at&t customer? Second, once I get the phone, do I have to ta

  • How do I get rid of Mobile Me icon?

    Just recently I've noticed a new icon on the menu bar, an exclamation point with two arrows circling around it. I've never seen it before and when I click it the drop down menu shows Mobile Me conflicts, sync and preference options. I went to the pre