Image bleed through On A Dialog Control In LV

I am using a Dialog Control to control a lot of user interfaces in an application. In addition, I hide then make visible some other controls that sit in the dialog control. In 32bit color, this works and looks great. On some machines with low bit color settings, I am getting a ghosting effect. Looks like some of the other controls bleeding through. Any ideas on how to fix. I am using LV 6.1 now but should get my LV 7.1 upgrade this week.

If you have specific controls or indicators that exhibit this effect, you may want to replace those objects. I chased down one of these in LV 6.1 and that fixed the problem. I was suprised!
I was suprised because it seems that every other grphics related anomaly that I have noticed in LV were always fixed by using the latest and greatest screen drivers or by changing the hardware acceleration settings for the display. In my experience LV has always played the "graphic update game" correctly. It the hardware/drivers that are not keeping up.
Ben
Ben Rayner
I am currently active on.. MainStream Preppers
Rayner's Ridge is under construction

Similar Messages

  • Why are my masked layers bleeding through the background layer?

    Hi All,
    I'm working on a composite images using multipal layers and masks to create a collage. For some reason, I'm getting unwanted parts of layered images bleeding through  the background layer.
    I've trying using inverted masks which stop the 'bleed' but then I am unable to see it under the transparent background layer to edit it. Clipping mask doesn't seem to be helping either.
    I've done this sort of thing many times and have not had this happen. I seem to have forgotten a step. I'm using Photoshop CC, btw.
    What am I doing wrong? Ideas?
    Thanks!

    Good day!
    Could you please post a screenshot with the Layers Panel visible?
    Are you sure you paint with black and white?
    When you view the Layer Mask by alt-clocking its icon in the Layers Panel and measure the area that is to be hidden is it truly 100% black?
    (Resetting fore- and background colour by hitting the key D can also be helpful.)
    Regards,
    Pfaffenbichler

  • Theme bleeds through on DVD but not in preview - how to fix?

    I replaced all the background images in my theme - and when I view the dvd in preview - my images are shown - however, when I create the dvd - some of the former theme "forever" bleed through on the page"... how can I fix?

    I replaced all the background images in my theme - and when I view the dvd in preview - my images are shown - however, when I create the dvd - some of the former theme "forever" bleed through on the page"... how can I fix?

  • CS3 Background Color Bleeds Through, why?

    I've searched the forum and haven't found an answer. I know
    this maybe an amateur question but I just can't seem to figure out
    a solution.
    Disclaimer: I'm new to CSS at what I know about div tag I
    learned from an online tutorial.
    When I insert the div tag and specify an infinite background,
    the background bleeds through eh boxes that hold my text.
    I select the entire page in DW and
    insert a a div tag;
    -wrap around selection
    -ID : layout
    -New CSS Style
    Background;I set the back ground color by sampling the color
    that I brought in with my sliced image from PS.
    Box; width 100% height 100%. Margin: same for all; auto.
    and this is the result:
    romapielarska.com
    here is the code
    <html>
    <head>
    <title>test</title>
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1">
    <style type="text/css">
    <!--
    body,td,th {
    font-family: Florencesans Exp;
    font-size: 12px;
    color: #CCCCCC;
    #layout {
    background-color: #F5F4EC;
    margin: auto;
    height: 100%;
    width: 100%;
    -->
    </style>
    </head>
    <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0"
    marginwidth="0" marginheight="0">
    <!-- ImageReady Slices (test.psd) -->
    <div id="layout">
    <div id="layout">
    <div>
    <table id="Table_01" width="1276" height="916" border="0"
    cellpadding="0" cellspacing="0">
    <tr>
    <td rowspan="6">
    <img src="images/index_01.gif" width="136" height="916"
    alt=""></td>
    <td colspan="9">
    <img src="images/index_02.gif" width="1004" height="101"
    alt=""></td>
    <td rowspan="6">
    <img src="images/index_03.gif" width="136" height="916"
    alt=""></td>
    </tr>
    <tr>
    <td colspan="9">
    <img src="images/index_04.jpg" width="1004" height="640"
    alt=""></td>
    </tr>
    <tr>
    <td colspan="9">
    <img src="images/index_05.gif" width="1004" height="61"
    alt=""></td>
    </tr>
    <tr>
    <td rowspan="2">
    <img src="images/index_06.gif" width="162" height="31"
    alt=""></td>
    <td><div
    align="center">PORTRAITS</div></td>
    <td rowspan="2">
    <img src="images/index_08.gif" width="54" height="31"
    alt=""></td>
    <td>EVENTS</td>
    <td rowspan="2">
    <img src="images/index_10.gif" width="50" height="31"
    alt=""></td>
    <td><div align="center">PEOPLE &amp;
    PALCES</div></td>
    <td rowspan="2">
    <img src="images/index_12.gif" width="52" height="31"
    alt=""></td>
    <td><div align="center">CONTACT THE
    STUDIO</div></td>
    <td rowspan="2">
    <img src="images/index_14.gif" width="174" height="31"
    alt=""></td>
    </tr>
    <tr>
    <td>
    <img src="images/index_15.gif" width="101" height="12"
    alt=""></td>
    <td>
    <img src="images/index_16.gif" width="69" height="12"
    alt=""></td>
    <td>
    <img src="images/index_17.gif" width="170" height="12"
    alt=""></td>
    <td>
    <img src="images/index_18.gif" width="172" height="12"
    alt=""></td>
    </tr>
    <tr>
    <td colspan="9">
    <img src="images/index_19.gif" width="1004" height="83"
    alt=""></td>
    </tr>
    </table>
    </div>
    </div>
    </div>
    <!-- End ImageReady Slices -->
    </body>
    </html>

    body,td,th {
    font-family: Florencesans Exp;
    font-size: 12px;
    color: #CCCCCC;
    Be aware that this font is definitely NOT websafe. Most
    people will see
    Times/Times New Roman in its place. Your safe choices are -
    http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html
    <div id="layout">
    <div id="layout">
    <div>
    Be aware that you cannot use a given ID more than once on any
    page. As a
    result, this markup is invalid. Any what is the reason for
    the three nested
    divs anyhow?
    Your page layout -
    <div id="layout">
    <div id="layout">
    <div>
    <table id="Table_01" width="1276" height="916" border="0"
    cellpadding="0" cellspacing="0">
    is functionally identical to using just this -
    <table id="Table_01" width="1276" height="916" border="0"
    cellpadding="0" cellspacing="0">
    Why use the divs at all?
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Roma Pie" <[email protected]> wrote in
    message
    news:[email protected]...
    > I've searched the forum and haven't found an answer. I
    know this maybe an
    > amateur question but I just can't seem to figure out a
    solution.
    >
    > Disclaimer: I'm new to CSS at what I know about div tag
    I learned from an
    > online tutorial.
    >
    > When I insert the div tag and specify an infinite
    background, the
    > background
    > bleeds through eh boxes that hold my text.
    >
    > I select the entire page in DW and
    > insert a a div tag;
    > -wrap around selection
    > -ID : layout
    > -New CSS Style
    > Background;I set the back ground color by sampling the
    color that I
    > brought in
    > with my sliced image from PS.
    > Box; width 100% height 100%. Margin: same for all; auto.
    >
    > and this is the result:
    >
    > romapielarska.com
    >
    > here is the code
    >
    > <html>
    > <head>
    > <title>test</title>
    > <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1">
    > <style type="text/css">
    > <!--
    > body,td,th {
    > font-family: Florencesans Exp;
    > font-size: 12px;
    > color: #CCCCCC;
    > }
    > #layout {
    > background-color: #F5F4EC;
    > margin: auto;
    > height: 100%;
    > width: 100%;
    > }
    > -->
    > </style>
    > </head>
    > <body bgcolor="#FFFFFF" leftmargin="0" topmargin="0"
    marginwidth="0"
    > marginheight="0">
    > <!-- ImageReady Slices (test.psd) -->
    > <div id="layout">
    > <div id="layout">
    > <div>
    > <table id="Table_01" width="1276" height="916"
    border="0"
    > cellpadding="0" cellspacing="0">
    > <tr>
    > <td rowspan="6">
    > <img src="images/index_01.gif" width="136"
    height="916"
    > alt=""></td>
    > <td colspan="9">
    > <img src="images/index_02.gif" width="1004"
    height="101"
    > alt=""></td>
    > <td rowspan="6">
    > <img src="images/index_03.gif" width="136"
    height="916"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td colspan="9">
    > <img src="images/index_04.jpg" width="1004"
    height="640"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td colspan="9">
    > <img src="images/index_05.gif" width="1004"
    height="61"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td rowspan="2">
    > <img src="images/index_06.gif" width="162"
    height="31"
    > alt=""></td>
    > <td><div
    align="center">PORTRAITS</div></td>
    > <td rowspan="2">
    > <img src="images/index_08.gif" width="54" height="31"
    > alt=""></td>
    > <td>EVENTS</td>
    > <td rowspan="2">
    > <img src="images/index_10.gif" width="50" height="31"
    > alt=""></td>
    > <td><div align="center">PEOPLE &amp;
    PALCES</div></td>
    > <td rowspan="2">
    > <img src="images/index_12.gif" width="52" height="31"
    > alt=""></td>
    > <td><div align="center">CONTACT THE
    STUDIO</div></td>
    > <td rowspan="2">
    > <img src="images/index_14.gif" width="174"
    height="31"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td>
    > <img src="images/index_15.gif" width="101"
    height="12"
    > alt=""></td>
    > <td>
    > <img src="images/index_16.gif" width="69" height="12"
    > alt=""></td>
    > <td>
    > <img src="images/index_17.gif" width="170"
    height="12"
    > alt=""></td>
    > <td>
    > <img src="images/index_18.gif" width="172"
    height="12"
    > alt=""></td>
    > </tr>
    > <tr>
    > <td colspan="9">
    > <img src="images/index_19.gif" width="1004"
    height="83"
    > alt=""></td>
    > </tr>
    > </table>
    > </div>
    > </div>
    > </div>
    > <!-- End ImageReady Slices -->
    > </body>
    > </html>
    >
    >

  • HP Deskjet F4240: ink runs and bleeds through paper and card stock

    When I try to print business cards or letters with my new Deskjet F4240, the ink runs and bleeds through the paper or card stock.  The output can't be given to my customers because it looks cheap and unprofessional.  I think the problem is the Vivera ink as I have not encountered this problem in the past using the same paper and card stock, both with HP printers and with other brands of printers, and this is the first printer I've owned that uses Vivera ink.  Are there substitute cartridges that can be used, or do I need to replace the printer with one that doesn't use Vivera ink?  Thanks.
    This question was solved.
    View Solution.

    If the ink is bleeding through the paper or card stock it would indicate driver settings do not match the paper type.  Make sure you have selected plain paper of inkjet media depending on the paper type you have.  If you use photo apper settings on plain paper you will get too much ink on the page.
    Regards,
    Bob Headrick, MS MVP Printing/Imaging
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • My ipod app no longer works. Everytime I go to open the ipod app it stays open for a second and then shuts down. I am not able to get anything to play either through the standard ipod controls or the multitasking control panel. I'm sure there will be an u

    my ipod app no longer works. Everytime I go to open the ipod app it stays open for a second and then shuts down. I am not able to get anything to play either through the standard ipod controls or the multitasking control panel. I'm sure there will be an update soon to correct this, i just wanted to see if anyone else was having the same problem.
    wen i open ipod in my iphone ,, it gets stuck ,, and get backs to the menu ,,, and doesnot play anything ,, not video nor song

    If your phone is not officially unlocked by the carrier in the UK, you can not use the phone using another SIM, unless you modify the software or the SIM, which can lead to unexpected results, such as non functioning apps.
    Unauthorized modification of iPhone OS has been a major source of instability, disruption of services, and other issues
    Problems resulting from those modifications can't be discussed in these forums, due to the Terms of Use

  • How to send image file through mail without   any attachment

    Plz tell  me how to send image file through mail without any attachment  ( i mean not converting  that image into pdf or any format )  i want to send that text or image  through mail .

    Hi Sandeep,
    I think you can setup the type of email in Shared office Settings in transaction S016.
    There is an option called <Preset document classes>
    You choose this pushbutton to branch to the maintenance screen for the document classes that are directly displayed to users in the Business Workplace for selection when they use the Create function. The name under which the documents are displayed can also be maintained.
    http://help.sap.com/saphelp_nw70/helpdata/en/6c/69c30f418d11d1896e0000e8322d00/content.htm
    Haven't tried it though.
    Regards,
    Siddhesh

  • Change the image resolution through iPhoto

    Does anyone know how to change the image resolution through iPhoto? I know it can be done in other image editing software, but I have yet to find it as an option in iPhoto.

    Hi Rachel,
    There is no option within iPhoto.
    Lori

  • Images run through

    My portfolio site has thumbnails (buttons) that bring up
    images when rolled over. I have them scripted as "onRollover"
    "GoToAnd Stop" to a flagged frame.
    Sometimes, but not always, when I log into the site, the
    flagged frames, or images, run through the whole gamut before
    settling down to the first one. Or, they may do this when I roll
    over just one thumbnail button.
    I have a "stop" n the first frame of a timeline action layer.
    Anything else?
    http://www.adunate.com/what.html

    Thank you for getting back to me on this...  my slides are set for 1024 x 768 does making it that size reduce the mega pixels of the image?  The slide show I have going now is 3.88 GB is this to big for Keynote... things are really running slow here...
    thank you
    Mark

  • OT - Printing Double Sided Pages - visibility bleed through

    hi all,
    curious about OT issue of - printing double sided pages - visibility bleed through. with normal copy paper (20LB) if you print on both sides - you can see the print from the other side show through - not good.
    Q: what kind of paper do you need to NOT see the print on the opposite side show through

    I'd think 20 lb paper is pretty thin; I'd try 24 lb and, although this is a guess on my part, the way your printer handles the ink could also have something to do with it?

  • Screens 'bleeding through' to other screens

    We upgraded to Captivate 6 last year and I've been seeing an odd problem occuring with recorded demos since then.  A typical demo that I create has about 25-30 pages with various mouse actions, text boxes, highlight boxes, etc.  After first publishing (in SWF format) I'll often start seeing odd 'bleed through' issues on screens where I'll see the screen from a previous slide but the mouse action, text boxes, and highlights from the next slide.  Or I'll see just a portion of the next slide on the screen with the content of the prior slide visible behind it.  I can't detect any pattern on where this happening, it seems random within the project.  Also, if I keep republishing repeatedly I can usually make this go away (but not always).  The problem appears in both previewing and viewing the published project.  I do have the latest patch so it's not related to that.  I've only seen one post similar to this in the forum and it wasn't really answered.  Any idea what's going on here, perhaps some adjustments that I should make to publishing settings?  Thanks!

    Just FYI based on feedback from another post, this issue seems to be resolved by turning off the Advanced Project Compression in Preferences.  Adobe, is there a known bug with this?  Why or why wouldn't someone use this option?

  • When using classic dialog controls in labview 7.1 why does the text color that I have selected always stays black?

    I have an older program created in LV 6.0.2 that uses dialog buttons. The text color is red or blue. When I load it into LV 7.1 the color stays black. When I edit text I can see that the color is correct but it will not display the color when I leave edit mode on the control. Even if I select a new button from the classic tools pallete "dialog controls" I am unable to change the text color.
    What is happening? Why does LV 7.1 prevent this text color change?
    Roger

    The dialog control colors are set by the operating system so they match other controls that the OS generates. So in LabVIEW 6, they were actually not behaving correctly.
    The following text is from the LabVIEW help on Dialog controls.
    "You cannot customize the appearance of the dialog spin control, slide controls, or progress bars because the controls and indicators use platform-specific drawing functions that do not support customization. You also cannot use Property Nodes and Invoke Nodes to customize the appearance of these controls and indicators."
    If you need different text color, you'll have to use the non dialog controls.
    Ed
    Ed Dickens - Certified LabVIEW Architect - DISTek Integration, Inc. - NI Certified Alliance Partner
    Using the Abort button to stop your VI is like using a tree to stop your car. It works, but there may be consequences.

  • Background Color Bleed-through in Safari 8.0

    Ever since upgrading to Yosemite and the new Safari, the desktop wallpaper color bleeds through the bookmarks area. It looks like a small degree of translucency. For a redesign of software that was suppose to be "clean" looking, this is very distracting and makes it look really ugly. Is there any way to prevent this, maybe a preference I may be over-looking?

    Great, thanks!
    I never went into Accessibility as I thought that was for people with certain challenges. Apparently, I'm challenged as well.

  • Image transfer through *socket*

    hi.
    can anyone plz show how to send a PNG image file through a raw socket outputStream (from a j2se server to a midlet) ???
    thanks

    You will have to take care of indentation.
    midlet code:
    //SOCKET ---------------------------------------------------------------
    import javax.microedition.midlet.*;
    import javax.microedition.lcdui.*;
    import java.io.*;
    import javax.microedition.io.*;
    public class Main extends MIDlet implements Runnable
         private Thread t;
         private Display display;
         private Form form;
         private Command exitCommand, getCommand;
         private String connectionDetails "socket://10.10.100.109:1500";
         private InputConnection ic;
         private DataInputStream dis;
         public Main()
              //create the backCommand, okCommand and the exitCommand
              exitCommand = new Command("Exit", Command.EXIT, 1);
              //creating the form
              form = new Form("CONNECTING......");
              form.addCommand(exitCommand);
              System.out.println("exit command and get command were appended to the form");
              //instantiating the listener
              CommandListener listener = new CommandListener()
                   public void commandAction(Command c,Displayable d)
                        if(c==exitCommand)
                             System.out.println("exitCommand as pressed");
                             exit();
                   public void exit()
                        destroyApp(true);
                        notifyDestroyed();
              //setting the listeners
              form.setCommandListener(listener);
              //getting the display object
              display = Display.getDisplay(this);
         public void startApp()
              display.setCurrent(form);
              System.out.println("form was set as the currentscreen");
              t = new Thread(this);
    t.start();
         public void pauseApp()
         public void destroyApp(boolean cond)
              display = null;
              form = null;
              exitCommand = null;
    public void run()
         while(true)
                                  try
                                       //establishing a connection with the remote server
                                       System.out.println("about to get a stream connection");
                                       ic = (InputConnection)Connector.open(connectionDetails,Connector.READ);
                                       System.out.println("input connection was created");
                                       //input stream is created on top
                                       //of the stream connection object
                                       dis = ic.openDataInputStream();
                                       System.out.println("input stream was created");
                                       //receiving data
                                       byte []ib = new byte[10000];
                                       int length = dis.read(ib);
         System.out.println("BYTES RECEIVED "+length);
         /*for(int k= 0;k<length;k++)
              System.out.println("byte["+k+"]="+ib[k]);
                                       //displaying the received data
                                       if(form.size()!=0)
                                            form.delete(0);
                                       form.append(Image.createImage(ib,0,length));
                                       //form.append(new StringItem("DOLLAR NIS exchange rate is ", sb.toString()));
                                  catch(Exception e)
                                       if(form.size()!=0)
                                            form.delete(0);
                                       form.append(new StringItem("problem:",e.getMessage()));
                                  finally
                                       //releasing resources that were allocated
                                       try
                                            if(dis!=null)
                                                 dis.close();
                                       catch(IOException e)
                                            e.printStackTrace();
                                       try
                                            if(ic!=null)
                                                 ic.close();
                                       catch(IOException e)
                                            e.printStackTrace();
                   try{Thread.sleep(1000);}catch(Exception e){e.printStackTrace();}
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    Server code:
    // tcpServer.java by fpont 3/2000
    // usage : java tcpServer <port number>.
    // default port is 1500.
    // connection to be closed by client.
    // this server handles only 1 connection.
    package sock;
    import java.net.*;
    import java.io.*;
    public class ImageServer {
         public static int counter = 0;
         public static final int counter_end = 4;
    public static void main(String args[]) {
         int port;
         ServerSocket server_socket;
         BufferedReader input;
         OutputStream output;
         try {
         port = Integer.parseInt(args[0]);
         catch (Exception e) {
         System.out.println("port = 1500 (default)");
         port = 1500;
         try {
         server_socket = new ServerSocket(port);
         System.out.println("Server waiting for client on port " +
                   server_socket.getLocalPort());
         // server infinite loop
         while(true) {
              Socket socket = server_socket.accept();
              System.out.println("New connection accepted " +
                        socket.getInetAddress() +
                        ":" + socket.getPort());
              //input = new BufferedReader(new InputStreamReader(socket.getInputStream()));
    output = socket.getOutputStream();
              // print received data
              try
    byte []ib=getCurrentFileBytes();
    System.out.println("BYTES TO SEND "+ ib.length);
    output.write(ib);
    output.flush();
    output.close();
              catch (IOException e) {
              System.out.println(e);
              // connection closed by client
              try {
              socket.close();
              System.out.println("Connection closed by client");
              catch (IOException e) {
              System.out.println(e);
         catch (IOException e) {
         System.out.println(e);
    private static byte[] getCurrentFileBytes() throws IOException
              byte []ret = getFileBytes("c:/temp/ts"+counter+".png");
              if(counter == counter_end)counter = 0;
              else counter++;
              return ret;
    private static byte[] getFileBytes(String FileName) throws IOException
              byte[] lReturn = null;
              try
                   FileInputStream fis = new FileInputStream(FileName);
                   lReturn = getBytes(fis);
                   fis.close();
              catch(Exception e)
                   e.printStackTrace();
                   throw new IOException();
              return lReturn;
    private static byte[] getBytes(InputStream inputStream)
    byte finalBuffer[] = null;
    int receiveBufferSize = 1000;
    byte receiveBuffer[] = new byte[receiveBufferSize];
    int offset = 0;
    int length = 0;
    int bytesRead = 0;
    try
    while(inputStream.available() > 0)
    bytesRead = inputStream.read(receiveBuffer,offset,
    receiveBufferSize);
    byte temp[] = new byte[length + bytesRead];
    if(length>0)System.arraycopy(finalBuffer,0,temp,0,length);
    System.arraycopy(receiveBuffer,0,temp,length,bytesRead);
    finalBuffer = temp;
    length = length + bytesRead;
    catch(IOException ioe)
    ioe.printStackTrace();
    finalBuffer = new byte[0];
    return finalBuffer;

  • Antenna Choice For Ensuring Minimun Bleed-Through

    Hi all,
    Hopefully a quick question regarding antenna choice, using a few 3602e AP's which antenna would give the best result in minimizing bleed through to the floor below? Ideally I would like no signal present on the floor below but how feasible that is when your talking about a 7-9 metre gap with only a 500mm slab between 1st floor ceiling and ground floor base.
    The dual band directional antenna looks promising but not sure if this suits an large open plan office, my planning software gives me a feel but not having the chance to field test leaves me trying to nail this solution off site. Any thoughts or experience would be most appreciated.

    Hello Nick,
    As per your query i can suggest you the following solution-
    CCI is not only an issue that will be faced in aggregating channels within the high-density deployment but something that must be kept in mind regarding existing deployments of surrounding areas. Lecture halls and classrooms tend to be co-located in the same facility, so overall design must be considered.
    For more information please refer to the link-
    http://www.cisco.com/en/US/prod/collateral/wireless/ps5678/ps10981/design_guide_c07-693245.html#wp9001240
    Hope this will help you.

Maybe you are looking for