Image reloading Issue - Imagefix

Hi all,
I have requirement like a grid component with images (Thumbnails).I have used the code of from javafx site(Thumnails.fx etc)
view style:Microsoft explorer view with thumbnail
Problem:Image reloading Issue - Imagefix
When i deleting selected image from the grid i am create the object of imagegrid for updated list of images.The problem i am facing after 3 o4 continious sequences the images were not displaying on grid.Every time insert/deleting on image grid functionality i am creating image grid object even though problem still exist.
//Code is like
def image :ImageFix =getImage();
function getImage():ImageFix{
if(url.endsWith(".pdf")){
url=url.replaceAll(".pdf","001.png");
var pdfThumbnai:File=new File(url);
if(not pdfThumbnai.exists()){
ImageFix{
backgroundLoading:true
preserveRatio:true
height:100
width:100
url:"{__DIR__}images/pdf-file-logo-icon.jpg";
//applicationContext.pdfThumbnail;
else{
ImageFix {
height:100
width:100
backgroundLoading:true
preserveRatio:true
url:"file:///{url}"
else ImageFix{
backgroundLoading:true
preserveRatio:true
height:100
width:100
url:url
// the image variable setting imageView for following variable
def imageView : ImageView = ImageView {
smooth: false
cache: true
image: image
cursor:Cursor.HAND
fitHeight:100
fitWidth:100
onMouseClicked: function(evt : MouseEvent) : Void
println("count value in Image Grid is {count}");
var id:Integer;
if(evt.clickCount >= 2)
applicationContextDMS.indexOfImg=count;
println("fileVectorObj {fileVectorObj}");
showOCRScreen(count,folderID,fileVectorObj);
if(evt.clickCount==1)
applicationContextDMS.indexOfImg=count;
selectImage(this);
// Scale the thumbnail up when the mouse enters.
onMouseEntered: function(evt: MouseEvent) : Void
gr.visible=true;
onMouseExited: function( e: MouseEvent ):Void {
gr.visible=false;
Please help out resolve this issuse.
Thanks in advance

The only work around that I found was to rename the image file. Once renaming occurred, the image file when updated was rendered correctly. I have read an earlier bug report that claimed this was fixed. I do not believe it to be so. If anyone has any additional information please present it.

Similar Messages

  • Image quality issues in PS - word to PDF

    Hi,
    I am having major image quality issues when trying to make my word document a clean, clear PDF. Images become distorted. Borders for tables and text that are equal px size look like they are different sizes throughout the document.
    I have searched the internet, read help, and tried many different things:
    Word 2007 - Changed image %, image size, export options, adjusted px for borders, used different styles
    Acrobat 9 Pro - Changed import settings, import options, print options, tried press quality, high quality, etc.
    Photoshop CS4 - Changed ppx, file format, compression options
    What can I do to get a clean, clear PDF file with the images and borders preserved?
    Thank you.

    In converting a MS Office file to PDF, Photoshop cannot help in any way and will likely cause more harm as it may rasterize vector data. Expect your ideal answer in the Acrobat forum.

  • More Image/stylesheet issues

    Hello again,
    Just wondering if anyone could give me some quick style sheet issues, have an img class that looks a little something like this:
    img {
    border: 5px solid #adadad ! important ;
    padding: 5px ! important ;
    margin: 4px, 4px, 4px, 4px ! important ;
    -moz-border-radius: 15px;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    Which works like magic for getting me a nice curved border in most modern browsers.
    Now there are one or two small icon type images that I need to not have a border as they are actually within the text - can anyone think of a way of setting up RH9 so that I can have an image that doesn't follow these styles?
    I am sure it will be to do with over riding these styles but not sure how to do this because it is not like I am selecting a style for the image files - they are just getting their styles from the img selector...
    Anyone got any suggestions?
    much 'preciated.

    Hi Willam
    I'm a bit confused by what you suggested. You seem to be implying that this won't work and the image paths will break. But I've not found this to be the case. I just tested by creating an image and later creating some nested subfolders and using the variable in topics in each of the subfolders. I then generated WebHelp and viewed and I had no broken images at all. RoboHelp was able to manage the relative pathing to the image without issue.
    Have you noticed otherwise?
    I'm a believe in erring on the side of caution, but it would seem that (for me anyway) the worry is unfounded.
    Cheers... Rick
    Helpful and Handy Links
    RoboHelp Wish Form/Bug Reporting Form
    Begin learning RoboHelp HTML 7, 8 or 9 within the day!
    Adobe Certified RoboHelp HTML Training
    SorcerStone Blog
    RoboHelp eBooks

  • Image Quality issue with script

    So I recently wrote a simple script to output an image at a bunch of different resolutions. However, I am running into an image quality issue that I don't run into when I do the same thing manually.
    Here is an example image showcasing the image: http://terminalvelocity.ca/temp/notworking.jpg
    As you can see along the top of the model's forhead there is destinct color fragmentation. Which seems very strange.
    Here is the script, it is pretty simple, it asks for a few simple config options. (the above image was created using default settings). It then figures out the correct ratios and loops through doing each resize, saving the image, then reverting the history so each iteration uses the original image data and not the resized version:
    doc = app.activeDocument;
    openFilePath = Folder.selectDialog ("Where do you want the images to be saved?");
    maxSize = Number(prompt("What would you like to be the maximum length of the long edge? (Image is never upsized) (pixels)", 2800)); 
    minSize = Number(prompt("What would you like to be the minimum length of the long edge? (pixels)", 100));
    gap = Number(prompt("How much smaller should each image be? (pixels)", 100)); 
    quality = Number(prompt("What quality would you like the JPG exported as (0-12)", 10)); 
    var size;
    var primary;
    var secondary;
    if(doc.width > doc.height){
              primary = doc.width;
              secondary = doc.height;
    }else{
              primary = doc.height;
              secondary = doc.width;
    var ratio = secondary/primary;
    var size = [];
    for(var i = maxSize;i>minSize;i-=gap){
              var  p = i
              var s = i * ratio;
              size.push([p,s]);
    var w;
    var h;
    var n;
    for(var i in size){
              if(doc.width > doc.height){
                        w = n = size[i][0];
                        h = size[i][1];
              }else{
                        w = size[i][1];
                        n= h = size[i][0];
              if(doc.width >= w && doc.height >= h){
                        doc.resizeImage(w,h,null,ResampleMethod.BICUBICSHARPER);
                        jpgFile = new File(openFilePath+"/"+n+".jpeg" )
                        jpgSaveOptions = new JPEGSaveOptions()
                        jpgSaveOptions.embedColorProfile = false
                        jpgSaveOptions.formatOptions =
                        FormatOptions.STANDARDBASELINE
                        jpgSaveOptions.matte = MatteType.NONE
                        jpgSaveOptions.quality = quality
                        app.activeDocument.saveAs(jpgFile, jpgSaveOptions, true,Extension.LOWERCASE);             
                        doc.activeHistoryState = doc.historyStates[doc.historyStates.length-2];
    In comparison, here is an example of an image of the exact same resolution that does not exhibit this issue at all:
    The steps taken to save this image were as follows: http://photography.terminalvelocity.ca/content/images/2012/avery_konrad_6/horizontal/1500. jpg
    Image > Resize > Bicubic Sharper (1500px);
    Save For Web
         Jpeg
         Quality 75
         Optimzed: true
         Progressive: false
         Blur: 0
         Convert to sRGB: true   
    Anyway, as you can see, The manually exported image does not have any of the quality issues that are present within the scripted image. I am pretty new to photoshop scriping so am assuming it has something to do with me missing some sort of option in the save settings. Any help would be swell.
    Also note, this doesn't occur on all images, I usually don't see an issue when using the script, however, something about the tones of this particular photo make it really obvious.
    I am using the latest version of Photoshop CS6 (creative cloud) on Max OSX
    thanks so much!

    I'm on windows find the bicubicsharper does not work well it the image being resized has been highly sharpened all ready. Because of my Photoshop preferences I had to make minor modification to your script. I'm also a bit colorblind so i don't see many color issues so I include a screen capture if what windows does with your image and script.
    var orig_ruler_units = app.preferences.rulerUnits;
    app.preferences.rulerUnits = Units.PIXELS;          // Set the ruler units to PIXELS
    doc = app.activeDocument;
    openFilePath = Folder.selectDialog ("Where do you want the images to be saved?");
    maxSize = Number(prompt("What would you like to be the maximum length of the long edge? (Image is never upsized) (pixels)", 2800));
    minSize = Number(prompt("What would you like to be the minimum length of the long edge? (pixels)", 100));
    gap = Number(prompt("How much smaller should each image be? (pixels)", 100));
    quality = Number(prompt("What quality would you like the JPG exported as (0-12)", 10));
    var size;
    var primary;
    var secondary;
    if(doc.width > doc.height){
              primary = doc.width;
              secondary = doc.height;
    }else{
              primary = doc.height;
              secondary = doc.width;
    var ratio = secondary/primary;
    var size = [];
    for(var i = maxSize;i>minSize;i-=gap){
              var  p = i
              var s = i * ratio;
              size.push([p,s]);
    var w;
    var h;
    var n;
    for(var i in size){
              if(doc.width > doc.height){
                        w = n = size[i][0];
                        h = size[i][1];
              }else{
                        w = size[i][1];
                        n= h = size[i][0];
              if(doc.width.value >= w && doc.height.value >= h){
                        doc.resizeImage(w,h,null,ResampleMethod.BICUBICSHARPER);
                        jpgFile = new File(openFilePath+"/"+n+".jpeg" )
                        jpgSaveOptions = new JPEGSaveOptions()
                        jpgSaveOptions.embedColorProfile = false
                        jpgSaveOptions.formatOptions =
                        FormatOptions.STANDARDBASELINE
                        jpgSaveOptions.matte = MatteType.NONE
                        jpgSaveOptions.quality = quality
                        app.activeDocument.saveAs(jpgFile, jpgSaveOptions, true,Extension.LOWERCASE);            
                        doc.activeHistoryState = doc.historyStates[doc.historyStates.length-2];
    app.preferences.rulerUnits = orig_ruler_units;          // Reset units to original settings

  • Bizarre Lightroom image quality issue

    I have a weird image quality issue with Lightroom, when opening RAW files (haven't tried it with any other file format, admittedly).
    Here's an example of how the image appears in Lightroom.  As an experiment, I exported the image as a TIFF and opened it in Gimp to see if it was just down to a display issue, but the exported TIFF showed the same quality issues as Lightroom. Aside from exporting as a TIFF (and then saving as a Jpeg), this image is SOOC:
    <a href="http://www.flickr.com/photos/swisstony10/4912360565/" title="IMG_4134 by swisstony10, on Flickr"><img src="http://farm5.static.flickr.com/4093/4912360565_5891c0160f.jpg" width="333" height="500" alt="IMG_4134" /></a>
    If I open the same image in Canon's own DPP software, this image quality issue does not occur, so I know that it's not an issue with the memory card, the camera, or my laptop's monitor.  The SOOC image from DPP (exported as a Jpeg) looks like this:
    <a href="http://www.flickr.com/photos/swisstony10/4912362053/" title="IMG_4134b by swisstony10, on Flickr"><img src="http://farm5.static.flickr.com/4116/4912362053_1ca92078c9.jpg" width="333" height="500" alt="IMG_4134b" /></a>
    Has anybody else experienced this, and if so, is there a fix?  (there had better be - I'm not going to be overly chuffed if my expensive Adobe software is being outperformed by the free stuff..  )
    Russ.

    This is proving to be an extremely helpful forum!
    Thanks for the advice on embedding my calibrated colour space - I don't very often send files anywhere other than my own home network (where all the monitors are calibrated), and when I do upload any to Flickr, it's never caused a problem in the past (and if I get anything printed by a lab, I use their ICC profile).  I'll definitely keep that all in mind though..
    Here's the original RAW file of the image I used as the example  https://www.yousendit.com/download/aHlUa3ZONmNFd2Z2Wmc9PQ   - I hope that helps someone to shed some light on what's going wrong.  From what you've said though, it does look as if this is just an extreme example of something that Lightroom isn't very good at doing.
    As I said in my original post, it'll be a bit disappointing if that's the case though, because a fair amount of the pictures I take tend to be of bands playing in what are, let's face it, diabolical conditions for photography.  (At the festival I was attending at the weekend for example, all of the photographers - even the seasoned pros - were moaning about how awful the lighting was in the Big Top, and how much it sucked to try and get a decent picture there, as opposed to the main stage where everybody wasn't completely backlit by either red or purple lights.  I appreciate that Lightroom is a much more powerful tool than Canon's DPP - the noise reduction controls on their own completely rock - but I must admit I'm a bit surprised that it can't handle highlights terribly well...

  • Wacky image sequence issue - flickers

    Hi guys,
    I've created a simple 2 image sequence I wanted to play through at the top of my DPS document - but when I preview the article (on both desktop, iphone and ipad) the image sequence fails..
    I took a quick screencap to show what Im going.
    DPS Image Sequence issue - YouTube
    Any advice?

    For a two-image effect, I would use a slideshow instead of an image sequence. Not sure what's causing the flicker.

  • Image Persistence - Image Retention issues - iMac

    Hello everyone. When is Apple going to fix all the image retention issues, or as Apple would call it image persistence? I find it to be horrendous that Apple is calling this "normal". There is nothing normal about having an image ghosted or stuck on your display. I hope Apple gets with LG on this and fixes these issues because a fix is long overdue. This has been plaguing iMacs for years now. I have had 2 iMacs in a row that have had this issue straight out of the box. Can anyone tell me why some IPS displays do this and others do not? Is this because Apple is buying junk from LG?
    Have a look at these pages:
    http://forums.macrumors.com/showthread.php?t=1853972
    https://youtu.be/x2dafvZZC7Y

    Image persistence on Apple displays:
    http://support.apple.com/kb/HT5455
    Apple say this about LCD screen burn in:
    http://support.apple.com/kb/HT2807
    which includes suggestions for curing that effect.
    Alternatively:
    How to fix screen burn and/or stuck pixels on an LCD monitor:
    JScreenFix
    http://www.jscreenfix.com/basic.php

  • Spry Image Slideshow issue in IE8 - Another Error

    I looked at  the other discussions pertaining to Spry Image Slideshow issues.  The slideshow works well in Firefox but I'm getting an error  in IE 8 .
    https://www.devens.army.mil
    Webpage error details   from SpryDOMEffects.js, line 389
    Spry.Effect.CSSAnimator.stylePropFuncs["default"] = {
        get: function(ele, prop)
            return ele.style[prop];
        set: function(ele, prop, val)                                           
            ele.style[prop] = val;                       (line 389)
    Thank you for any help you can provide.

    I've noticed that you fixed the problem can you tell me how to fix it?
    having same problem here

  • Image burn issue

    Hi all, I am having the image burn issue on my sony vaio duo 11 like. Please check the following link for the images. In my case the burn is visible when the background is grey and I work in the desktop mode for some time. I request your feedback and help in solving this issue. http://bit.ly/11FTG08 [with comments] See the bottom. You can see Windows notification area there   You can clearly see a white navigation bar of google chrome which is opened in the desktop mode  
      I have taken all of these pictures with my mobile camera which is 3 years old. Otherwise the imageburn is very clear and distinct to me. Best regards,Naveen.

    kamesh419,
    This is working as intended.  It is the transparent function of Aero.  If the user switches back to desktop view, you can see some of the Start Menu background.  This is not a burn in issue.
    If you want you can turn off Aero and the transparent image will go away both in the Start Menu and also from the Desktop view.
    Turn off Aero
    1)      Go to the Start Menu
    2)      Type Computer
    3)      Right click on Computer and select properties
    4)      Click on Advanced System settings
    5)      Select Settings under Performance
    6)      Select “Adjust for best performance”
    7)      Click apply and ok.
    kamesh419 wrote:
    Hi all,
    I am having the image burn issue on my sony vaio duo 11 like. Please check the following link for the images. In my case the burn is visible when the background is grey and I work in the desktop mode for some time. I request your feedback and help in solving this issue.
    http://bit.ly/11FTG08 [with comments]
    See the bottom. You can see Windows notification area there
    You can clearly see a white navigation bar of google chrome which is opened in the desktop mode
    I have taken all of these pictures with my mobile camera which is 3 years old. Otherwise the imageburn is very clear and distinct to me.
    Best regards,
    Naveen.
     

  • Image insert issue help

    I created a simple html page in DW CS3. I inserted an image i plan just to use as an add on this page. The image is 4600 pixel long. Only half of it shows up on my page but the whole thing shows up fine when testing it via DW.. Please help.
    Page Code
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>HolidayMiniSessions</title>
    <style type="text/css">
    <!--
    #apDiv1 {
              position:absolute;
              width:677px;
              height:115px;
              z-index:1;
              left: 344px;
              top: 3781px;
    .style1 {          font-family: "Adobe Caslon Pro";
              font-weight: bold;
              font-size: x-large;
    a:link {
              color: #000000;
              text-decoration: none;
    a:visited {
              text-decoration: none;
    a:hover {
              text-decoration: none;
              color: #F10595;
    a:active {
              text-decoration: none;
    -->
    </style>
    </head>
    <body>
    <div align="center">
      <p><img src="HOLIDAYMINIJENEPHOTOGRAPHY2012.jpg" width="1008" height="4642" /></p>
      <p> </p>
      <p> </p>
      <div id="apDiv1">
        <p class="style1"><a href="www.jenephotography.com">WWW.JENEPHOTOGRAPHY.COM</a></p>
        <p class="style1">407-430-8986 EMAIL:<a href="mailto:[email protected]">[email protected]</a></p>
      </div>
      <p>   </p>
    </div>
    </body>
    </html>
    But the DIV is still visible..its confusing me.. WHATS WRONG.. Please help
    HERE IS LINK TO PAGE THAT IS CUTTING OFF
    http://www.jenephotography.com/addpages/HolidayMiniSessions.html

    Yes, I see that the image on your server itself is cut in half. Maybe a timeout issue when you're uploading from Dreamweaver. Try Filezilla. Has a better timeout for ECONN uploads.
    To add to John's solution, if a normal upload in Filezilla doesn't work, try doing an ASCII mode upload in Filezilla. This has proven to be a common fix to most image upload issues.
    Also, I'd recommend you normalize your filename - use lowercase only and please please please replace spaces with underscores _ or hyphens -

  • InDesign CS3 and SL - Image Import Issue

    This one is fairly simple and there has been some discussion of it on the Adobe boards, but without any solid solution.
    Issue: If you are in InDesign CS3 and you are using Command+D to replace an existing image, or you are importing a new image, InDesign will freeze up.
    Work Around: Drag and drop the image into the image box directly from Finder.
    Notes: I do not like this solution because it takes up more time, but it has been working for me this weekend. I reloaded InDesign CS3 completely and applied all of the updates, but it did not fix the issue.

    Hi, Curtis,
    Just got SL today - am planning to put it on a MacBook Pro 17" intel that I share for work. We have C3 and had to replace another laptop recently so few $$$$ for upgrading problems until the economy picks up. We use CS3 and CS2 and a standalone InDesign 2 on three computers and so far use the CS3 for the final output. Here is the problem - if we place an image, it stays out of the ID file - our biggest client is fairly image heavy and they LOVE multiple minute revisions, so we don't want to have a bizillion copies of a developing doc with the extra heft of the actual images - esp when they want a lot of fine tuning on the images- by dragging and dropping don't you get an imbedded image? Did you find another solution since you first posted? Thanks

  • Flickr image scrolling issues fix needed

    I have the smooth scroll add-on working just fine to enable good smooth scrolling, so this is not the issue. The issue is with Flickr and their script when it reloads/adds the next set of images when you reach the end and it say (paraphrased) "loading more images." After they are downloaded and appended to the cache, Firefox jumps back up to top the image Que and I have to grab the scroll slider and hold it, scroll down holding it, and keep holding it to reach the end of this first page of images, as which time I see a button to go to next page.
    Is it possible someone can look at the Flickr script and how Firefox is responding, and fix this? I'm thinking a modified branch code for Firefox with a "scroll cache" that can read ahead and feed Firefox independently from direct Flickr feed, and this cache set aside to it's own hard drive space on my computer just for photo streams can be created as an add-on Flickr module with additional code added to Firefox just for this add-on? Also, the benefit could be that it simply become an add-on for local cache management for photo streams and a "buffer augmentation" add-on?

    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do NOT click the Reset button on the Safe Mode start window.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Connectivity issues - Bridge CC to Photoshop CC - Image Processor issues.

    Hi guys.
    I'm having issues with Image Processor between Bridge CC and Photoshop CC. I can see in the forums that others are having issues that are close to mine but not the same. I can still see my image processor tab in my Tools menu.
    The problem is that I can click the Image Processor tab and it will bring Photoshop CC to the front of all windows, act like its loading, and then nothing happens from there. The run script box doesn't come up, nothing opens.
    I was wondering if anyone else has come across this and if so how you fixed it.
    Thank you

    I'm having the same result when I run image processor from Bridge. Image processor looks like it's about to open, the wait cursor displays (Photoshop CC will open if it's closed), but then when focus switches to Photoshop, nothing happens.
    A few months ago when I tried to upgrade to PS CC 2014 I had the same problem, which was only fixed when I removed all Adobe apps and re-installed CC and Bridge with no PS CC 2014. This might fix your problem if you re-install and only use a single version.
    Currently I have both versions of Photoshop installed again as I need the linked smart object functionality of 2014 but I also need my library of extensions in Photoshop CC. (Really frustrating switch to HTML5 only, by the way Adobe)
    Does anyone know if there is any way to have both versions of Photoshop installed AND have scripts fire off from Bridge?

  • .gif animations not working and image thumbnail issues

    Hello,
    I hope that someone can help me out.
    I have animated .gif images on my iWeb site and they just recently stopped working, and I cant figure it out.
    These are my issues:
    Recently iWeb wont show my animated .gifs as they should. (I have found that this still kind of works in IE, but not FF or Safari) In iWeb my .gifs show as a video clip, but once I publish the site, it only shows up as a single image and not an animation. Also the options on my site that allow users to switch back and forth between showing the miniature thumb nails of my images for the slideshow and not showing them do not show up all the time. The .gifs are also not showing up inside the miniature thumbnails as well.
    Also note: Those miniature little thumbnails show up very fuzzy as well. This doesn't seem like it should be like that. Am I over looking something important?
    Not sure what I have to do to fix these issues. I have looked to see if I am missing an update or something, but it appears that I am up to date.
    Can anyone help me out?

    Hi Neil,
    I have the same problem.
    I created a short title animation with EDGE, you can download it here : https://creative.adobe.com/share/829a6ca9-7f26-4ee5-8120-a5da388e3c33
    Once in inDesign, I create a web content overlay that I link to my html animation.
    I turn ON auto play and set a delay of 0.25 sec. The article that contains the animation is the third of my folio.
    If I preview the article ONLY, the animation fires correctly however if I preview the whole folio, the title appears but with no animation what so ever.
    Any help would be much appreciated.
    Cheers,
    J.

  • 4.2.2 upgrade from 4.1 and images location issue

    I've just upgraded from 4.1 to 4.2.2, and am having an issue with the referenced location of the images directory (/i/) resources. I am running apex listener on weblogic server, and have copied the new images into the i.war that I use. I have an unusual reverse proxy situation where my base URL includes a path, i.e., https://www.my.website.com/mysite/ is the URL that the proxy returns to the user, so my APEX addresses look like https://www.my.website.com/mysite/apex/f?101:1:::::, and my image directory references get put together like https://www.my.website.com/mysite/i/image.jpg.
    However, with the upgrade, one of the things that popped up was all of the datepickers in my application were changed to classic datepickers, which worked and displayed fine. When I change them to the new datepicker, the small calendar image doesn't show next to the field (red x), and when I look at the properties of the image, it's URL is https://www.mywebsite.com/i/asfdcldr.gif (no "/mysite/" path offset). ALL of the other images directory references seem fine, but not this. Has 4.2.2 changed how it composed the #HOST# when it's generating these new controls (same result when I make a datepicker from scratch)? Why do all of my other images directory references work? The only other problem that I'm seeing is that my charts no longer work, either. I used to have to hardcode my URL into the XML of the charts for them to work, but I don't see the URL referenced in the code anymore. Not sure if that's related, but that has always been an issue with my reverse proxy situation (I don't control the proxy server).
    Thanks in advance for any light anyone can shed on this,
    -warren

    Hi Warren,
    +> The only other problem that I'm seeing is that my charts no longer work, either. I used to have to hardcode my URL into the XML of the charts for them to work, but I don't see the URL referenced in the code anymore. Not sure if that's related, but that has always been an issue with my reverse proxy situation (I don't control the proxy server).+
    With APEX 4.2, we've changed how charts are initialized to be JavaScript only, and as part of the changes, we no longer expose the region source for charts. See *4.8 Updated AnyChart Flash Charts* in the APEX 4.2 Release Notes, here: http://docs.oracle.com/cd/E37097_01/doc/doc.42/e35121/toc.htm#CACEJBCD. So it's no longer feasible to hardcode a reference to your URL in the region source for a chart. If you have a reverse proxy, the CGI environment variables REQUEST_PROTOCOL, HTTP_HOST, SERVER_PORT, and SCRIPT_NAME, have to be correctly set to the public facing web server and not to the internal forwarding connection. If you execute the following query in SQL Workshop on your APEX instance, do you see the settings for the public facing web server?
    select owa_util.get_cgi_env('REQUEST_PROTOCOL'), owa_util.get_cgi_env('HTTP_HOST'), owa_util.get_cgi_env('SERVER_PORT'), owa_util.get_cgi_env('SCRIPT_NAME') from dual;Regards,
    Hilary

Maybe you are looking for

  • Creating a new adapter in sap pi

    Hi experts, I got a requirement to configure custamised adaptor for the sibel systems. Can you please provide information to build a new adapter in sap pi 7.1. Thankyou in advance......

  • 2nd Gen iPod Touch Wi-Fi not working since upgrading to new software

    Since I updated to the newest software I haven't been able to connect to the internet. When I go to settings and go to Wifi, the network shows up and I am able to click on it and enter my password. However, despite saying that I am connected, the bar

  • LOV in the Query Panel is not Working

    Hi Everyone, I dont see the LOV working in the Query Panel but it works in the table region, I am able to open the LOV and search some value and when i say ok it wont return any value... Do anyone have idea on that? Thanks

  • Need information about FI document  with header and no items

    Hello Experts! I need your help for understanding the following subject : How is it possible when using F.13 to obtain a fi document with header without items sometimes, and fi document with header and items anothers times? We didn't saw/found custom

  • OEM 11g Grid Control installation for 10g R2 database

    Hi , I am new with oracle enterprise manager grid control , I have 3 questions , 1. My customer is using windows server 2008 with oracle 10g R2 database , can I install OEM 11g R2 to monitor all the 10g databases ? 2. I found only 32 bit installers f