ABAP DT for OS X: problems with GUI integration

Anyone there able to make it work on OS X? Your help will be much appreciated.
I've tried HANA Studio bundled from SAP, vanilla Juno and Kepler installations with tools.hana.ondemand.com repos and cannot make the SAP GUI integration to work in any of them.
Every time I select option "Open with SAP GUI" I receive the empty tab and error message in log:
Unable to create class 'org.eclipse.ui.internal.e4.compatibility.CompatibilityEditor' from bundle '1154'
Unhandled event loop exception
and so on.
I have to GUIs installed 7.20rev11 and 7.30.

Now, it works for me.
Previously I have had updated the Java SE 7 only (Default with java.com site) But the JDK version is needed. I have now installed JDK 1.7-51 and SAPGUI 7.30rev7 and it works fine.

Similar Messages

  • Will there be a fix for Firefox's problems with Hotmail. I have gone back to 3.5.9 but mostly I am disappointed by the lack of action on this serious problem where a major and critical feature of a major international website is unavailable in the Firefox

    Will there be a fix for Firefox's problems with Hotmail. I have gone back to 3.5.9 but mostly I am disappointed by the lack of action on this serious problem where a major and critical feature of a major international website is unavailable in the Firefox browser.
    == URL of affected sites ==
    http://www.hotmail.com

    We've reached out to the Hotmail team and they've determined that this is a bug in their code. (It was masked by a timing issue in 3.5 that was fixed in 3.6.) We've worked with them to develop a fix but they may not have deployed it yet.

  • Problem with GUI in applet

    Hai to all,
    I am having a problem with GUI in applets
    My first class extends a JPanel named A_a
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    both the applets C_c and B_b are in same browser page
    How can i achive that pls help .

    Just to make the code readable...
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    public class A_a extends JPanel
    JButton jb;
    JTextArea text;
    public A_a()
    setLayout(new FlowLayout());
    jb=new JButton("Click me");
    //add(jb);
    text=new JTextArea(5,20);
    add(text);
    public void text_appendText(String aa)
    System.out.println("I AM IN A_a");
    text.append(aa);
    text.revalidate();
    revalidate();
    /*public static void main(String ags[])
    A_a a = new A_a();
    JFrame frame=new JFrame();
    frame.getContentPane().add(a);
    frame.pack();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) { System.exit(0); }
    frame.setSize(200,200);
    frame.show();
    }and then I am using other class B_b which is an applet carries a exitsing panel (A_a) inside it .
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class B_b extends JApplet
    public A_a a;
    public void init()
    a=new A_a();
    getContentPane().add(a);
    public void text_appendText(String aa)
    final String aaa =aa;
    new Thread(new Runnable()
    public void run()
    a=new A_a();
    a.setBackground(new java.awt.Color(255,200,200));
    System.out.println("I AM IN B_b");
    a.text.append(aaa);
    a.text.revalidate();
    getContentPane().remove(a);
    resize(500,500);
    }).start();
    }and the I am using the second applet C_c in which by performing a button action the old panel A_a should get removed and replace the new panel D_a (which is not here )in the applet B_b with all other components(namely button , text fields etc)
    import javax.swing .*;
    import java.awt.*;
    import java.awt.event.*;
    import java.applet.*;
    import java.util.*;
    public class C_c extends JApplet implements ActionListener
    JButton jbt;
    JTextArea jta;
    public void init()
    getContentPane().setLayout(new FlowLayout());
    jbt=new JButton("Click me");
    jbt.addActionListener(this);
    getContentPane().add(jbt);
    jta=new JTextArea(5,20);
    getContentPane().add(jta);
    public void actionPerformed(ActionEvent ae)
    Enumeration e = getAppletContext().getApplets();
    Applet applets = null;
    while(e.hasMoreElements())
    applets=(Applet)e.nextElement();
    if ( applets instanceof B_b)
    System.out.println("I AM CLASS C_c");
    ((B_b)applets).text_appendText(jta.getText());
    ((B_b)applets).remove());
    ((B_b)applets).getContentPane().add(D_d);
    }

  • Is there a fix for the WIFI problem with Lion? How can I get Lion off of my Mac?

    Is there a fix for the WIFI problem with Lion? How can I get Lion off of my Mac?

    gmiller0 wrote:
    My mac has 10.7.3 and will not connect to wifi after it wakes up. Have contacted AppleCare but the problem cannot seem to be resolved.. I guess this is a major issue with Lion:(
    What model of Mac?  I have a MBP running 10.7.3 and do not have that issue.  From the other couple of posts I've seen about it, it seems to be maybe an issue with some iMacs?  Have your tried searching the Lion or iMac forums for similar issues, just to see if anyone has hit on why it is happening?

  • Unable to find the UK HP technical helpline for my unresolved problem with my HP Mini Notebook

    I am unable to find the UK HP technical helpline for my unresolved problem with my HP Mini Notebook, I seem to keep going round in circles on the web site. Can anyone please give me the UK HP technical helpline number.  My 'No Disk Error has not been resolved as yet.  Thank you if anyone can help. Jan

    Hi, Jan:
    Below is the telephone contact info you need...
    In-Warranty & Out-of-Warranty
    0207 660 0596
    (Only valid within the UK)
    Mon-Fri 8.30-18.00
    Sat 10.00-16.00
    (except for Bank Holidays)

  • Problems with accounting integration cProjects

    Dear Sirs,
    I have some problems with accounting integration between my cProjects 3.10 and my ECC 5.0 system. I have followed the steps in the configuration guide as good I as can. However when I create a project, and go the accounting tab I get the following error:
    The project is unknown in Accounting
    Message no.
    DPR_FIN_GECCO006
    Diagnosis
    Etc..
    In the Cockpit for Controlling Integration I can see the following error at the time the project is created, and a new similar error is created when the status is set to released – replicated.
    No company code could be determined. Message No IAOM_CPROJECTS001. 
    In this message there is a reference to the fact that the company code can be set in the assigned model order for CPR1. I have created such a model order with a reference to company code 0100 for CPR1. However this does not seem to do the job.
    I seem to be stuck, as I have tried every possible and unpossible lead to get any further. Any input for someone with the knowhow is highly appreciated.
    Best regards,
    Jørgen Ruud

    Hello Jørgen,
    It sounds strange, normally after create a model order and assigned to the scenario CPR1, then the determination of company code should work.
    logic: CPR1 -> model order -> company code
    Would you please try the note 875275, if it can help.
    In case that it does not help, you can eithter use the Badi method  to set it hardly, or create a customer message to let SAP check it.
    name of Badi DPR_FIN_GECCO_ATTR
    code like following:
          ls_attribute-data_element     = space.
          ls_attribute-value            = '1000'. 
          ls_attribute-field_name_orext = 'BUKRS'.
          ls_attribute-fldname_receiver = space.
          ls_attribute-struc_name_copa  = space.
          ls_attribute-field_name_copa  = space.
          ls_attribute-ext_attr_name    = space.
          ls_attribute-ext_attr_value   = space.
          INSERT ls_attribute INTO TABLE ct_attributes.
    regards!
    Zhenbo

  • Design Problem with GUI sub vi

    Hello community,
    in general, I would like to separate the GUI from the data, but I get
    a problem with this design approach in LabView:
    I often have sub VIs that are supposed to control something.
    Therefore, these VIs consist of a control loop. A GUI window should
    show the regulation process (showing how the tracking error is
    hopefully approaching zero etc.). As I said, this GUI should be a
    separate VI (separate from the control loop VI). Since the GUI has to
    be updated on each sample, it is clear that the GUI VI should be
    inside the control loop, and therefore, it should be a sub VI of the
    control loop VI.
    Now, the problem is that the control loop VI itsself is a sub VI
    because the whole regulation is just a subsystem of the whole program
    (The main VI doesn't have a GUI, but first starts a (GUI) input mask
    for the same reason: separate the GUI from the rest).
    But back to the GUI VI inside the control loop. I must check the 'Show
    Front Panel When Called' option. But I can't check the 'Close
    Afterwards if Originally Closed' option since the GUI VI would appear
    and disappear in the control loop - according to the loop's sample
    rate. However, if I don't check the 'Close Afterwards if Originally
    Closed' option then the GUI VI will continue to show, even after the
    control process is finished.
    So in other words: I need the possiblity to close the GUI VI
    programatically, after the control process is finished.
    Any ideas?
    Regards
    Johannes

    Hi tmh,
    thanks for your answer
    On Tue, 11 Nov 2003 10:26:32 -0600 (CST), tmh wrote:
    >I think you're on the wrong track trying to put your 'GUI VI' inside
    >your control loop. It might be a better design to have the control and
    >GUI handled by separate loops and use an appropriate method to pass
    >data between the two, e.g. a global variable to pass the setpoint from
    >GUI to control...
    I try to avoid globals. Now, suppose I had multiple unrelated control
    loops. I had to suppose a global variable for each of these
    subsystems. I already use globals for the GPIB device IDs. I wouldn't
    like more.
    >and a queue to pass readings from control to GUI. In
    >fact, you could even split the GUI into two loops: one to read user
    >input from the front pa
    nel controls and one to display data returned
    >by the control loop.
    But if I split the GUI: How can I view them simultaneously? The user
    must see input and output simultaneously, in one window.
    >You may find it's more convenient to make the GUI
    >the top-level VI and make the control loop a subVI of that (but
    >outside the GUI loops).
    Your approach sounds interesting. Is there a sample for this
    architecture in the examples?
    Anyway, I have to point out that I have several unrelated GUI windows
    in my application. There is no notion of a main GUI in my application.
    The control loop is just one feature of my application, so it doesn't
    make sense to use the control GUI as the top-level VI. At application
    startup a user input form is displayed (it also has some sort of menu
    selection). But even this window can't be toplevel since it provides
    an Option radio button (that shows and hides controls, accordingly) a
    CONTINUE button, and a STOP button which implies that the input
    form.vi must be
    in a loop.
    The problem is that I can't send messages to windows in LabView as I
    am used to in Win32/VC++.
    Johannes

  • Problems with Lync integration in App-V Package for Office 365 ProPlus

    We have problems with setting Lync 2013 to automatic start after Windows start with Office 365 ProPlus App-V Package made by Office Deployment Tool. We use latest version for both (ODT and download package) at Windows 7 Enterprise 64 bit.
    We have done this for Lync 2010 and also for Lync 2013 (MSI installations) and it works correctly.
    User can choose to start Lync automatically, but this settings is ignored and in virtual registry is set wrong. We look for possible ways to set this by GPO (in ADMX is not this option available) by inserting in virtual registry with Package ID and user
    SID in registry path.

    Usually setting apps to auto start sets a registry key under HKCU\Software\Microsoft\Windows\CurrentVersion\Run, but since this registry key is inside the virtual environment, Windows does not read it at logon.
    The workaround is to either set this key in the native registry (perhaps by an App-V script), or easier still, just copy the shortcut to the Start Menu\Programs\Startup folder. Since you can't really modify Office 2013 packages with the sequencer, you'd
    have to add this shortcut by modifying the deployment config file.
    Dan Gough - UK App-V MVP
    Blog: packageology.com
    Twitter: @packageologist
    LinkedIn

  • Petition for Technical Support (Problems with BlueSoleil on BT6967 ver 1.43)

    I downloaded BT software BlueSoleil v2.0 from http://www.msi.com.tw/program/support/download/dld/spt_dld_detail.php?UID=326&kind=8
    After installation, it doesn't load and asking for Licence Problem with my BT-6967 that's I think is not model v1.43, have also tried my original CD and same problem
    this is a serious problem with BlueSoleil Drivers on BT 6967, because my dad buy one last BT 6967 ver1.43 with Tranceveing Key driver version 1.3.4.9 (shows on cd) and I tried upgrade my driver version 1.3.4 on my old BT 6967 with this 1.3.4.9 bluesoleil drivers and doesn't works!!!! I don't understand when both are same model MS-6967 why!!! don't works with the last drivers!!!! perhaps only for ver1.43??? because in the main window of BlueSoleil show a message "This version demo has expire" !!!!! what is the reason !!! blueSoleil only works with his 1.3.4.9 MS 6967 Tranceveing Key !!!??? and what's up with a normal MS 6967 1.3.4, technical support could help me??!!! please!!! i need a BlueSoleil software open to all versions on BT-6967
    Please SOLUTION!!!!!! License Problem: BT-6967, XP SP2 BlueSoleil BT Driver
    Im so bored with this problem.. i need solution.. please!! MSI how is posible BlueSoleil can't work only Demo version if I downloaded by his page

    Thanks for your interest..  i saw FAQ's pages about bluetooth connectivity and I already made contact with MSI Support, but i don't get any answer .. then I don't know what to do  with this driver conflict on models BT-6967 running BlueSoleil 
    anny sugggest?¿

  • JDeveloper Problem with GUI

    Hi All,
    I'm running JDev 3.1 on Win2000, and I'm having a bit of a problem with redraws of the GUI.
    When I click anywhere on the JDev GUI and trigger and action that involves a GUI redraw the little piece of the GUI under the mouse pointer graphic is not redrawn. It does not effect the functionality but it is annoying and will make the other developers I work with less keen about using it.
    Does anyone else have this problem? Is it a JDev or Win2k problem?
    Cheers
    d

    Probably an issue with the JRE used by JDev. on Win 2k. Have you tried 3.2x? I haven't seen that type of issue with it on Win 2k.

  • Is there a fix for the connectivity problems with iPhone 5S and ISO 7.0.2?

    Is there a fix for the bluetooth connectivity problems with iPhone 5S and ISO 7.0.4?
    I am having problems connecting the BT Audio and the handsfree phone connectyion is unreliable in 2012 Mitsubishi Lancer XL.
    All worked OK with ISO 6.

    Hello CraigNicholson
    You would need to sync with iTunes to get that process to work for you. Check out the article below for more information on how to resolve that issue to get the proper token to use Push Notifications again.
    iPad and iPod touch: Unable to use YouTube or Push notifications
    http://support.apple.com/kb/ts3305
    Regards,
    -Norm G.

  • For users having problems with Mail functionality...

    Hello! I have been having problems with Mail functionality as well, so, I took a few steps to see if I could solve the problem on my own.
    My problems were:
    Mail would freeze when sending mail, or, when I pressed quit, it would freeze.
    If I toggled between inboxes too much it would freeze up.
    Even after trying the many techniques others offered on this board, Mail still froze up. So.. here's what I did:
    1.) Turn off the auto-retrieve mail function in the preferences/general menu. Set it to a manual check. Just check it yourself every once in awhile. It may not be as convenient, but it works, trust me.
    2.) Under the fonts and colors menu, set all three fonts to the SAME font (mines Century Schoolbook, but anything works) and turn off fixed-width font. Sometimes mail has a tough time decoding and working with texts, and causes it to freeze.
    3.) Clean our your main inbox! Place the emails that you want to keep, but don't need to be in your inbox in a new folder on your inbox bar (mines aptly named 'Saved Messages.' That way, when you open up Mail to your default account, it doesn't have 1,000+ messages to index. Also, try to keep the inboxes from having more than 100-200 messages per. It seems to frown on any more than that.
    After trying these three easy, steps, restart mail and see if things run smoother. I have had no problems since these changes, and mail runs a ton better. Plus you don't have to worry about deleting your library/mail folder anymore. Let me know if things work out so I can see if my theory is a universally proven thing. Thanks and good luck!
    iMac G5 20"   Mac OS X (10.4.5)  

    Good question. I have worked very little with IMAP other than as a testing device, so, on a daily routine I cannot say how it would function. However, I can only expect that by having the option to download all emails for offline viewing selected, you are right in it being a lag creator. Another suggestion would be, if you are running a single-computer setup, to have the account delete emails from the server after recieving them on your computer. Thus, you reduce the risk of repeat downloads or unnecessary build-up on the server end. DO NOT select this option if you run multiple computer set ups on one AppleMail account system or you will cause some discrepancies and/or data loss from system to system. Or, if you have emails redirected from a seperate server to Mail (i.e. I redirect mail from my university email account into Mail so that I don't have to go to the web-mail site to check it--> just like Gmail or Yahoo etc etc) you won't be able to check them from the web-based email system if you have the system delete them. Ok that sounded confusing. Solution: have the system remove emails from the server after a week (or any period of time, just not immediately) so that, in the off-chance you need to use the online system, you will have access, and will give you a chance to check the emails on other systems without a threat of data corruption (by corruption i mean that frustrating feeling you get when you can't find that super important email that was in your inbox just 10 seconds ago on your desktop etc.)
    I will see if I can learn anything more about IMAP Ernie. Its definitley the biggest problem source for Mail, POP and .Mac being simple and functional as long as you don't play with the settings too much. As far as the issue of Offline viewing goes, try turning it off and seeing how Mail functions.
    BEFORE you turn it off, however, I recommend saving all of your emails in your inbox as a text file or something so, in case the server burps and has a brain flatuence, you don't lose anything. Been there, done that, thrown the books against the wall in a frustrated rage.
    My only reserve about the Offline Viewing is whether or not Mail will, when you click "recieve mail," have to re-download the emails from the server each time. If so, then it may end up taking longer and lagging more. The issue here is obviously minimizing the amount of activity between Mail and the email server without jeapordizing information on the server or multiple Mail programs on the same account. When we can find that balance, I think Mail's potential will be realized. Keep the questions coming.

  • PSE 6 & 8 for Macintosh launching problem with licence

    Hi, I have big problem with launch PSE under OSX 10.6. I exchange the HD drive in my MacBookPro and reinstalled system for 10.6 Snow Leopard. Some files I restored with Time Machine but PSE reinstalled with CD. At first I try with my hard copy of PSE 6 - when I try to lunch I always get message "Licensing for this product has stopped working". After this message I remowve PSE6 create new instllation and the same effect, the same message.
    So I completelly remove PSE6 with CD unistallation option, downloaded PSE8, install, restart computer, launch PSE8 and... the same effect - "Licensing for this product has stopped working", Error 150:30. Where is problem? Any solution for me?
    My MBP configuration is 4GB od RAM, C2D 2,4MHz, now 500GB HD.
    Regards,
    Pawel

    Barbara,
    I'm afraid that link supported by you don't resolve problems with Stopped licence. I try with no result. Some minutes ago I found resolve on this forum, and now all working fine.
    Ankush Ved in other post show solution.
    When I deleted file placed on my HD\Library\Preferences\FLEXnet Publisher\
    (Delete the complete "FLEXNET Publisher" folder by moving it to trash and subsequently Empty the Trash) and restarted and lunched PSE all working fine.
    Regards,
    Pawel

  • Groovy for model layer: problem with charset

    Hello
    I'm using JDeveloper 11g 10.1.1.3
    I have a problem with charset in groovy expresssion in entity.
    I have an entity Address with transient attribute, that uses next groovy expression:
    ((StreetName == null || StreetName.trim().equals('')) ? '' : 'ул. '+StreetName )+ (BuildNumb==null||BuildNumb.trim().equals('')  ? '' :', д. '+BuildNumb) +
    (CorpNumb==null || CorpNumb.trim().equals('') ? '' : ', к. '+CorpNumb) +
    (StrNumb==null || StrNumb.trim().equals('') ? '' : ', стр. '+StrNumb)That expression have some russian sumbols (like ', стр. ').
    On the integrated WebLogic all works perfectly well (I use OS Windows XP), but I have problem with production server based on SUSE Linux 11: all russian symbols from this expression are displayed as sybmbol '?', although data from attributes (StreetName and other) are correct.
    I think should be possibility to set charset parameter for Groovy expression, but I can't find it.
    In Address.xml file the charset is "UTF-8", and everywhere in project setting I set charset "UTF-8"
    Anatolii

    I've never exported more than a few layers from InDesign. Nothing as complex as you're doing. It's worked OK for me for a few layers. It may well be a bug. I suspect that this feature is not too widely used, which usually means that it never got well bug tested.

  • Lotus Traveler Address Encoding for Apple Devices Problems with Z10

    Hi,
    we have problems with the Lotus Traveler Address Encoding for Apple Devices IBM Notes and Domino wiki
    We are running Traveler 9.0 with BES 10.1 and 10.1.0.2354 on the Z10.
    When composing a new mail addresses from our Domino NAB are shown like this:  [email protected] instead of the name. It seems to me that name search is first looking to the Internet address field in the Domino NAB. In our case this field is empty (and cannot be filled with an address). If the field is empty, the User name or the Short name field seems to be used. This fields are filled with Domino like names like John Doe/City/Company. The Traveler Server will convert these names (see link above) and the Device (Z10) should only show the common name instead of the converted name.
    This is not working on our Z10s. The converted name is always shown like [email protected] and you don't know the real name.
    Is the problem known? Any workarounds?
    Edit: Further investigations have shown that the conversion works if you use an address in the mailbox the first time. If you use it later again, it is coming unconverted from the address chache. Also if you perform a remote search from the contacts app the converted name instead of the common name is shown.
    Regards
    Nico

    Hi Friend,
    While your idevices still having apps downloaded by the old Apple ID, Apple Store will ask you for the old Apple ID and password to updated them. But, if you delete all apps downloaded by the old Apple ID, then download again by the new Apple ID, Apple Store will not ask you anymore for the old one.
    Hope it helps

Maybe you are looking for

  • [SOLVED] nvidia 169.09-2 sigill

    hi folks, i have troubles with nvidia driver (i dont know if previous version worked , i installed arch recently). graphic card is geforce6200 problem: [pacholeq@holly ~]$ glxgears illegal instruction (SIGILL) [pacholeq@holly ~]$ glxinfo name of disp

  • Internet explorer 9 flash wont work!

    hallo, seit monaten funktioniert FLASH nicht mehr unter Internet explorer 9. habe alles probiert was man unter google und adobe finden kann. mit firefox gibt es keine probleme. möchte aber internet explorer benutzen. woran kann das denn jetzt liegen?

  • Mac Pro won't recognize my SD card

    I've tried various card readers and different USB ports.. One day they worked, the next it didn't. Mac OSX 10.6.7 2.8 GHz Quad-Core Intel Xeon Mac Pro

  • Problem in Cascading(Dependent) SelectManyShuttle in ADF

    Hello All, Here I am using jedveloper version -IDE     11.1.2.0.38.60.17 i am facing problem in Dependent SelectManyShuttle . let's take a scenario i have 2 SelectManyshuttle First SelectManyShuttle Contains Countries ,and Second one Contains Cities.

  • Wacom pen malfunction in CS5 & Lightroom3

    I've been using a Wacom Intuos 3 pen without any problems in CS3 and Lightroom2. Now, I can't seem to make the pen responsive at times (most of the time). I've uninstalled old Wacom drivers and installed the latest, repaired permissions, restarted th