Creating and connecting images to indicate tag values

I am trying to create a simplified version of our plant layout on my front panel using images from the image navigator. I would like to create, for example, a rectangle and have it shown green when my discrete tag value is 1 and red when my tag value is 0. I know how to code this for LEDs, however the images I lay down on the front panel do not give me the same options. (and I can’t find a simple rectangle on the image navigator??)
If anyone has any experience using this tool, I would like to know the steps involved from dragging an image on to the front panel to coding an image in the way described above.
Thanks for the help,
Stuart

As the previous post mentions, search for threads on "customizing controls", there have been a number of those. Unfortunately, what you are describing, available in most of the SCADA packages (Intellution, Wonderware, etc.) isn't available in LabVIEW. To do it requires opening a boolean indicator (LED, etc.) in the control editor and then pasting in the appropriate images, doable, but a lot of work to get good looking, controllable images.
Good Luck,
P.M.
Putnam
Certified LabVIEW Developer
Senior Test Engineer
Currently using LV 6.1-LabVIEW 2012, RT8.5
LabVIEW Champion

Similar Messages

  • How to create and execute a function whose return value is  a table

    hi folks ,
    i would like know how to create and execute a function whose return value is a table ,
    am new to pl/sql ,
    my statement for the function is
    SELECT ct.credential_code, c.expiration_date
    FROM certifications c, credential_types ct
    WHERE ct.crdnt_id = c.crdnt_id
    AND c.person_id = person_id;
    i would like to have the result of the above query as return value for the function.
    Thanks in advance ,
    Ashok.c

    hi Ps ,
    Can you please do small sample ,
    that would help me in clear understanding
    thanks in advance
    ashok.c

  • Part 04 - Creating and Importing Images | Classroom: Basic Site Layout and Navigation in Dreamweaver | Adobe TV

    Learn how to create and prepare images to incorporate into your website design.  Save them in web friendly JPG or PNG formats while maintaining a good balance between quality and small file size. Import them into Dreamweaver and make some initial adjustments to layout and alignment.
    http://adobe.ly/zL64GN

    This third lesson needs to be updated. The "ALIGN" buttons in Properties are now missing in CS6 because it's obsolete in HTML now...

  • Using Fx as a library to create and save image

    Hi,
    I wrote an FX desktop app to create an vector image and saved as png. I would like to use this FX program like a library.
    For example, to use it in glassfish managed bean to generate image and saved to a directory. Can this be done? I am wondering how to call FX, pass in parameters, generate and safe the graph WITHOUT firing up as a desktop app.
    Just want to use FX to create an image in buffer image, save and return me a link to that image. Java calling javxFX to produced the required image.
    I already wrote a working FX. Hopefully it works without having to write another apps to do the job.
    Appreciate any help or advise.

    This feature is [url http://javafx-jira.kenai.com/browse/RT-14038]planned, but not yet publicly supported. It appears to have been scheduled for Lombard, the version after 2.0. If you need this feature now, there is still a hack available: Image conversion between AWT and FX

  • Creating and moving images

    Hi, I would like to make a game as hobby in Java but have no clue of anything. Can anyone show me how to create and move the images? I don't know how to show an image in window but I do know about JComponents and actionListeners such as mouse and key. Thank you.

    look at the image and applet api and then create an image with the getImage method in the applet api
    once youve created it, paint it in the paint method
    to paint:
    g.drawImage(Image imageName, int xPosition, int yPosition, Component? imageProducer/**u can just use this*/);then youll prolly hav a speed variable.
    just do things like
    xPosition += xSpeed;
    and
    yPosition += ySpeed;
    then the update method to make it not flash... rememb to add Graphics dbg as an instance variable...
    public void update(Graphics g)
              if (dbImage == null)
                  dbImage = createImage (this.getSize().width, this.getSize().height);
                  dbg = dbImage.getGraphics ();
              dbg.setColor (getBackground ());
              dbg.fillRect (0, 0, this.getSize().width, this.getSize().height);
              dbg.setColor (getForeground());
              paint (dbg);
              g.drawImage (dbImage, 0, 0, this);
          }

  • Creating PDF with IMAGE using CFDOCUMENT TAG

    Hi Guys,
    I m facing problem while creating the PDF using CFDOCUMENT
    tag.
    Actually my clients want the IMAGEs in PDF document.
    Problem is most of the images in JPG format and while I am
    going to attach images in PDF document it takes lots of time for
    creating PDF. In most of time it cause timeout.
    I have try to convert images JPG to PNG, yes I some what
    better performance than JPG format but still it is work for 20 - 25
    images. In my case I want to attach normally 50-100 images in PDF
    (sometimes it is more 200).
    PLZ, Help me.. F1...F1...F1
    thanks in advance
    Pritesh
    Coldfusion Programmer

    I am having a similar and more serious problem. It takes a
    long time to execute, but even attaching a small image balloons the
    pdf to 6MB plus. After a few images it gets up to 20MB. These are
    100k jpeg files being attached. The resulting PDF is too large to
    email or process effectively. Does anyone know how to reduce
    size/processing?

  • Problem with creating and displaying images in a thread

    Hi everyone,
    i need some bit of advice (of course otherwise i wouldn't write anything here). My situation is like this:
    I have a JFrame where the user can enter a string. Then a file that corresponds to this string is read and the information is stored in objects, then these two objects (there are always 2 objects per file) are passed to an ImageCreator class that creates one image with the information found in each object. So per file there are always two images created. Now the thing is that after creating the images i need to display them for 10 seconds each, but as it takes about 2 seconds to create each image i would like to start showing the first one already while the second one is still being created. As i am not really experienced with threads i wonder what would be the best way to manage something like this. Here is a little bit of code, which is still in a rather pseudo code state...if(checkPattern(scanField.getText()) &&
          fc.getFile(createFilename(scanField.getText())) != null)
          BufferedImage img = null;
          ImageDisplay display = new ImageDisplay(scanField.getText(), this);
          for (int i=1; i<3; i++) {
          Info info = tReader.readTelegramForOneInfo(createFilename(scanField.getText()));
          if(i==1) 
            info.setError(ew.getProperty(info.getMTNr1(), info.getLack()));
          if(i==2)
            info.setError(ew.getProperty(info.getMTNr2(), info.getLack()));
            iCreator.setHashtable(info);
            iCreator.setWhichMatNr(i);
            img = iCreator.createImage(false);
            if(i == 1)
                //here i would like to start showing the first image
                display.showImage(img);
          //thats an older version where i displayed both images after they had been
          //created.
          //Thread t = new Thread(new ImageDisplay(scanField.getText(), this));
          //t.start();
          //here i would like to show the second image.
          display.showImage(img);
          scanField.setText("");
        else
           doSomethingElse();
        }I hope you can help me.
    Thanks!

    All actual drawing opertations should occur on the dispatcher thread. When the first image is ready you could use SwingUtiltiies.invokeLater() to place a task on the dispatcher thread to draw the image e.g.
    final BufferedImage img = iCreator.createImage(false);
    if(i == 1)
      SwingUtilities.invokeLater(new Runnable() {
         public void run() {
           display.showImage(img);
       });(Both the variables uses in run() must be final.
    But it's probably better to have a java.awt.Component of some kind for each image to be displayed, and whose paint method does the actual rendering, if the image is ready (is blank otherwise). Then, when the image is ready you need only call repaint on the components.

  • Load, create, and save image as thumbnail

    Duke Dollars to earn ... :)
    Hi,
    I want to create a very simple jsp page where I can upload an image through the filechooser and display the uploaded image on the page. When hitting a save button I want to save the image as a thumbnail on the webserver.
    If anyone has suggestions on smooth, clever code that will do this for me, it will be highly appreciated. And answers with code will be awarded.
    Regards
    Malin

    see if this can help you out...
    import com.sun.image.codec.jpeg.*;
    import java.awt.*;
    import java.awt.image.*;
    import java.io.*;
    public class Thumbnail {
    public static void main(String[] args) throws Exception {
    if (args.length != 5) {
    System.err.println("Usage: java Thumbnail inputFileName " +
    "outputFileName width height quality"); //quality 0-100
    System.exit(1);
    // load image from INFILE
    Image image = Toolkit.getDefaultToolkit().getImage(args[0]);
    MediaTracker mediaTracker = new MediaTracker(new Frame());
    mediaTracker.addImage(image, 0);
    mediaTracker.waitForID(0);
    // determine thumbnail size from WIDTH and HEIGHT
    int thumbWidth = Integer.parseInt(args[2]);
    int thumbHeight = Integer.parseInt(args[3]);
    double thumbRatio = (double)thumbWidth / (double)thumbHeight;
    int imageWidth = image.getWidth(null);
    int imageHeight = image.getHeight(null);
    double imageRatio = (double)imageWidth / (double)imageHeight;
    if (thumbRatio < imageRatio) {
    thumbHeight = (int)(thumbWidth / imageRatio);
    } else {
    thumbWidth = (int)(thumbHeight * imageRatio);
    // draw original image to thumbnail image object and
    // scale it to the new size on-the-fly
    BufferedImage thumbImage = new BufferedImage(thumbWidth,
    thumbHeight, BufferedImage.TYPE_INT_RGB);
    Graphics2D graphics2D = thumbImage.createGraphics();
    graphics2D.setRenderingHint(RenderingHints.KEY_INTERPOLATION,
    RenderingHints.VALUE_INTERPOLATION_BILINEAR);
    graphics2D.drawImage(image, 0, 0, thumbWidth, thumbHeight, null);
    // save thumbnail image to OUTFILE
    BufferedOutputStream out = new BufferedOutputStream(new
    FileOutputStream(args[1]));
    JPEGImageEncoder encoder = JPEGCodec.createJPEGEncoder(out);
    JPEGEncodeParam param = encoder.
    getDefaultJPEGEncodeParam(thumbImage);
    int quality = Integer.parseInt(args[4]);
    quality = Math.max(0, Math.min(quality, 100));
    param.setQuality((float)quality / 100.0f, false);
    encoder.setJPEGEncodeParam(param);
    encoder.encode(thumbImage);
    System.out.println("Done.");
    System.exit(0);

  • I need to create a image using some numeric values and i want to display values in image,

    I need to create a image using some numeric values and i want to display values in image, Numeric values be enterd by text file, excel file or user input by dialog box,
    this is the sample if image.
    http://s17.postimg.org/5xvtzbztn/5_01_03_I.png
    128 x 16 Pixels , Back ground Black, Numbers in Red, Should be same as above picture.
    Because i have hundreds of images to create like this.
    If any one can make a script for this it is very good.
    Sorry about my English.
    Thank you.

    Have you checked out data driven graphics?
    https://helpx.adobe.com/photoshop/using/creating-data-driven-graphics.html

  • How can i create and paste my own tags into source page of a html editor

    I download ekit and try to customize.
    I wrote a similar code:
    TagEditor extends HTML
    , and inner class:
    ExtendedTag extends Tag
    by following similar structure with javax.swing.text.html
    I added my own tags into tagList in HTMLUtilities class which is in com.hexidec.ekit.component. Because it is initialized three times when i run the program.
    I add a button to multitoolbar, and wrote a insertMyTag method in class EkitCore:
    private void insertMyTag() throws IOException, BadLocationException, RuntimeException {
    int caretPos = jtpMain.getCaretPosition();
    // htmlKit.insertHTML(htmlDoc, caretPos, "<VAZIFE>", 0, 0, TagEditor.ExtendedTag.VAZIFE);
    jtpMain.setText("<HTML><BODY><VAZIFE></BODY></HTML>");
    jtpSource.setText(jtpMain.getText());
    jtpMain.setText does display in the source editor but the default HTMLEditorKit creates the unkown tags and inserts them into the html view output with box-like borders. I want to keep the tags in the source but remove them from the output view so the user only sees the normal HTML output and my app sees the XML tags.
    What do I need to do in insertMyTag to turn off the strange display of
    unknown tags? Is there an easier way to do this?
    Thanks

    Or, take a ScreenHunter image of the list and email that to yourself.

  • Lightroom is not saving metadata. I have done several things to save and I still get the tag that states is is not saved. I have also created 2 smart collections. One showing metadata has been changed and one showing metadata is not up to date. No matter

    Lightroom is not saving metadata. I have done several things to save and I still get the tag that states is is not saved. I have also created 2 smart collections. One showing metadata has been changed and one showing metadata is not up to date. No matter what I do it is not showing in LR that it is saved. I spent 2 days with Seth Resnick trying to correct this and we re created my catalog. It was ok, until I imported new images and same problem. Now I have a new problem, when I bring image to PS it saves it but does not bring back to LR. Am I the only one out there who has this problem?

    See:
    How to use multiple iPods, iPads, or iPhones with one computer
    What is the best way to manage multiple...: Apple Support Communities

  • Creating a OJMS topic and connecting to BAM

    Hi,
    I have in our database created a topic for errors:
    BEGIN
    dbms_aqadm.drop_queue_table('IPLERRORQTAB',true);
    END;
    BEGIN
    sys.dbms_aqadm.create_queue_table (
    queue_table => 'IPLERRORQTAB'
    , queue_payload_type => 'SYS.AQ$_JMS_MESSAGE'
    , sort_list => 'PRIORITY,ENQ_TIME'
    , comment => ''
    , multiple_consumers => TRUE
    , message_grouping => DBMS_AQADM.NONE
    , storage_clause => 'TABLESPACE OJMS LOGGING'
    , primary_instance => '0'
    , secondary_instance => '0');
    COMMIT;
    END;
    BEGIN
    sys.dbms_aqadm.create_queue(
    queue_name => 'IPLERROR'
    , queue_table => 'IPLERRORQTAB'
    , queue_type => sys.dbms_aqadm.NORMAL_QUEUE
    , max_retries => '5'
    , retry_delay => '0'
    , retention_time => '0'
    , comment => '');
    END;
    BEGIN
    sys.dbms_aqadm.start_queue(
    queue_name => 'IPLERROR'
    , enqueue => TRUE
    , dequeue => TRUE);
    END;
    DECLARE
    subscriber SYS.aq$_agent;
    BEGIN
    subscriber := sys.aq$_agent (
    name => 'BAM',
    address => NULL,
    protocol => NULL);
    DBMS_AQADM.ADD_SUBSCRIBER (
    queue_name => 'IPLERROR',
    subscriber => subscriber);
    END;
    Then in the BAM Architect defined the following:
    TopicConnectionFactory Name: java:comp/resource/ojms_ipl/TopicConnectionFactories/IPLERRORQTAB
    Topic Name: java:comp/resource/ojms_ipl/Topics/IPLERROR
    Durable Subscriber Name (Optional): BAM
    In the enterprise Link i have created a connection between a Oracle BAM message receiver and a grid.
    When i try the connection I get the following error:
    IMessageSourceReceiver->messageReceive: javax.naming.NameNotFoundException: java:comp/resource/ojms_ipl/TopicConnectionFactories/IPLERRORQTAB not found
         at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:52)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at iteration.enterpriselink.sources.JMSConsumer.start(JMSConsumer.java:85)
         at iteration.enterpriselink.sources.JMSMessageSourceReceiverImpl.jmsConsumerStart(JMSMessageSourceReceiverImpl.java:1001)
         at iteration.enterpriselink.sources.JMSMessageSourceReceiverImpl.messageReceive(JMSMessageSourceReceiverImpl.java:326)
    [Oracle BAM Enterprise Link error code:  0x75 -- 0x1, 0x75 -- 0x3A]
    Error during Message Receive operation.
    [Oracle BAM Enterprise Link error code:  0x75 -- 0x1, 0x75 -- 0x3B]
    Error while processing the data for the step 'Oracle BAM Enterprise Message Receiver'
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
    Error while processing the data for the step 'Oracle BAM Enterprise Message Receiver'
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
    IMessageSourceReceiver->messageReceive: javax.naming.NameNotFoundException: java:comp/resource/ojms_ipl/TopicConnectionFactories/IPLERRORQTAB not found
         at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:52)
         at javax.naming.InitialContext.lookup(InitialContext.java:347)
         at iteration.enterpriselink.sources.JMSConsumer.start(JMSConsumer.java:85)
         at iteration.enterpriselink.sources.JMSMessageSourceReceiverImpl.jmsConsumerStart(JMSMessageSourceReceiverImpl.java:1001)
         at iteration.enterpriselink.sources.JMSMessageSourceReceiverImpl.messageReceive(JMSMessageSourceReceiverImpl.java:326)
    [Oracle BAM Enterprise Link error code:  0x75 -- 0x1, 0x75 -- 0x3A]
    Error during Message Receive operation.
    [Oracle BAM Enterprise Link error code:  0x75 -- 0x1, 0x75 -- 0x3B]
    Error while processing the data for the step 'Oracle BAM Enterprise Message Receiver'
    [Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
    Update of Plan "OJMS_Test_Plan" failed.
    [Oracle BAM Enterprise Link error code:  PlanMgr -- 0x1, PlanMgr -- 0xD5]
    Can anyone see where the error might be?
    Regards Eskil

    Hi,
    I solved the problem for him, it was a name resolution problem.
    Machine setup:
    machinebam.domain888.com - hosts bam
    machineias.domain0101.com - hosts ias
    The machine "machineias.domain0101.com" seems to be installed without the domain name (FQDN)
    This means that when the machinebam.domain888.com send the OPMN request to lookup the JMS setup:
    POST http://machineias.domain0101.com:6004/connect HTTP/1.1
    Content-Length: 0
    OPMNtype: pm
    OPMNrequest: /dump?type=dms&dmsarg=[nountype=opmn_ias_instance&format=xml]
    The response is without the FQDN;
    HTTP/1.1 200 OK
    Content-Length: 26486
    Content-Type: text/html
    Response:
    <?xml version='1.0'?>
    <!DOCTYPE pdml>
    <pdml version='9.0.4' name='opmn' host='machineias' id='26954' timestamp='1173813385745'>
    <statistics>
    <noun name="machineias:6201" type="opmn"><noun name="pm" type="opmn_pm">
    <noun name="soa_1013.machineias" type="opmn_ias_instance">
    <noun name="default_group" type="opmn_ias_component">
    <noun name="oc4j_soa" type="opmn_process_type">
    <noun name="default_group" type="opmn_process_set">
    <noun name="process_463551397" type="opmn_process">
    <noun name="opmn_oc4j_proc" type="opmn_header">
    <noun name="specialized" type="opmn_oc4j_proc">
    <metric name="oc4jInstance.value">
    <value type="string"><![CDATA[oc4j_soa]]></value>
    </metric>
    <metric name="oc4jIsland.value">
    <value type="string"><![CDATA[default_group]]></value>
    </metric>
    </noun>
    </noun>
    <noun name="jms" type="opmn_connect">
    <metric name="desc.value">
    <value type="string"><![CDATA[jms]]></value>
    </metric>
    <metric name="protocol.value">
    <value type="string"><![CDATA[jms]]></value>
    </metric>
    <metric name="host.value">
    <value type="string"><![CDATA[machineias]]></value></metric>
    <metric name="port.value">
    <value type="integer"><![CDATA[12604]]></value>
    </metric>
    This means that the name translation fails, ie a ping to machineias from machinebam.domain888.com fails.
    The solution is either of:
    - reinstall iAS with the domain suffix
    - add all the domains to the DNS suffix lookup list (in TCP IP advanced settings for windows)
    - add the host in %systemroot%\system32\drivers\etc\hosts
    Ha en bra dag!
    Örjan Lundberg

  • How do I move projects from aperture to create space and keep images on external hard drive

    How do I move projects from my iMac aperture 3 to an external hard disk so I keep all originals and create space on my iMac

    Do you want to move your complete Aperture library to an external volume or only selected projects?
    Get yourself an external drive that is formatted MacOS X Extended (Journaled) and connect it to a fast port, Thunderbolt, USB 3, for example.
    As a precaution repair your Aperture library using the Aperture Library First Aid Tools (Repairing and Rebuilding Your Aperture Library: Aperture 3 User Manual) and make a current backup, before you proceed.
    To move all projects to that drive simply drag your Aperture library to the external drive. Then click it in the Finder to launch Aperture on the new library and test it thoroughly, before you delete the old library.
    To move selected projects to the new drive, select the projects in Aperture and use the command "FIle > Relocate originals" and select a folder on the external drive as the destination in the File Chooser. See: Aperture 3 User Manual: Working with Referenced Images
    Regards
    Léonie

  • Recently moved and installed ATT DLS - I use their wireless router and connectted my airport express - Now I'm getting the Blue ? on some images

    Recently moved and installed ATT DLS - I use their wireless router and connectted my airport express - Now I'm getting the Blue ? on some images - and at times - videos don't load.  I've increased / deleted Cache.  Suggestions? Misconfig?  Could it be possible my configuration from MacBook to router isn't correct?
    Thanks!

    JG,
    Thanks for the info.
    Couple of questions. I found an apple support document on this topic that opened with this line:
    "AirPort Express and all AirPort Extreme base stations can use WDS. Earlier AirPort base stations can't."
    If the TC is an airport extreme base station, why can't this work to extend the network? I think I misunderstand. Here is the full article:
    http://support.apple.com/kb/HT2044?viewlocale=en_US
    If I buy a new airport extreme, set it to wireless-n only as my main router, am I correct that my existing time capsule could be used as a bridge if plugged in upstairs?
    Final question (and that should do it), could I take this old airport express, plug it in upstairs using the ethernet connection, and just create a separate wireless network to use with a different name?
    I'd like to keep one network if possible but just kicking around short term solutions.
    Thanks again.

  • Creating a share in 10.5 and connecting  with XP or Vista - My Experience

    Here was my situation.
    Client has a machine now running 10.5 on it that is sharing an external drive on the network for other mac users in the office to use as well as 3 Windows machines. I tested with an xp machine as well as a vista machine.
    The problem I was facing was that I had to set up the windows machines to be able to access the shared drive on the machine running 10.5. On 10.4 this was done with sharepoints, which breaks in 10.5. Luckily, Apple incorporated a lot of sharepoints functions into 10.5.
    First I had to create a Standard or Admin user for each unique user that will be connecting to the share, on the machine that the external drive is connected to. You have the option of creating a "share only" user, but that seems to only be for mac sharing because those accounts do not show up as available when you enable accounts to access the SMB.
    Once I had the new accounts made, I had to go to "Sharing" in the System Preferences and click on "File Sharing". When selected you see "Shared Folders" and "Users" panes. I clicked the + symbol and pointed it to the shared drive, since one of the accounts will have access to the whole drive. In the user pane I clicked the + and added the user I created for that access.
    Note at this point. If you use the same username and password of the user account in windows (case sensitive I believe) you will not have to specify a special username and password for access to the share. I did this with the first machine with complete access because he was the owner of the share.
    So after I gave that user access to the whole drive he was able to find the 10.5 machine on the network and connect to the share without prompt of a password.
    I then tried to set up the other two users who were not on the same subnet so they had to use "map network drive" on their PCs.
    Again I added the target folder that they would have access to on the shared drive. I added their user as having permission to access it. But when I went to map the network drive, it could see the folder if I entered \\ip.add.res.s\foldername and clicked "browse" but when I tried to add it, the system said it was not found. I also made sure to click "change user name" and entered the username and password for the account with access to the folder.
    So after tinkering a while I finally found that you must add the users to the main share drive list of users, even if they are set to "read only (dropbox)" or else they will not be able to access the subfolder assigned to them. It also did not make a difference if I removed the share drive completely and added just the subfolders and users individually.
    I hope this might help somone out there who might be having a similar issue with getting xp or vista to use shared folders in 10.5.

    Was not a question.

Maybe you are looking for

  • How to regiter java program as a concurrent program in oracle app 11i

    Hi all Can anyone in the group tell me how to regiter a java program that is developed as a concurrent program in oracle applications. Thanx and Regards Vidhya

  • EDI 850 PO

    Hi Guys, Hi we need to send 850 PO from ECC system thru PI to our customer Nokia as X12.Can you please let me know step by step procedure for this as I am new to EDI.Here we need to use AS2 adapter and also need to get 997 acknowledge back.Thanks for

  • Applying logs in a semi-standby instance

    Oracle Version: 10.2.0.3 Standard Edition OS: Windows 2003 Server I setup oracle standby (followed the steps in metalink doc 432514.1).. I am running 10.2.0.3 standard edition.. so teh standby have to be done manually (which is fine).. I shutdown pro

  • JSF UI component view restore.

    Good day, Please help me with my problem. The problem is: I use this http://myfaces.apache.org/tomahawk/panelNavigation2 to make a menu on my site. Component renered perfect: I can open submenu items, click on them, todo some actions and so on. But i

  • Disabling the Loupe

    I don't know if it's just me but I find the loupe in Bridge pretty annoying. (I can see photographers with masses of photos enjoying it, but I know what's in my images). Is there any way to disable it? Anytime I click on the preview up pops the loupe