Dialog borderless and image, bug

Adobe Photoshop CC, Windows 7 x64
Code:
var w = new Window ("dialog", "", undefined, {borderless: true});
w.margins = [0, 0, 0, 0];
var all = new File(File($.fileName).path + "/photo.png");
var tt = w.add("image", undefined, all);
var b = w.add ("button", undefined, "Cancel");
w.show ();
file "photo.png"
Result:
How to get it without a bug?
Thank you for your time and efforts.

No bug on CC 2014 and Mac OS X 10.8

Similar Messages

  • Acrobat Reader DC - Bug with Dialog Boxes Containing Images?

    Hi all -
    Been testing Reader DC.  Only took a couple of minutes to adjust to the new interface; pretty slick and intuitive.
    Noticed a potential issue that I wanted to warn/share/prob solve with the community.
    I was putting Reader DC through it's paces with a XFA PDF that has some dialog boxes, some of which even had images in them.  (Thanks again to BR001.)
    The dialog boxes with images look great on Acrobat & Reader 9/10/11 (WIN & MAC) - images are clear; no pixelation.
    Reader DC on MAC appears to be fine - resolution looks the same.
    But Reader DC on WIN - the images are now pixelated. Especially around the edges, characters/numbers, etc.  You can tell something is "off" with the image.
    A few simple side-by-side tests can be seen at links below.  Reader DC is on left; Acrobat 9 (9.5.5) is on right.
    Green smiley face: Dropbox - icon differences.PNG (83 x 83)
    Lightroom image: Dropbox - Lightroom Image - Comparison Test.PNG (225 x 132)
    Reader DC banner image: Dropbox - Reader DC Banner--- Comparison test.PNG  *MOST VISIBLE ON THIS EXAMPLE (ironically) (422 x 45)
    Simple banner with words image: Dropbox - Simple Banner - comparison test.PNG (342 x 100)
    PDF containing the 4 buttons that triggered these dialog boxes: Dropbox - Dialog Boxes with Images - PDF - LC community.pdf
    Bug in Reader DC for Windows? Not sure what else the cause could be...
    Anyone having their dialog boxes with images open in Reader DC for Windows WITHOUT the pixelation?
    FYI/thoughts/ideas/suggestions/confirmations?  Hmmm.....
    Brian

    Little easier; picture's worth a thousand; etc.
    Shortcuts to zoom in/out further for most web browsers: ("ctrl" & "+") or ("ctrl" & "-");

  • Image looks great in PS- when I go to print it looks grainy in printer preview dialog box and prints blurry. Why?

    Image looks great in PS- when I go to print, it looks grainy in printer preview dialog box and prints blurry.  Why is this happening? 

    PS CC, Yosemite, Epson 3880 (called espson to make sure it wasn't something with that), saved as a tiff/psdjpg- all files behave the same way.  When I open the raw file- and only crop the image- it behaves this way now- with grain and blur when printing.  No other files do this in the same shoot.  I worked on this image- could something have gotten corrupted along the way such that now even opening the raw file creates this problem.  SInce upgrading my computer -  a window pops up when I open PS that says I need to update my graphics card?? for 3D- I'm not using 3D- so I don't know if that means anything.  I have to leave for about an hour- but greatly appreciate any feedback. I will be in touch. Thank you.

  • New to Dialog Boxes and I'm stuck

    Seems there is no way to format a field in a Dialog Box. How can a field be checked to determine if the correct type of data was entered in it, when the user moves to the next field, before data is committed?
    I am stuck on how to limit the number of characters entered into the postal code and phone fields. I want to limit the number of numeric characters that can be entered in each phonenumber field ie  3 numbers, 3numbers and 4 numbers (999 999 9999)  And postal code field ie 3 characters and 3 characters (A9A 9A9)
    Also, once the user enters the required number of characters in the phone and postal code fields, the code should tab to the next field. And yes, I read about tab_first and next_tab, but don't understand how it works. The way I see it working is that once a phone or postal code field is filled with the required number of characters, control automatically tabs to the next field.
    I am using Adobe Acrobat Professional 8
    This code was written by trail and error using examples from various sources ie Acrobat JavaScript Scripting reference - version 7.0.5, Acrobat JavaScript Scripting Guide - version 7.0, and I have very little experience in creating a dialog box and its code - forgive the mess.
    //============================================================================
    var goon=true;
    var result;
    var address;
    var city;
    var province;
    var sign;
    var postalcodea;
    var postalcodeb;
    var homephone;
    var homephoneareacode;
    var homephoneprefix;
    var homephonenumber;
    var businessphone;
    var businessphoneareacode;
    var businessphoneprefix;
    var businessphonenumber;
    address = this.getField("Text1-2-Address").value;
    city = this.getField("Text1-2-City").value;
    var provincelist = new Array();
    provincelist[1] = " ";
    provincelist[2] = "Alberta";
    provincelist[3] = "British Columbia";
    provincelist[4] = "Manitoba";
    provincelist[5] = "New Brunswick";
    provincelist[6] = "Newfoundland & Labrador";
    provincelist[7] = "Northwest Territories";
    provincelist[8] = "Nova Scotia";
    provincelist[9] = "Nunavut";
    provincelist[10] = "Ontario";
    provincelist[11] = "Prince Edward Island";
    provincelist[12] = "Québec";
    provincelist[13] = "Saskatchewan";
    provincelist[14] = "Yukon";
    var sign = new Array();
    for (var i=0; i<15; i++)
                sign[i] = "-";
                if(provincelist[i] == this.getField("Client's Full Province Name").value)
                            sign[i] = "+";
    postalcodea = "";
    postalcodeb = "";
    if(this.getField("Text1-2-Postal-Code").value != "")
                postalcodea = this.getField("Text1-2-Postal-Code").value;
                postalcodea = util.printx("A9A", postalcodea);
                postalcodeb = this.getField("Text1-2-Postal-Code").value;
                postalcodeb = postalcodeb[4]  + postalcodeb[5] + postalcodeb[6];
    homephoneareacode = "";
    homephoneprefix = "";
    homephonenumber = "";
    if(this.getField("Text1-2-Home-Phone-Number").value != "")
                homephone = util.printx("9999999999", this.getField("Text1-2-Home-Phone-Number").value);
                homephoneareacode = homephone[0] + homephone[1] + homephone[2];
                homephoneprefix = homephone[3] + homephone[4] + homephone[5];
                homephonenumber = homephone[6] + homephone[7] + homephone[8] + homephone[9];
    businessphoneareacode = "";
    businessphoneprefix = "";
    businessphonenumber = "";
    if(this.getField("Text1-2-Business-Phone-Number").value != "")
                businessphone = util.printx("9999999999", this.getField("Text1-2-Business-Phone-Number").value);
                businessphoneareacode = businessphone[0] + businessphone[1] + businessphone[2];
                businessphoneprefix = businessphone[3] + businessphone[4] + businessphone[5];
                businessphonenumber = businessphone[6] + businessphone[7] + businessphone[8] + businessphone[9];
    var dialog2 =
                initialize: function(dialog)
                             dialog.load(
                                                     stat:     "Client Address and Phone Information is required in forms you are about to link to. To save time, enter Address and Phone Information before linking to these documents.",
                                                    str1: address,
                                                    str2: city,
                                                    stra: postalcodea,
                                                    strb: postalcodeb,
                                                    str5: homephoneareacode,
                                                    str6: homephoneprefix,
                                                    str7: homephonenumber,
                                                    str8: businessphoneareacode,
                                                    str9: businessphoneprefix,
                                                    sts1: businessphonenumber,
                                                    str3:
                                                                "  ": (sign[1] + "1"),
                                                                "Alberta": (sign[2] + "2"),
                                                                "British Columbia": (sign[3] + "3"),
                                                                "Manitoba": (sign[4] + "4"),
                                                                "New Brunswick": (sign[5] + "5"),
                                                                "Newfoundland & Labrador": (sign[6] + "6"),
                                                                "Northwest Territories": (sign[7] + "7"),
                                                                "Nova Scotia": (sign[8] + "8"),
                                                                "Nunavut": (sign[9] + "9"),
                                                                "Ontario": (sign[10] + "10"),
                                                                "Prince Edward Island": (sign[11] + "11"),
                                                                "Québec": (sign[12] + "12"),
                                                                "Saskatchewan": (sign[13] + "13"),
                                                                "Yukon": (sign[14] + "14"),
                cancel: function(dialog)
                            return;
                destroy: function(dialog)
                            return;
                commit:function (dialog)
                            results = dialog.store();
                            var elements = dialog.store() ["str3"]
                            province = "";
                            for(var i in elements)
                                        if(elements[i]  > 0)
                                                    province = i;
                            return;
                            description:
                            name: "Address and Phone Information",
                            //align_children: "align_left",
                            //type: "static_text",
                            //char_height: 9,
                            //width: 350,
                            //height: 75,
                            elements:
                                                    type: "cluster",
                                                    name: "",
                                                    align_children: "align_left",
                                                    elements:
                                                                            align_children: "align_top",
                                                                            alignment: "align_fill",
                                                                            type: "view",
                                                                            width: 254,
                                                                            elements:
                                                                                                     alignment: "align_fill",
                                                                                                     bold: true,
                                                                                                     font: "default",
                                                                                                     char_height: 9,
                                                                                                     italic: true,
                                                                                                     item_id: "stat",
                                                                                                     multiline: false,
                                                                                                     type: "static_text",
                                                                                                     width: 150,
                                                                                                     height: 50,
                                                                            type: "view",
                                                                            align_children: "align_distribute",
                                                                            elements:
                                                                                                     type: "static_text",
                                                                                                     name: "Address: "
                                                                                                     item_id: "str1",                         
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 60,
                                                                                                     height: 20,
                                                                            type: "view",
                                                                            align_children: "align_distribute",
                                                                            elements:
                                                                                                     type: "static_text",
                                                                                                     name: "       City: "
                                                                                                     item_id: "str2",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 16,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "Province: "
                                                                                                     item_id: "str3",
                                                                                                     type: "popup",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 16,
                                                                                                     type: "static_text",
                                                                                                     name: "Postal Code: "
                                                                                                     item_id: "stra",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "-"
                                                                                                     item_id: "strb",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                            type: "view",
                                                                            align_children: "align_distribute",
                                                                            elements:
                                                                                                     type: "static_text",
                                                                                                     name: "Home Phone Number: ("
                                                                                                     item_id: "str5",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     next_tab: 3,
                                                                                                     type: "static_text",
                                                                                                     name: ")"
                                                                                                     item_id: "str6",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "-"
                                                                                                     item_id: "str7",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 4,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "Business Phone Number: ("
                                                                                                     item_id: "str8",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: ")"
                                                                                                     item_id: "str9",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 3,
                                                                                                     height: 20,
                                                                                                     type: "static_text",
                                                                                                     name: "-"
                                                                                                     item_id: "sts1",
                                                                                                     type: "edit_text",
                                                                                                     alignment: "align_left",
                                                                                                     char_width: 4,
                                                                                                     height: 20,
                                                    alignment: "align_center",
                                                    type: "ok_cancel",
                                                    ok_name: "Continue",
                                                    cancel_name: "Cancel"
    var dialog3 =
                initialize: function (dialog)
                cancel: function(dialog)
                            goon=false;
                            return;
                destroy: function(dialog)
                            return;
    while (goon)
                result = app.execDialog(dialog2);
                if (result=="cancel")
                            goon=false;                  
                if (result=="ok")
                            this.getField("Text1-2-Address").value = results["str1"];
                            this.getField("Text1-2-City").value = results["str2"];
                            this.getField("Client's Full Province Name").value = province;
                            this.getField("Text1-2-Postal-Code").value = results["stra"] + " " + results["strb"];
                            this.getField("Text1-2-Home-Phone-Number").value = results["str5"] + results["str6"] + results["str7"];
                            this.getField("Text1-2-Business-Phone-Number").value = results["str8"] + results["str9"] + results["sts1"];
                            goon=false;

    If you know a link that has what he wants, wouldn't it be prudent just to provide that?
    I got overwhelmed trying to understand all of the different related elements of the Flash family when I was starting, so I know what that's like. Roughly (and Ned might want to correct or clarify some of this), Actionscript 3 is the programming language Flash/Flex/AIR content is based upon. Flash is a blanket term encompassing the developing environment (Flash Pro), code libraries, and runtime (Flash Player). AIR is a runtime environment built upon Flash Player, but with added functionality and cross-platform support. Flex is an extension of Flash, offering MXML components in addition to the libraries available in Flash Pro. Adobe intends for you to use Flex with Flash Builder, a separate IDE built upon Eclipse.
    I haven't used MXML yet, but my impression is that (at least in Flash Builder) it is functionally similar to WYSIWYG editing in Microsoft's Visual Studio.
    If you are developing games, you can edit entirely in Flash Pro, entirely in Flash Builder, or combine both of them. Flash Pro lets you put code on the timeline, which can make some coding much easier, but also makes it very, very easy to write messy and disorganized code. Flash Builder doesn't provide access to the timeline and is intended for class-based development. Personally, I like to combine the two, writing some timeline code in Pro and doing my class files in Builder, but I'm not the greatest developer.
    As a heads-up, the code editor in Flash Pro is absolutely terrible, and is full of bugs that have existed for many generations, because Adobe wants you to buy Flash Builder for the additional $600, but if you are a student or "unemployed", you can get FB for free from Adobe.

  • Distiller missing text and image links when saving to pdf

    Not sure if anyone has experienced this issue before. Basically I create artwork 1up in indesign CS3 and print as a postscript file "print ready settings" then create a pdf through distiller 8.1.2. After this I then imposition the 1up PDF back into indesign (using the pdf as a link and then step and repeat it) then I print the new imposed artwork as postscript file again and distill it as a PDF ready for offset printing.
    Most time this process works like a dream, but every now and then distiller doesn't want to process the file correctly and images and sometimes text have dropped off the final imposed PDF file. It doesnt notify me of any problems when distilling. As you can imagine working in the print industry this is VERY SCARY
    As i am using a common 1up pdf link the imposition should be correct, (all the pdf linked images should be the same anyway) Is it a memory issue, or a bug in distiller perhaps.
    Im running a Mac with OSX 10.4.11 with 2Gig of RAM.
    If you would like to see a sample of the issue let me know.
    Any help on this would be awesome.

    thanks for the replies,
    Working in a pre-press environment we obviously prefer to print from pdf files (as opposed to using supplied native art). As a result I am always receiving pdf files from external clients who have saved their artwork from indesign to pdf format, so Im not sure what the real difference is between me imposing a supplied indesign/pdf files in indesign vs me imposing my own indesign/pdf files in indesign. (aprt from perhaps going through distiller twice)
    i can see what your saying though and for years i have been using the cut and paste and step and repeat method but recently changed my workflow for a few reasons
    - I noticed that by printing a 1up pdf and relinking the file back into my indesign imposition the final imposed pdf was lower in size
    - if a client made a change to the artwork after imposing (which always happens) all i had to do was make the change, resave the pdf 1up link again and update the link and it did it for me and saved me from step and repeating all over again,
    - whenever the job was printed again in the future i could use the same procedure, resave as 1up pdf again and update the link.
    - plus i knew that if i was using the one link all my step and repeats would be exactly the same each time (and i didn't have to worry that a graphic that hadn't been selected/grouped correctly and would drop off when step and repeating)
    .....and for sure it probably is a slightly longer way to impose a job for print but it saves me half the time on the next print run, and i can use my imposition file as a template for similar jobs also.
    I have found the workflow i use works fine, apart from these rare hiccups which i can get around by resaving the pdf again anyway, but what Im really worried about is the times this error presents itself and doesn't notify me that a problem has occurred.

  • Stretched text and image with FULL_SCREEN_INTERACTIVE after Air player update

    One of my Air applications uses StageDisplayState.FULL_SCREEN_INTERACTIVE to switch to full screen during the presentation of some sheets.
    Everything worked fine untill some users reported a streching of texts and images in the sheets.
    It turns out that the problem occurs after an update from the Adobe Air Player to 3.1 from  2.7.
    The first screen shots shows the text as it should be, the second screen shot shows the text after the update of the Air Player.
    The code used to go into the Full Screen mode is:
        public function setFullScreenInteractive(fullScreenWidth:int = Constants.INT_SCREEN_WIDTH_SMALL, fullScreenHeight:int = Constants.INT_SCREEN_HEIGHT_SMALL):void
                             s.fullScreenSourceRect = new Rectangle(          0, 0, fullScreenWidth, fullScreenHeight);
            s.displayState = StageDisplayState.FULL_SCREEN_INTERACTIVE;
    with  Constants.INT_SCREEN_WIDTH_SMALL = 800 and  Constants.INT_SCREEN_HEIGHT_SMALL = 600.
    I can reproduce the problem on a couple of computers with Windows Xp but it's not happening on all the computers I've tested.
    Any idea how to fix this (without telling my users to Uninstall the current Air Player and reinstall the Air Player 2.7)?
    Regards,
    Bart

    Hi Bart,
    Unfortunately the correct screenshot link appears to broken.  Could you please open a new bug report on this over at bugbase.adobe.com?  Please post back with the URL so that others affected can add their comments and votes.  It would also help if we had a sample project/application that we can reproduce this issue with.  If you'd like to keep this private, please feel free to send it to me directly at [email protected]
    Thanks,
    Chris

  • Content server and Images

    Hi... we've found some odd behaviour with content server and I'm wondering if anyone else has had similar experience.
    Our installation is spread accross a number of servers, we have a front end portal/image server with Content Server installed on one of the servers behind the firewall.
    When we create branding portlets (and content canvas portlets), it all works happily. The html template is created in the ptcs/publishedContent on the Content Server machine and images appear in the correct template folder on the Image Server machine and everything displays correctly on the portal page.
    Problem is, for any other content portlets (eg: announcement), the images end up in the ptcs/publishedContent on the Content Server machine as well ... which isn't good as this location is not accessible from the browser - the published html gets rendered correctly but no images appear.
    We don't want to manually transfer images from the Content Server to the Image Server and hack the generated ptcs html.... from what I can tell, all the properties set for the Image server are correct so we've hit a brick wall in terms of figuring out why it's behaving this way, our expectation was that the content portlets would operate in the same way as the branding portelts but this doesn;t seem to be the case.
    thanks in advance

    You should be able to edit the gateway space URL of the Content Server Published Content Web Service to include the published content location of where it is.
    Alternately, you can set the published content targer and file transfer method for the server (or any other content server section) by right-clicking on the top-level node (or the individual folder) in the Content Server Explorer, and selecting "Publishing Target..." and setting the appropriate values in the resulting dialog box.

  • Printing borderless and color management

    I have some printing woes within Aperture, but forgive me because I am a former Qimage user who is used to perfection in every aspect of the printing process. (Maybe parallels is in my future.)
    1. Borderless
    I have my printer settings set to 4x6 (sheet feeder - borderless) and "best fit" as the orientation. I have scale set to "fill entire page." My 4x6 prints come out with a white border on the left and bottom. The preview gives no indication of this problem. Can someone give me some help getting a true borderless print?
    2. Color management
    I have my monitor calibrated using a Gretag MacBeth Eye One Display 2. I use a paper printer profile. I have turned off color management in the printer driver.
    My prints are dark. If I increase the gamma setting in the dialog box, they get better.
    What might be my problem? Why coming out dark?
    Thanks in advance for any help!

    I have my printer settings set to 4x6 (sheet feeder -
    borderless) and "best fit" as the orientation. I
    have scale set to "fill entire page." My 4x6 prints
    come out with a white border on the left and bottom.
    The preview gives no indication of this problem.
    Is there a "borderless printing" setting within your printer's print dialog?
    My prints are dark. If I increase the gamma setting
    in the dialog box, they get better.
    I'm just trying to learn about this myself, but one quesion might be whether your calibration system is tuning your monitor to a gamma of 1.8 or 2.2. Everybody seems to agree that it should be 2.2 these days. This makes the screen look lighter (at least on my system). So I guess this would be going the wrong direction (if it turned out you were calibrating to 1.8).
    How sure are you that you have the right ICC profile for your printer and paper? Even as I ask that, though, I'm finding that I dislike the results my "correct" profile gives. This stuff is hard.

  • Trying to print 4x6 photos.  How can I print with no borders on LR5 with my HP OfficeJet 7410?  Even when in Print mode in LR5, my photos show a border.  Page Setup shows "borderless".  Image Settings show "zoom to fill". But cannot print, nor even previe

    Trying to print 4x6 photos.  How can I print with no borders on LR5 with my HP OfficeJet 7410?  Even when in Print mode in LR5, my photos show a border.  Page Setup shows "borderless".  Image Settings show "zoom to fill". But cannot print, nor even preview, without borders.

    JimHess~  Many thanks.  In my short history with LR, it's amazing how many people I've seen ask this question.  I'm nearly embarrassed at how simple the fix was, but grateful that you didn't dismiss such a basic question.  You made my week.  And my friend's photo album...

  • [svn:fx-trunk] 16409: Image bug fixes.

    Revision: 16409
    Revision: 16409
    Author:   [email protected]
    Date:     2010-06-02 16:46:48 -0700 (Wed, 02 Jun 2010)
    Log Message:
    Image bug fixes.
    QE notes: None
    Doc notes: None
    Bugs: SDK-26574, SDK-26593, SDK-26598, SDK-26599, SDK-26600
    Reviewer: Ryan
    Tests run: Checkin
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-26574
        http://bugs.adobe.com/jira/browse/SDK-26593
        http://bugs.adobe.com/jira/browse/SDK-26598
        http://bugs.adobe.com/jira/browse/SDK-26599
        http://bugs.adobe.com/jira/browse/SDK-26600
    Modified Paths:
        flex/sdk/trunk/frameworks/projects/framework/src/mx/graphics/BitmapSmoothingQuality.as
        flex/sdk/trunk/frameworks/projects/framework/src/mx/utils/LinkedList.as
        flex/sdk/trunk/frameworks/projects/spark/defaults.css
        flex/sdk/trunk/frameworks/projects/spark/src/spark/components/Image.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/core/ContentCache.as
        flex/sdk/trunk/frameworks/projects/spark/src/spark/primitives/BitmapImage.as

    This bug figures out also when creating a custom spark ComboBox, then trying to programatically update the userProposedSelectedIndex property. The proposed selected index is selected, but does not apply the same skin as when mouse is on rollover or item is selected due to up and down keys.
    The issue seems like updating the status of the item renderer to rollover or selected to get the same skin applied.
    Please could you attach DropDow nList.as that you edited ?
    Thank you so much.

  • Missing charts and images in DHTML viewer

    We are using Crystal 2008 and rendering the report using the browser based DHTML viewer. The report in question contains multiple subreports as well as charts and images. When first viewing the report, none of the charts or images are visible unless we reduce the zoom level to 75% and then they get displayed. If the zoom level is set to standard (100%) the charts and images do not display unless you drill into the subreports.
    We tried applying all the service packs up to SP2 to no avail. Is this a bug in the viewer and if so what can be done about it? We have found multiple issues with displaying images and charts in the DHTML viewer.

    What if its not a zoom issue but rather a postback issue?  The report initially comes up blank, when you change the zoom factor, CR is actuially doing a postback.   If you change the zoom factor back to 100, is it still there?
    Put a button on the page that does nothing and then click on the button without doing anything in the viewer (This will cause a postback).  Does the report come up?
    If so, then it is probably a postback issue.
    Ludek

  • Export simplified image bug report

    The attached XY Graph has two plots represented in semilog scale (linear X scale, logarithmic Y scale).
    The two axes are set to not autoscale and I chose Y to start a 1. There are values of Y equal to zero in the plots.
    When right-clicking the graph and selecting Export>>Export Simplified Image... and then selecting the following options:
    pasting the image into another software (e.g. Power Point) results in this:
    Notice that the zero bins are now set to infinity...
    No such problem occur when setting the Y scale to linear or exporting the image as BMP.
    But of course none of these are satisfactory solutions to this bug, which seems related to what is described in this recent thread:
    http://forums.ni.com/t5/forums/replypage/board-id/170/message-id/877895
    Tested in LV 2013 SP1
    Attachments:
    Export Simplified Image Bug Example.vi ‏9 KB

    You got 0 in the data.
    Log 0 => inf.
    a work around:
    replace 0 with NaN.
    Then you get:
    George Zou
    http://webspace.webring.com/people/og/gtoolbox

  • [Microsoft][SQL Server Native Client 11.0][SQL Server]The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator.  'Items' (OITM) (OITM)

    Dear Experts,
    i am getting the below error when i was giving * (Star) to view all the items in DB
    [Microsoft][SQL Server Native Client 11.0][SQL Server]The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator.  'Items' (OITM) (OITM)
    As i was searching individually it is working fine
    can any one help me how to find this..
    Regards,
    Meghanath.S

    Dear Nithi Anandham,
    i am not having any query while finding all the items in item master data i am giving find mode and in item code i was trying to type *(Star) and enter while typing enter the above issue i was facing..
    Regards,
    Meghanath

  • Error in SQL Query The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator. for the query

    hi Experts,
    while running SQL Query i am getting an error as
    The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator. for the query
    select  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price ,
    T2.LineText
    from OQUT T0  INNER JOIN QUT1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN
    QUT10 T2 ON T1.DocEntry = T2.DocEntry where T1.DocEntry='590'
    group by  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price
    ,T2.LineText
    how to resolve the issue

    Dear Meghanath,
    Please use the following query, Hope your purpose will serve.
    select  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price ,
    CAST(T2.LineText as nvarchar (MAX))[LineText]
    from OQUT T0  INNER JOIN QUT1 T1 ON T0.DocEntry = T1.DocEntry LEFT OUTER JOIN
    QUT10 T2 ON T1.DocEntry = T2.DocEntry --where T1.DocEntry='590'
    group by  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price
    ,CAST(T2.LineText as nvarchar (MAX))
    Regards,
    Amit

  • Text and images not displaying, but some are

    I've uploaded my site, and images and text are missing. 4 pages are great, but the individual property pages are half empty (missing images, icons and text) Its a school project, so, yikes!    www.icm-mp3.net/group17/
    thank you in advance

    I should clarify, it all worked fine on my own server. Now, on the schools site, its missing photos going across horizontally, the lightbox that goes with, a text box, an image embedded with links. The remaining elements are in their places. Could this be a server issue?
    And, clever me, it is due tomorrow.

Maybe you are looking for