Ctl+C/ctl+V not working on FF 30 (Linux Debian SID, KDE)

Since an upgrade to Firefox 30 copy (ctl+v) is not working. The "Linux-Way" (marking with left mouse button, copy with middle button) works fine. Any solution available or is it a bug?
Many Thanks
Anton

Do other Ctrl shortcuts work?
Do Ctrl+Insert and Shift+Insert work?
*Copy: Ctrl+C or Ctrl+Insert (Mac: Command + C)
*Paste: Ctrl+V or Shift+Insert (Mac: Command + V)
*Cut: Ctrl+X or Shift+Delete (Mac: Command + X)

Similar Messages

  • Why keyboard and mouse right click not working in Solaris and Linux?

    Hi all,
    I have two problems:
    1) I am working on AWT/Swing application and its working fine in window enviornment,but while running on solaris and linux mouse right-click option window not poping up.
    2) Ctrl+c,Ctrl+v,Home and End keyboard key are not working in solaris and linux OS for same application.
    Pls provide me some solution for these problem.
    -Dinesh

    Hi Nik,
    Thanks for reply. I found some solution for the above problem.
    For mouse right click there was problem in my source code.I have not implemented the mousePressed() method
    In case of keyboard Home, End and arrow key working fine after exporting AWTUSE_TYPE4_PATCH=false; in solaris and linux
    But still Ctrl-c and Ctrl-v not working.
    I am using JDK1.5.0_07+Eclipse IDE 3.1
    -Dinesh

  • Not working Webutil configuration for linux

    I had configured webutil in linux server as per document. my basic cofiguration is
    OS - Linux redhad(4.0)
    Front End - Forms [32 Bit] Version 10.1.2.0.2
    Now i had created form in that form i m using webutil when on test button i m calling
    show_webutil_information (TRUE);
    It is showing all the webutil information
    But on another button i m calling
    v_ole_excel := client_ole2.create_obj ('Excel.Application');
    client_ole2.set_property (v_ole_excel, 'visible', 1);
    it is not working and after that none of the push button & menu is working in runtime form.
    So Please Guide us to resolve the problem.
    Thank's in anticipation,
    Regards,
    Ganesh Jadhav

    Loading TUI files in Linux it's an issue that we have recently discovered and it did not made it yet to the known issue list. I'm not 100% sure but I believe a workaround to that problem would be to go and manually edit that tui file and remove those attributes that generates errors. You can begin with  ATTR_TITLEBAR_STYLE and then look if one of the following are in the tui file: ATTR_DS_BIND_PLOT_STYLE, ATTR_DS_BIND_POINT_STYLE, ATTR_DS_BIND_LINE_STYLE, ATTR_DS_BIND_PLOT_COLOR and delete them. Then try to load the tui file again.
    On the other hand I think there is a workaround for your original problem: the predefined fonts (VAL_DIALOG_METAFONT) looks bad on Linux. I believe there is a way a user can change the underlying font and the size of a predefined font. In windows you can change it in the registry but in Linux you can define an environment variable: XAPPLRESDIR that points to a directory that should contain a file named cvi, a file where you can write font settings. Each line has to be of the following format: <appName>.<key>:<value>. If you want the settings you're writing to be persistent for all applications the put a "*"instead of the application name. 
    The list of possible key is: appFont (NIAppMetaFont), menuFont (NIMenuMetaFont), dialogFont (NIDialogMetaFont), e​ditorFont (NIEditorMetaFont), messageBoxFont (NIMe​ssageBoxMetaFont).
    The value have to be of the following form: <font family>-<font name>-<font size>
    Here is the only line I have in the cvi file: *.dialogFont : adobe-helvetica-19

  • Pop up window resize disabled not working in fire fox (Linux)

    Hi all I am using Dreamweaver 8, with behavior I made a pop
    up window and disabled window resizing. It worked nicely in my
    windows XP system (I checked it in IE and Fire fox). But it is not
    working in Linux machine having same version of Fire fox
    browser(but worked correctly in IE on the same machine). In Linux
    machine we can simply resize the window.
    Does anybody give a solution to fix this problem?

    Post a link to the page, please.
    Why disable window resizing? What about those whose screen
    won't display
    the size you have picked?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "thozhayan" <[email protected]> wrote in
    message
    news:egpsde$s3r$[email protected]..
    > Hi all I am using Dreamweaver 8, with behavior I made a
    pop up window and
    > disabled window resizing. It worked nicely in my windows
    XP system (I
    > checked
    > it in IE and Fire fox). But it is not working in Linux
    machine having same
    > version of Fire fox browser(but worked correctly in IE
    on the same
    > machine). In
    > Linux machine we can simply resize the window.
    >
    > Does anybody give a solution to fix this problem?
    >
    >

  • Drag & Drop of a file not working in Ubuntu & other linux

    Hi All,
    I am working on a project,in which it has the requirement of dragging the files
    from a JList present inside a JFrame to the desktop.
    First I tried to get a solution using dnd API but could not. Then i googled and i got an application which is
    working perfectly in both Windows and MAC Operating systems, after I made few minor changes to suit my requirements.
    Below is the URL of that application:
    http://stackoverflow.com/questions/1204580/swing-application-drag-drop-to-the-desktop-folder
    The problem is the same application when I executed on Ubuntu, its not working at all. I tried all available options but could not trace out the exact reason.
    Can anybody help me to overcome this issue?
    Thanks in advance

    Hi,
    With the information you provided and through some information found on google i coded an application. This application is able to do the drag and drop of an item from the Desktop to Java application on Linux Platform, but i am unble to do the viceversa by this application.
    I am including the application and the URL of the information i got.
    [URL Of Information Found|http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4899516]
    import java.awt.GridBagConstraints;
    import java.awt.GridBagLayout;
    import java.awt.datatransfer.DataFlavor;
    import java.awt.datatransfer.Transferable;
    import java.awt.datatransfer.UnsupportedFlavorException;
    import java.awt.dnd.DropTarget;
    import java.awt.dnd.DropTargetDragEvent;
    import java.awt.dnd.DropTargetDropEvent;
    import java.awt.dnd.DropTargetEvent;
    import java.awt.dnd.DropTargetListener;
    import java.io.File;
    import java.io.IOException;
    import java.util.ArrayList;
    import java.util.List;
    import javax.swing.DefaultListModel;
    import javax.swing.JComponent;
    import javax.swing.JFrame;
    import javax.swing.JLabel;
    import javax.swing.JList;
    import javax.swing.JScrollPane;
    import javax.swing.SwingUtilities;
    import javax.swing.TransferHandler;
    import javax.swing.WindowConstants;
    public class DnDFrame extends JFrame implements DropTargetListener {
         private DefaultListModel listModel = new DefaultListModel();
         private DropTarget dropTarget;
         private JLabel jLabel1;
         private JScrollPane jScrollPane1;
         private JList list;
         List<File> files;
         /** Creates new form DnDFrame */
         public DnDFrame() {
              setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              initComponents();
              dropTarget = new DropTarget(list, this);
              list.setModel(listModel);
              list.setDragEnabled(true);
              list.setTransferHandler(new FileTransferHandler());
         @SuppressWarnings("unchecked")
         private void initComponents() {
              GridBagConstraints gridBagConstraints;
              jLabel1 = new JLabel();
              jScrollPane1 = new JScrollPane();
              list = new JList();
              setDefaultCloseOperation(WindowConstants.EXIT_ON_CLOSE);
              getContentPane().setLayout(new GridBagLayout());
              jLabel1.setText("Files:");
              gridBagConstraints = new GridBagConstraints();
              gridBagConstraints.gridwidth = GridBagConstraints.REMAINDER;
              gridBagConstraints.anchor = GridBagConstraints.WEST;
              getContentPane().add(jLabel1, gridBagConstraints);
              jScrollPane1.setViewportView(list);
              gridBagConstraints = new GridBagConstraints();
              gridBagConstraints.gridwidth = GridBagConstraints.REMAINDER;
              gridBagConstraints.fill = GridBagConstraints.HORIZONTAL;
              getContentPane().add(jScrollPane1, gridBagConstraints);
              pack();
         public void dragEnter(DropTargetDragEvent arg0) {
         public void dragOver(DropTargetDragEvent arg0) {
         public void dropActionChanged(DropTargetDragEvent arg0) {
         public void dragExit(DropTargetEvent arg0) {
         public void drop(DropTargetDropEvent evt) {
              System.out.println(evt);
              int action = evt.getDropAction();
              evt.acceptDrop(action);
              try {
                   Transferable data = evt.getTransferable();
                   DataFlavor uriListFlavor = null;
                   try {
                        uriListFlavor = new DataFlavor("text/uri-list;class=java.lang.String");
                   } catch (ClassNotFoundException e1) {
                        // TODO Auto-generated catch block
                        e1.printStackTrace();
                   System.out.println("data.isDataFlavorSupported(DataFlavor.javaFileListFlavor: " +
                             data.isDataFlavorSupported(DataFlavor.javaFileListFlavor) );
                   if (data.isDataFlavorSupported(DataFlavor.javaFileListFlavor)) {
                        files = (List<File>) data.getTransferData(DataFlavor.javaFileListFlavor);
                        for (File file : files) {
                             listModel.addElement(file);
                   }else if (data.isDataFlavorSupported(uriListFlavor)) {
                        String data1 = (String)data.getTransferData(uriListFlavor);
                        files = (List<File>) textURIListToFileList(data1);
                        for (File file : files) {
                             listModel.addElement(file);
                        System.out.println(textURIListToFileList(data1));
              } catch (UnsupportedFlavorException e) {
                   e.printStackTrace();
              } catch (IOException e) {
                   e.printStackTrace();
              } finally {
                   evt.dropComplete(true);
         private static java.util.List textURIListToFileList(String data) {
              java.util.List list = new java.util.ArrayList(1);
              for (java.util.StringTokenizer st = new java.util.StringTokenizer(data,"\r\n");
              st.hasMoreTokens();) {
                   String s = st.nextToken();
                   if (s.startsWith("#")) {
                        continue;
                   try {
                        java.net.URI uri = new java.net.URI(s);
                        java.io.File file = new java.io.File(uri);
                        list.add(file);
                   } catch (java.net.URISyntaxException e) {
                   } catch (IllegalArgumentException e) {
              return list;
         private class FileTransferHandler extends TransferHandler {
              @Override
              protected Transferable createTransferable(JComponent c) {
                   JList list = (JList) c;
                   List<File> files = new ArrayList<File>();
                   for (Object obj: list.getSelectedValues()) {
                        files.add((File)obj);
                   return new FileTransferable(files);
              @Override
              public int getSourceActions(JComponent c) {
                   return COPY;
         static {
              try {
                   uriListFlavor = new
                   DataFlavor("text/uri-list;class=java.lang.String");
              } catch (ClassNotFoundException e) {
                   e.printStackTrace();
         private class FileTransferable implements Transferable {
              private List<File> files;
              public FileTransferable(List<File> files) {
                   this.files = files;
              public DataFlavor[] getTransferDataFlavors() {
                   return new DataFlavor[]{DataFlavor.javaFileListFlavor,uriListFlavor};
              public boolean isDataFlavorSupported(DataFlavor flavor) {
                   if(flavor.equals(DataFlavor.javaFileListFlavor) || flavor.equals(uriListFlavor))
                        return true;
                   else
                        return false;
              public Object getTransferData(DataFlavor flavor) throws
              UnsupportedFlavorException, java.io.IOException {
                      if (isDataFlavorSupported(flavor) && flavor.equals(DataFlavor.javaFileListFlavor)) {
                        return files;
                   }else if (isDataFlavorSupported(flavor) && flavor.equals(uriListFlavor)) {
                        java.io.File file = new java.io.File("file.txt");
                        String data = file.toURI() + "\r\n";
                        return data;
                   }else {
                        throw new UnsupportedFlavorException(flavor);
         private static DataFlavor uriListFlavor;
         static {
              try {
                   uriListFlavor = new
                   DataFlavor("text/uri-list;class=java.lang.String");
              } catch (ClassNotFoundException e) {
                   e.printStackTrace();
         public static void dumpProperty(String name) {
              System.out.println(name + " \t" + System.getProperty(name) );
         public static void main(String[] args) {
              String[] props = {
                        "java.version",
                        "java.vm.version",
                        "java.vendor",
                        "os.name",
              "os.version"};
              for (String prop : props) {
                   dumpProperty(prop);
              Runnable r = new Runnable() {
                   public void run() {
                        DnDFrame f = new DnDFrame();
                        f.setVisible(true);
              SwingUtilities.invokeLater(r);
    }Please Suggest me in this.

  • Af|navigationpane-tabs::tab:hover af|navigationpane-tabs::tab-link  not working in Unix or Linux operating system

    Hai,
    I have the requirement that my Adf Application should have same skins(prototype) when there are running on Windows or Unix or Linux OS. First lines in two cases are working fine in Windows or Unix orLinux operating system,but the Second lines in two cases are working only in Windows but not in Unix or Linux. I mean to say that the text-decoration,color,background-color etc set for hover attribute of line-2 in both cases are not working.
    Can anybody help me in solving this issue.
    Cases are as follows:
    Case:1
    Line-1: af|navigationPane-tabs::tab-link{text-decoration: none; background-color: #6b5994; color: #ffffff; font-weight: 700; font-size: 12px;}
    Line-2: af|navigationPane-tabs::tab-link:hover{text-decoration: underline; background-color: #6b5994; color: #6b5994; font-weight: 700; font-size: 12px;}.
    Case:2
    Line-1: af|navigationPane-tabs::tab:selected af|navigationPane-tabs::tab-link {text-decoration: none; background-color: #6b5994; color: #ffffff; font-weight: 700; font-size: 12px;}
    Line-2: af|navigationPane-tabs::tab:selected:hover af|navigationPane-tabs::tab-link {text-decoration: underline; background-color: #6b5994; color: #ffffff; font-weight: 700; font-size: 12px;}
    Regards
    G Naveen Kumar

    Hai Frank,
      First up all Thank you for giving response to my query.As you asked it is not a Client OS,it's a Server OS.As you told I have changed the code to font-weight: bold but still it's not working.Anyhow my major requirement  is to change the text-decoration,color.
    Would you please help me in solving that?
    Regards
    G Naveen Kumar

  • Dashboard Console not working - opesntack on Oracle Linux 6.6

    I have installed openstack using the instructions at http://www.oracle.com/technetwork/server-storage/openstack/linux/documentation/oracle-openstack-user-guide-2296176.pdf
    I have a Oracle Linux 6.6 as the controller and two nodes of Oracle VM 3.3.2 as compute nodes. I managed to get an instance up and running but not sure how to connect to those instances. When I navigate to the console tab of the instance vnc connects successfully the be screen is blank and I think its not accepting any keyboard inputs as well.
    How do I get the console to work from the dashboard (or connect via a vnc viewer)? Alternately I have used DHCP in the instance and know the private IP of the instance (192.168.1.100), how do I ssh to the instance?
    Amish.

    Hi Amish,
    I saw your comment in other thread and I'll try to answer your questions in the best way I can - but this is huge topic. Please keep in mind that I'm also newbie in this area too and I've encountered many problems getting basic OpenStack installation working, like you. Some of them are still not solved for me either. I also did not get any help here
    Networking in OpenStack is IMO difficult to understand, especially for people like me who are accustom with traditional approach. So this is how I understand it now:
    Networking can be purely software driven and in this case it is carried out by openvswitch (http://openvswitch.org - better get accustom with it if you are not yet). Simple linux bridge - utilized by Oracle VM - is not used by OpenStack. Also there can be hardware plugins which can move some of network features to hardware - but I have no experience in this area.
    There are two types of networks you can create in OpenStack: provider and tenant one:
    Provider networks (also called flat networks) are equivalent of what you set in Oracle VM Manager and in typical (old fashioned) IT world. These are networks which in OpenStack are defined by cloud administrator (You) and bound to existing physical network which are already set by network administrator. For example you have couple of ports on your servers connected to LAN switches, some of them are in access mode some are trunks of specific VLANs. Also routers and other network services are managed outside of your cloud.
    You need to define these networks in OpenStack before any user can connect their VMs to them. The most important part is that can do this from the GUI .
    On the other hand there are so called: tenant networks. These are networks which are under cloud user administration. These are like cloud private networks (if you know Ops Center or Exalogic there is similar notion there) - which are created on-demand by your users. You as cloud administrator only create some limits (quotas) regarding how many such networks can be created by user. But obviously you - as cloud administrator - also need to define mechanisms which allow such networks be created on demand. This also has to be done from command line by editing some files - before users can create tenant networks.
    The mechanism I'm talking about can be: VLAN, VxLAN, GRE.
    First one is the only one currently supported by Oracle and it is quite simple: you, in cooperation with your network administrator reserve range (or set) of traditional VLANs and configure them on network switches where your servers are connected (I mean server ports which you dedicate for tenant networks - not all because you need other network for management, etc). Then you define this set in some OpenStack files to let it manage them on its own. For example: you have got 20 VLANs from network department for exclusive use for your cloud. Nobody knows what each VLAN will be used for yet. This will be allocated by cloud users on-demand. Openstack will just allocate VLAN upon user request and will not allow other users to create their private networks on the same VLAN.
    Better approach is to use VxLAN which is tunneling mechanism. You don't need pool of VLANs in this case but you just set tunneling rules and then OpenStack creates private networks using secure tunnels over L3 network which you define first. VxLAN is standard, you can read about it and it is used by OpenStack for Solaris. Unfortunately this did not work for me and Release Notes from Oracle OpenStack for Linux says that it is not supported yet.
    There is also GRE - which is also tunneling and is similar to VxLAN - but it did not work for me either.
    Where it is all configured? Basic setup is created by packstack using CONFIG_NEUTRON_OVS_* variables. However I used packstack only for installation and then I modified configuration files on all nodes. The most important file where configuration is kept is: /etc/neutron/plugin.ini. In this files you set framework on which provider and tenant networks are build. The most important section is [OVS], for example:
    [OVS]
    enant_network_type=vlan
    enable_tunneling=false
    integration_bridge=br-int
    bridge_mappings=physnet1:br-eth3
    network_vlan_ranges=physnet1:2032:2032,physnet1:3010:3020
    This example is from compute node. It says: I have one physical network: physnet1 which is supported by virtual switch called br-eth3. You need to create this virtual switch on your own! OpenStack networking deamons (Neutron) do not create virtual switches - they only reconfigure them if needed. Physical network is just name which you can use later on if you setup provider network.
    Also, in the example you tell OpenStack that you have 11 VLANs available on physnet1 network. Similar configuration has to be done on controller node (but it is only because in simple topology your controller is also network node)
    Then I dedicated first VLAN: 2032 for provider network. This was accomplished by command issued on controller node.
    # neutron net-create --router:external=true --provider:network_type=vlan  --provider:physical_network=physnet1 --provider:segmentation_id=2032 labnet
    From that moment this network (called "labnet") should appear in the GUI and you can connect VMs to it. Users might also do this if you mark it as "shared".
    Also users should be able to create their private networks and this will allocate VLANs from 3010 to 3020 - so there can be only 10 private networks created totally in your cloud now.
    Of course this is example and you can build completely different setup. You can use different ports for provider networks and for tenants one. You do not need VLANs for provider networks and theoretically for tenant too - but you would have to have plenty of ports for this. If you manage to get VxLAN working - then please share your experience here.
    I strongly recommend reading following information sources (Oracle does  not provide this details in their documentation):
    OpenStack Docs: Current
    https://developer.rackspace.com/blog/neutron-networking-the-building-blocks-of-an-openstack-cloud/  there are more blog entries (followups) on this topic - look for them using keyword "neutron"
    https://www.rdoproject.org/forum/discussion/875/does-rdo-support-flat-network-type-/p1
    As for blank VM console:
    I've also had this problem when I used Cirros VM images. However when I imported the template I use on my Oracle VM - then console was working correctly. I think this is more connected with VM configuration then OpenStack. AFAIK you can connect to console directly using vnc client - at least you can configure Nova in that way that it allows external VNC connections.
    Regards,
    Michal

  • AS3 not working when uploaded to linux server

    Works like a charm when I preview it but when I upload to the
    server (tried 3 different ones) it just ignore the actionscripts
    all together no matter what I use.
    What I have is a rotating banner system. I set it up to
    randomly start at a specific one. If I preview it locally or run in
    in my .html file locally (just using preview in dreamweaver) it
    works like a charm and starts at a random one. When I upload it it
    just starts at the first one like the actionscripts do not exist.
    Using Flash CS3 and AS3.
    Thanks

    Pretty sure it is not a problem with the upload as I have
    been doing this for years the same way with Dreamweaver. In
    diagnosing the issue I rebuilt it and in place of the movie clips I
    just put text and uploaded it. Worked like a charm. Added the movie
    clips and again does not work when I upload it. Ignores the
    actionscript and just plays them in order. Did a build from top to
    bottom and from bottom to top also. Something in the movie clips is
    causing it but darned if I can find the answer. I have done this
    same thing before and it worked just fine. Just at a loss. I am
    attaching the code inside the movie scripts which work just fine.
    It is just ignoring scripts on the Scene 1 level.

  • Numpad keys are not working for SAP in Linux

    hi,
         i have installed sapgui710rev4 and my installation has been perfect but when i try to configure my SAP server ip address my numpad keys are not working.. please anyone help me.
        thanks in advance
         kumar raju

    Dear Kumar,
    please ask your question in the [SAP GUI Forum|SAP GUI; which is also the right forum for the JavaGUI.
    Thanks,
       Hannes

  • Portal can not work with abnormal increased /usr/sap/SID file space

    hi experts,
    I got a problem today on our HR portal.
    At first I can't login the nwa, then I checked tha OS of portal, I saw that the file system /usr/sap/SID's used spaces increase very quickly, though I increase the free spaces for emergency use, the portal still can not work and the free space is still missing. I just solved by restart the SAP service.
    Did anyone face the same problems before?
    System information
    OS --> AIX v5.3
    Database --> Oracle 10.2.0.2
    SAP --> netweaver 2004s SP12.

    Hi,
    This happens when your archive log file of the application increases,
    Check the folder usr/sap/sid/instance/j2ee/cluster/server0/log/archive folder this is the reason for your disk space increase. Just take a backup and delete the files in the archive folder (except temp folder).
    The deletion of older archive files is not handeled by SAP, you have to manually delete the archive logs.
    Regards,
    Vamshi.

  • Flash plugin detected but not working (Firefox 22 on Linux)

    Hi all,
    I can't get the flash plugin to work. It's installed, detected in about:plugins, but when I visit adobes's test page at http://www.adobe.com/fr/shockwave/welcome/ , I just get the usual " you need a plugin to view this content" thing.
    This happenned since I migrated from Mageia 1 to Mageia 2, and still doesn't work on Mageia 3, which uses Firefox 17 ESR. I then downloaded and installed Firefox 22 directly from Mozilla, still with no luck. I've reset my profile, tried to use an empty profile, tried disabling all add-ons, still no luck.
    about:plugins displays this:
    File : libflashplayer.so
    Path : /opt/firefox/browser/plugins/libflashplayer.so
    Version : 11,2,202,297
    State : Enabled
    Shockwave Flash 11.2 r202
    This is the most up-to-date flash version available from Adobe.
    Another thing is that this machine is a 32 bits install, on an Athlon XP 3000+ with a Radeon X1650 graphics card. Surprisingly, on another machine, using the same distro but with a 64 bits install, Flash works well.
    I'm out of ideas now, so any hint would be welcome. Thank you.

    Shockwave also known as Shockwave for Director is not the same as the Shockwave Flash Player.
    *https://support.mozilla.org/kb/Using+the+Shockwave+plugin+with+Firefox
    *https://support.mozilla.org/kb/Managing+the+Flash+plugin
    You can test the Flash plugin here:
    *http://www.adobe.com/fr/software/flash/about/
    *http://www.adobe.com/software/flash/about/

  • Load panel tui file not working on CVI2012 for Linux

    We are having problems with panels that look fine on Windows being difficult to read on Linux, presumably because most control and text fonts are VAL_DIALOG_META_FONT on Windows but the CVI for Linux run-time only has NISYSTEM.
    As a quick way to test different fonts on Linux I created a tui file from the uir file and then used global search and replace to change VAL_DIALOG_META_FONT to something that would hopefully look decent on Linux.
    Problem is that LoadPanel(0,"filename.tui",1) works on WIndows but throws error -46 on Linux.
    Whereas LoadPanel,0,"filename.uir,PANEL) works fine on Linux & Windows but the fonts are very hard to read on Linux.
    Is there a table somewhere mapping the VAL_FONT attribute magic numbers to corresponding fonts on Windows and Linux?
    It'd be nice to have some guidance on the default font mappings. But at the end of the day, I don't really care much about fonts unless the defaults are hard to read.
    I guess one other potential complication is the UIR file originally came from CVI 8.5, but CVI 2010 for Windows didn't say anything about needing to "convert" it.  Perhaps one of the attributes in the tui file is not valid on Linux, but is on Windows?
    Solved!
    Go to Solution.

    Loading TUI files in Linux it's an issue that we have recently discovered and it did not made it yet to the known issue list. I'm not 100% sure but I believe a workaround to that problem would be to go and manually edit that tui file and remove those attributes that generates errors. You can begin with  ATTR_TITLEBAR_STYLE and then look if one of the following are in the tui file: ATTR_DS_BIND_PLOT_STYLE, ATTR_DS_BIND_POINT_STYLE, ATTR_DS_BIND_LINE_STYLE, ATTR_DS_BIND_PLOT_COLOR and delete them. Then try to load the tui file again.
    On the other hand I think there is a workaround for your original problem: the predefined fonts (VAL_DIALOG_METAFONT) looks bad on Linux. I believe there is a way a user can change the underlying font and the size of a predefined font. In windows you can change it in the registry but in Linux you can define an environment variable: XAPPLRESDIR that points to a directory that should contain a file named cvi, a file where you can write font settings. Each line has to be of the following format: <appName>.<key>:<value>. If you want the settings you're writing to be persistent for all applications the put a "*"instead of the application name. 
    The list of possible key is: appFont (NIAppMetaFont), menuFont (NIMenuMetaFont), dialogFont (NIDialogMetaFont), e​ditorFont (NIEditorMetaFont), messageBoxFont (NIMe​ssageBoxMetaFont).
    The value have to be of the following form: <font family>-<font name>-<font size>
    Here is the only line I have in the cvi file: *.dialogFont : adobe-helvetica-19

  • PDF portfolio search not working in Reader for Linux

    I have a PDF portfolio with embedded index created using Acrobat 9.5.5 running on Windows 7. I can search this portfolio without any problem using the windows versions of Acrobat 9.5.5 or Reader 11.0.4, but when I try any of the same searches using Reader 9.5.5 for Unix on Ubuntu 13.10, the searchs never terminate. The search window appears, but the spinning circle at top right of the search window just keeps spinning and no results ever appear. I've left it for half an hour without any results appearing. The same searches on Windows complete in a few seconds.
    The portfolio in question is here: https://www.dropbox.com/s/0rzh9t1oo0vx2ib/lilydoc-2.17.29.pdf (it's created from the various PDF manuals that make up the Lilypond documentation).

    Hmm. Sounds like something went wrong with the links. Are they spelled out (using http://www....etc) or are they hyperlinks? If they are spelled out, you could have your version of Reader set to recognize links and they may not (Edit>Preferences>General>Basic tools - Create links from URLs).
    To create links in ID, highlight the text, go to your hyperlinks pallet and in the drop-down select "New link" and fill in the appropriate information. Then when you export it to PDF from ID, in the "General" settings section under "include" select "Hyperlinks".
    There are other options you may want to be aware of but that's better asked about in the ID forum.

  • Cryptsetup is not working after upgrade to linux-3.14.1

    Did someone forget to compile the xts module for the new kernel?
    My /home is encrypted with aes, xts-plain64. And with kernel 3.14.1 i can't mount.
    I get:
    [ 19.421463] device-mapper: table: 254:0: crypt: Error allocating crypto tfm
    [ 19.421471] device-mapper: ioctl: error adding target to table
    [ 19.465118] device-mapper: ioctl: device doesn't appear to be in
    However on the kernel downgrade to 3.14-5 solved the problem.

    On my laptop i use 3.14.1-1-ARCH together with aes-xts-plain64 and it works as before.
    What is the output of this?
    cryptsetup --verbose open --type luks /dev/sdxy home
    Last edited by teateawhy (2014-04-20 16:26:55)

  • Cfdocument not working in CF8 on linux platform

    Hi,
    I am trying to create a simple PDF on CF 8.0 in a Linux/Unix
    environment. Every time, it times out at 30 seconds and produces a
    timeout error in the exception log. In addition, the below
    exception is logged as well. I'm just creating a simple PDF.
    CF Enterprise Version: 8,0,0,176276
    Java version : 1.5
    Java VM version: 2.3
    Java spec version: 1.5
    Operating System UNIX
    OS Version 2.6.9-42.ELsmp
    "Error","WebContainer : 1","04/10/08","08:31:39",,""
    coldfusion.document.DocumentProcessor$TimeOutException
      at
    coldfusion.document.DocumentProcessor.processContent(DocumentProcessor.java:251)
      at
    coldfusion.document.DocumentProcessor.processContent(DocumentProcessor.java:155)
      at
    coldfusion.tagext.lang.DocumentTag.processContent(DocumentTag.java:1476)
      at
    coldfusion.tagext.lang.DocumentTag._processContent(DocumentTag.java:1396)
      at
    coldfusion.tagext.lang.DocumentTag.doAfterBody(DocumentTag.java:1354)
      at
    cftest2ecfm625691459.runPage(/was_d68i/WebSphere/AppServer/profiles/was_d68i/installedApp s/tfl0663bNode04Cell/Adobe_ColdFusion_8.ear/cfusion.war/Support/AcctTeamRpt/test.cfm:4)
      at
    coldfusion.runtime.CfJspPage.invoke(CfJspPage.java:192)
      at
    coldfusion.tagext.lang.IncludeTag.doStartTag(IncludeTag.java:366)
      at
    coldfusion.filter.CfincludeFilter.invoke(CfincludeFilter.java:65)
      at
    coldfusion.filter.ApplicationFilter.invoke(ApplicationFilter.java:279)
      at
    coldfusion.filter.RequestMonitorFilter.invoke(RequestMonitorFilter.java:48)
      at
    coldfusion.filter.MonitoringFilter.invoke(MonitoringFilter.java:40)
      at
    coldfusion.filter.PathFilter.invoke(PathFilter.java:86)
      at
    coldfusion.filter.ExceptionFilter.invoke(ExceptionFilter.java:70)
      at
    coldfusion.filter.BrowserDebugFilter.invoke(BrowserDebugFilter.java:74)
      at
    coldfusion.filter.ClientScopePersistenceFilter.invoke(ClientScopePersistenceFilter.java:2 8)
      at
    coldfusion.filter.BrowserFilter.invoke(BrowserFilter.java:38)
      at
    coldfusion.filter.NoCacheFilter.invoke(NoCacheFilter.java:46)
      at
    coldfusion.filter.GlobalsFilter.invoke(GlobalsFilter.java:38)
      at
    coldfusion.filter.DatasourceFilter.invoke(DatasourceFilter.java:22)
      at
    coldfusion.CfmServlet.service(CfmServlet.java:175)
      at
    coldfusion.bootstrap.BootstrapServlet.service(BootstrapServlet.java:89)
      at
    com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1068)
      at
    com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1009)
      at
    com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
      at
    coldfusion.monitor.event.MonitoringServletFilter.doFilter(MonitoringServletFilter.java:42 )
      at
    coldfusion.bootstrap.BootstrapFilter.doFilter(BootstrapFilter.java:46)
      at
    com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java: 190)
      at
    com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
      at
    com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
      at
    com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:771)
      at
    com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:679)
      at
    com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:539)
      at
    com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:478)
      at
    com.ibm.ws.webcontainer.servlet.CacheServletWrapper.handleRequest(CacheServletWrapper.jav a:90)
      at
    com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:744)
      at
    com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1455)
      at
    com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:115)
      at
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink .java:454)
      at
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewInformation(HttpInboundLink .java:383)
      at
    com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.ready(HttpInboundLink.java:263)
      at
    com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.sendToDiscriminators(NewConn ectionInitialReadCallback.java:214)
      at
    com.ibm.ws.tcp.channel.impl.NewConnectionInitialReadCallback.complete(NewConnectionInitia lReadCallback.java:113)
      at
    com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionLi stener.java:165)
      at
    com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
      at
    com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
      at
    com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
      at
    com.ibm.io.async.ResultHandler.complete(ResultHandler.java:195)
      at
    com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:784)
      at
    com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:873)
      at
    com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1473)
    Please help!!!!
    Dave Phillips

    Can you check if the server is running in headless mode? To
    run the server in headless mode, the system property
    "java.awt.headless" must be set on the JVM. We automatically set it
    on the standalone ColdFusion installation but since this is on
    websphere, you need to set that.

Maybe you are looking for

  • Creation of production order

    hi, What are steps to create a production order thanks

  • Folder issues after restoring Catalog file

    Just upgraded from LR 3 to 5 after a drive failed. I did a new install of LR 5 on the new drive. I'm on an iMac running OS x 10.9.1 (Mavericks). I restored the previous Catalog file & all my previous thumbnails & accompanying folder structure is inta

  • HT201209 What if I redeemed a certificate and don't see the amount in my account

    What do I do if when I try to redeem a certificate it states that it's already redeemed but I can't find it in my account?

  • Multi player game

    hi everyone, i saw many multiplayer flash games on the internet, i want to know if it is possible to develop a multiplayer game using action script. if not, then how are these games done? see this link as an example: http://www.guessasketch.com/play/

  • Problem Activating proxy via SPROXY

    I am currently having as issue trying to activate the external requirements proxy via SPROXY. I regenerated the proxy and save the proxy.  When I attempt to activate the proxy I get the following error message:  "The used object, STRU PRXCTRL, is not