Using iframe in DW to display an Adobe web gallery showing only a grey box after upload

Page with the error;
http://dejasolutions.com/nighthawk/gallery.html
It previews great through Firefox and Safari, but as soon as I upload, I just get a white box instead of my Adobe Bridge-made gallery. I followed these instructions step-by-step;
http://foundationphp.com/tutorials/gallery/embed1.php
I'm ok with html & css, but know just about nothing in js - could be the main problem. I will be tearing my eyes out soon, so that I won't care about this anymore...
CS5 DW & Bridge on a mac. I've looked it over & over... everything in its right place.

Looks fine in FF, but your Nav is a bit offscreen
Adjust your CSS -500 sttribute

Similar Messages

  • Cannot see adobe web gallery on active website

    I can see adobe web gallery in the dreamweaver test site and it is also visible and working on adobe bridge(where the gallery was created), however, when i upload it to my url it does not work. It tells me "http://designswithoutboundaries.com/Illustration%20Web%20Gallery/Illustrationwebgalleryind ex.html.
    "404 error Page not found. Page as been removed, name changed or temporarily unavaible. Please try the following: if you typed the page address in the address bar click the back button in your brouser to try another link use a searcdh engine like google to for information on the internet".  My path must be wrong but i don't know how to fix it. I have searched many pages on the web for help but I keep coming up empty. I, also, asked my hosting company, however, they told me they don't help with the design end and I should look for help from a design master. Any suggestion would be greatly appreciated.
    Thank You

    It tells me "http://designswithoutboundaries.com/Illustration%20Web%20Gallery/Illus trationwebgalleryindex.html.
    "404 error Page not found.
    The link above is invalid. It needs a forward slash just before index.html.
    Valid: http://designswithoutboundaries.com/Illustration%20Web%20Gallery/Illus trationwebgallery/index.html.
    but does it go anywhere?
    Break the link down into its component parts.
    The link points to
    Domain: designswithoutboundaries.com = CORRECT
    Folder: Illustration = CORRECT
    Folder: Illustration Web Gallery (%20 is a space). Is that correct?
    Folder: Illustrationwebgallery Is that correct?
    Page: index.html. Is that correct and does it exist on the server?

  • Sharing an Adobe web gallery

    After creating an Adobe web gallery how do I share it. I have tried to publish it on my apple computer (10.6) but seem to be missing a few steps. Any ways to share a m Adobe web gallery would be great.
    Thank you, Andy

    Looks fine in FF, but your Nav is a bit offscreen
    Adjust your CSS -500 sttribute

  • Using IFRAME in JSF to display a PDF file

    2 all,
    How do i display a PDF file inside a JSF page in a IFRAME tag?
    I store the PDF file location (like d:\images\pdf1.pdf) in my database. I cant give this location directly into the src attribute cos then the file will be rendered to only users who have access to that folder (the application is a internet application). IFRAME would be ideal as the display is very very neat (esp for pdf files).
    To get this working i tried the examples given in balusc blogs (on image servlet) but the problem is that my servlet is not getting called. Find below the web.xml and imageDisplay.jsp pages that i tried
    web.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">
    <display-name>WorkFlowTool</display-name>
    <context-param>
      <param-name>javax.faces.STATE_SAVING_METHOD</param-name>
      <param-value>server</param-value>
    </context-param>
    <filter>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <filter-class>org.apache.myfaces.webapp.filter.ExtensionsFilter</filter-class>
      <init-param>
       <param-name>maxFileSize</param-name>
       <param-value>20m</param-value>
      </init-param>
    </filter>
    <filter>
      <display-name>SecurityCheckFilter</display-name>
      <filter-name>SecurityCheckFilter</filter-name>
      <filter-class>filters.SecurityCheckFilter</filter-class>
    </filter>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>*.faces</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>MyFacesExtensionsFilter</filter-name>
      <url-pattern>*.jsf</url-pattern>
    </filter-mapping>
    <filter-mapping>
      <filter-name>SecurityCheckFilter</filter-name>
      <url-pattern>/faces/*</url-pattern>
    </filter-mapping>
    <listener>
      <listener-class>com.sun.faces.config.ConfigureListener</listener-class>
    </listener>
    <servlet>
      <servlet-name>Faces Servlet</servlet-name>
      <servlet-class>javax.faces.webapp.FacesServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet>
      <servlet-name>Image Servlet</servlet-name>
      <servlet-class>servlets.ImageServlet</servlet-class>
      <load-on-startup>1</load-on-startup>
    </servlet>
    <servlet-mapping>
      <servlet-name>Image Servlet</servlet-name>
      <url-pattern>/imageServlet/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>/faces/*</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.faces</url-pattern>
    </servlet-mapping>
    <servlet-mapping>
      <servlet-name>Faces Servlet</servlet-name>
      <url-pattern>*.jsf</url-pattern>
    </servlet-mapping>
    <session-config>
      <session-timeout>60</session-timeout>
    </session-config>
    <welcome-file-list>
      <welcome-file>/jsp/index.jsp</welcome-file>
    </welcome-file-list>
    <error-page>
      <error-code>500</error-code>
      <location>/jsp/error.jsp</location>
    </error-page>
    <resource-ref>
      <res-ref-name>jdbc/JDDS</res-ref-name>
      <res-type>java.lang.Object</res-type>
      <res-auth>Container</res-auth>
      <res-sharing-scope>Shareable</res-sharing-scope>
    </resource-ref>
    </web-app>
    imageDisplay.jsp
    <HTML>
    <HEAD>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri='http://java.sun.com/jsp/jstl/core' prefix='c'%>
    <f:loadBundle basename="messages" var="msg" />
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
    <LINK rel="stylesheet" type="text/css" href="../theme/Styles.css"
         title="Style">
    </HEAD>
    <body topmargin="0" leftmargin="0">
    <f:view>
         <h:form id="CaseLookUp">
              <h:dataTable value="#{pc_ImageDisplay.dataModel}" var="var">
                   <h:column id="one">
                        <f:facet name="header">
                             <h:outputText value="H1" id="HOne"/>
                        </f:facet>
                        <h:outputText value="#{var.caseID}" id="IDONE"/>
                   </h:column>
                   <h:column id="two">
                        <f:facet name="header">
                             <h:outputText value="H2" id="HTwo"/>
                        </f:facet>
                        <h:graphicImage value="imageServlet?file=#{var.PODocPath}" id="image"/>
                   </h:column>
              </h:dataTable>
         </h:form>
    </f:view>
    </body>
    </HTML>The image servlet is what i got from balusc's site (http://balusc.blogspot.com/2007/04/imageservlet.html).
    I dont know why my servlet is not getting called. Can someone help me with this pls?
    okay let me post the modified code for my image servlet here
    public class ImageServlet extends HttpServlet {
         private static final long serialVersionUID = 1L;
         public void doGet(HttpServletRequest request, HttpServletResponse response) {
            // Define base path somehow. You can define it as init-param of the servlet.
    //        String imageFilePath = "/images";
            // In a Windows environment with the Applicationserver running on the
            // c: volume, the above path is exactly the same as "c:\images".
            // In UNIX, it is just straightforward "/images".
            // If you have stored images in the WebContent of a WAR, for example in the
            // "/WEB-INF/images" folder, then you can retrieve the absolute path by:
            // String imageFilePath = getServletContext().getRealPath("/WEB-INF/images");
            // Get file name from request.
            String imageFileName = request.getParameter("file");
            System.out.println("Inside the image servlet ---->>>> " + imageFileName);
            // Check if file name is supplied to the request.
    //        if (imageFileName != null) {
    //            // Strip "../" and "..\" (avoid directory sniffing by hackers!).
    //            imageFileName = imageFileName.replaceAll("\\.+(\\\\|/)", "");
    //        } else {
    //            // Do your thing if the file name is not supplied to the request.
    //            // Throw an exception, or show default/warning image, or just ignore it.
    //            return;
            // Prepare file object.
            File imageFile = new File(imageFileName);
            // Check if file actually exists in filesystem.
            if (!imageFile.exists()) {
                // Do your thing if the file appears to be non-existing.
                // Throw an exception, or show default/warning image, or just ignore it.
                return;
            // Get content type by filename.
            String contentType = URLConnection.guessContentTypeFromName(imageFileName);
            // Check if file is actually an image (avoid download of other files by hackers!).
            // For all content types, see: http://www.w3schools.com/media/media_mimeref.asp
            if (contentType == null || !contentType.startsWith("image")) {
                // Do your thing if the file appears not being a real image.
                // Throw an exception, or show default/warning image, or just ignore it.
                return;
            // Prepare streams.
            BufferedInputStream input = null;
            BufferedOutputStream output = null;
            try {
                // Open image file.
                input = new BufferedInputStream(new FileInputStream(imageFile));
                int contentLength = input.available();
                // Init servlet response.
                response.reset();
                response.setContentLength(contentLength);
                response.setContentType(contentType);
                response.setHeader(
                    "Content-disposition", "inline; filename=\"" + imageFileName + "\"");
                output = new BufferedOutputStream(response.getOutputStream());
                // Write file contents to response.
                while (contentLength-- > 0) {
                    output.write(input.read());
                // Finalize task.
                output.flush();
            } catch (IOException e) {
                // Something went wrong?
                e.printStackTrace();
            } finally {
                // Gently close streams.
                if (input != null) {
                    try {
                        input.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                        // This is a serious error. Do more than just printing a trace.
                if (output != null) {
                    try {
                        output.close();
                    } catch (IOException e) {
                        e.printStackTrace();
                        // This is a serious error. Do more than just printing a trace.
        }

    Thanks Balusc!!
    I have made use of your code to display PDF files in an IFRAME tag too!!! I just dint believe that this would be possible. Please just take a look at my JSP page.
    <h:form id="CaseLookUp">
         <%
         String path = request.getContextPath()+"";
         out.print(path);
         %>
    <iframe scrolling="auto" src="<%=path%>/imageServlet?file=D:\70-229 V5.pdf" width="80%" height="600" ></iframe>
         </h:form>

  • After creating Adobe Web Gallery in DW Images do not show.

    Hi, Hopefully
    I can articulate my D.W. problem. I created a website with 4
    total pages, 2 have small Adobe Web Galleries I created in Bridge, they both work in Live View and also work when I Preview in Browser, but when I upload to my web site... the 4 pages load but the 2 with Web Gallery load without the images ???    I checked the folders and all are in the proper places ??? Has anyone had a similar problem ???    Any help would be apppreciated THANKS. Pat

    Hello!  Might you be willing to help me with my page?
    I have my gallery embedded in this page:
    http://www.stompandcrush.com/quisomnian.html
    This is the gallery index html:
    http://www.stompandcrush.com/graffitigallery_newyork_netaacc.html
    Any help would be greatly appreciated!

  • Displaying note in Web Gallery?

    Is there a way to display the notes I've entered for photos in my Web Gallery? It appears the only option is to display the titles of photos. I know the user can flip over the photo in WG to see the note, but I would like them to appear below the photos as captions.
    If this is not possible with Web Gallery, is there an alternative services (like Flickr) that could do this?
    Thanks

    Yi:
    There's an AppleScript that will copy the Descriptions into the Title field of photos in iPhoto. That way you can get the descriptions into the web gallery. You can get the script here: http://www.macosxhints.com/article.php?story=20070822121100394&query=applescript %2Btitle.
    Be sure to read the comments about deleting the Å character from the script. It's a error introduced in the posting of the script. It works quite well.
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. It's compatible with iPhoto 6 and 7 libraries and Tiger and Leopard. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.≤br>
    Note: There now an Automator backup application for iPhoto 5 that will work with Tiger or Leopard.

  • Adobe Web Gallery- can't get more than 10 images to show up

    I am trying to create a Web Gallery from within Bridge (CS4), but I'm not having any luck getting more than 10 images to show up when I create the Gallery, even though I'm selecting nearly 50 images (all in the same folder) that I'd like to be in the Gallery. Does anyone know if there's a limit to the number of images that can be used in an AWG? I can't seem to find ANY documentation that sheds light on that subject. All I know is that no matter WHAT I do, I can only get Bridge to create a Gallery with TEN images!! Very frustrating. Any help will be greatly appreciated.

    Assuming the obvious that in Bridge content panel you have selected all the
    files you want in the web galery
    First try a purge cache for folder using the menu Tools/purge cache for
    folder when having Bridge pointed to the problem folder.
    Second try a reset preferences with option key while restarting Bridge.
    I wish that were the case - it's only outputing up 10 images...

  • Adobe Web Gallery

    Hello,
    I have created a web gallery using Bridge in DW CS4 to add to my html website (saved it to disc and added a link then). I'm just wondering how I can have the website navigation menu in the gallery page. I can't create any way to get back to the homepage or other pages after visiting the gallery.
    Thanks

    Assuming the obvious that in Bridge content panel you have selected all the
    files you want in the web galery
    First try a purge cache for folder using the menu Tools/purge cache for
    folder when having Bridge pointed to the problem folder.
    Second try a reset preferences with option key while restarting Bridge.
    I wish that were the case - it's only outputing up 10 images...

  • Using Flash SWF works great on live view and preview in Safari but does run after upload.

    Help needed.
    I have creatd a SWF file using Flash. Saved to root directory of the website.
    Inserted into a AP tag area.
    Plays Ok in Live view
    Plays OK in Safari preview
    Uploads OK
    Checked file present OK
    Upload Scripts folder
    Will not play when go to website page left with white area where swf should be playing.
    Ideas greatly received.
    Using Dreamweaver 5.5
    Cheers
    Bikeboysim
    www.parrotti.com

    Glad you got it all working! Good job!
    Just a note (for yourself and anyone else using Flash) on the rumor that all Flash files must be in the root folder... simply not true. In my opinion, as with any other type of files on your site, I'd suggest putting them in organized folders.... all the images in one folder... then subfolder for diff categories of images, flv video files in another folder, maybe keep all the .swf files in another, the xml data files in another, etc. Flash asset files can be just as organized as any other type of files.
    From an old article.... for review:
    Pathing issues
    Almost always when it works on the local machine and not the server, it's a pathing problem.
    You can put your Flash related files in whatever folders you want, they do NOT have to be in the root, they do NOT all have to be in the same folder. But if you have a problem and if sticking them all in the root folder works, then you know that the issue was a pathing problem.
    Just remember that paths used in the .swf become relative to the Web page on which the .swf is placed, NOT it’s physical location.  So for example, if your .swf is in the flash/data folder and you use that .swf on a Web page in the root folder, you are in effect, removing that .swf from flash/data and putting it in root. So if the .swf is loading any related files (xml, images, video, etc), the path used inside the .swf to load the .xml file has to be relative to it's new location in root and then back down into flash/data. This is true even though when testing the .swf by itself, it can be inside flash/data and work just fine, since relative to it's location, the path is just fine, they are in the same folder. But if that same path is used when the .swf is placed on a page two folder levels up, the relative path has changed, the old "same folder" path will not work.
    In fact if you are placing the .swf on a web page in a different folder than the .swf is stored in, and that .swf calls external assets, then direct clicking and opening of the .swf in it’s folder should NOT work! That’s because the paths to the external assets should be relative to the Web page and not the physical location of the .swf.
    So just be sure that you use addresses relative to the final Web page locations (not physical file locations) and you can put the Flash related files in what ever folders you want.
    Best wishes,
    Eye for Video
    www.cidigitalmedia.com
    Best wishes,
    Adninjastrator

  • In 10.10 the "recent documents" pulldown does not display actual recent items--it shows the same items time after time. How can I fix that?

    In previous versions of OS 10, the "recent items" pull down from the Apple icon (top left) actually showed recent items.  In this version, 10.10, the same items display time after time rather than displaying recent items.  How can this be fixed?

    Back up all data before proceeding.
    Triple-click anywhere in the line below on this page to select it:
    ~/Library/Containers/com.apple.corerecents.recentsd
    Right-click or control-click the line and select
              Services ▹ Reveal in Finder (or just Reveal)
    from the contextual menu.* A folder should open with an item selected. Move the selected item to the Trash. Log out or restart the computer and test.
    *If you don't see the contextual menu item, copy the selected text to the Clipboard by pressing the key combination  command-C. In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar and paste into the box that opens by pressing command-V. You won't see what you pasted because a line break is included. Press return.

  • Okular presentation mode shows only blank grey screen (using Xmonad)

    I have a problem getting the presentation mode of Okular to work. When I select presentation mode, the screen is covered by a grey window with nothing in it. The only way to get rid of this window is by killing it from the window manager (i.e. the normal "exit presentation mode" shortcut (esc) doesn't work).
    I am using Xmonad as a window manager (using the KDEWM environment variable).
    It has been working before, but I don't know which update broke it.
    I am running KDE 4.5.2 and Xmonad 0.9.1.
    Any help would be greatly appreciated.
    Cheers,
    -Toke

    tohojo wrote:
    I haven't found a way to make it stop doing that, but when the grey screen appears, pressing "B" twice seems to solve it, and make the normal presentation mode appear. (B is bound to "Switch to blackscreen mode").
    This makes okular usable for presentations for me...
    Thanks!

  • Change background in Adobe Bridge Web Gallery

    Hi,
    I am trying to use a web gallery created with adobe bridge in my webpage. I have inserted gallery in an <iframe>.  The gallery shows up just fine.  I would like to have the background of the webpage show up rather than the background of the web gallery. How can I do this? Also, I would like to change the appearance of the captions under the pictures. Also the gallery shifts left in interbet explorer. Can this be fixed?
    Here is the code in my web Page:
    <!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"><!-- InstanceBegin template="/Templates/cliffsteele.dwt" codeOutsideHTMLIsLocked="false" -->
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <!-- InstanceBeginEditable name="doctitle" -->
    <title>Cliff's Home Page</title>
    <!-- InstanceEndEditable -->
    <style type="text/css">
    <!--
    -->
    </style>
    <!--[if lte IE 7]>
    <style>
    .content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
    ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
    </style>
    <![endif]-->
    <link href="cliff.css" rel="stylesheet" type="text/css" />
    <script src="SpryAssets/SpryMenuBar.js" type="text/javascript"></script>
    <link href="SpryAssets/SpryMenuBarHorizontal.css" rel="stylesheet" type="text/css" />
    <!-- InstanceBeginEditable name="head" -->
    <style type="text/css">
    #Webgallery {
    height: 750px;
    width: 1000px;
    text-align: center;
    background-image:url(back1.gif)
    </style>
    <!-- InstanceEndEditable -->
    </head>
    <body>     
    <div class="container">
      <div class="header"><img src="Pictures/logo.gif" alt="Logo" name="Insert_logo" width="81" height="63" id="Insert_logo" style="background: #8090AB; display:block;" />
    <!-- end .header --></div>
      <div class="sidebar1"><!-- InstanceBeginEditable name="sidebar" --> <img src="Pictures/back1.jpg" width="72" height="72" />
          <p style="font-size:larger; font-family:'Comic Sans MS', cursive"> Cliff is an all breed AKC Registered Professional Dog Handler</p>
          <p><img src="Pictures/back1.jpg" width="72" height="72" /></p>
          <p><img src="Pictures/back1.jpg" width="72" height="72" /></p>
      <!-- InstanceEndEditable -->
      <!-- end .sidebar --></div>
      <div class="content">
      <div > <ul id="MenuBar1" class="MenuBarHorizontal">
         <li><a href="cliffsteele.html">Home</a>      </li>
         <li><a href="#" class="MenuBarItemSubmenu">Resort</a>
           <ul>
             <li><a href="facilities.html">Our Facility</a></li>
             <li><a href="Kennel.html">Boarding &amp; Daycare</a></li>
             <li><a href="spa.html">Grooming</a></li>
             <li><a href="#">Rates</a></li>
    </ul>
         </li>
         <li><a class="MenuBarItemSubmenu" href="#">Show Handling</a>
           <ul>
             <li><a href="#">Info</a></li>
             <li><a href="#">Rates</a></li>
             <li><a href="calendar.html">Schedule</a></li>
    </ul>
         </li>
         <li><a href="#">Photo Gallery</a></li>
         <li><a href="#">About Me</a></li>
         <li><a href="Contact.html">Contact Me</a></li>
       </ul></div>
    <br />
    <!-- InstanceBeginEditable name="heading" -->
    <h1 style="margin: 10px; clear: both; text-align:center; font-size: xx-large; font-family: Georgia, 'Times New Roman', Times, serif; padding-top:20px;">Clifford W. Steele</h1>
    <!-- InstanceEndEditable -->
    <div ><!-- InstanceBeginEditable name="content" -->
      <div id="Webgallery"><iframe src="Adobe Web Gallery/index.html" width="1000" height="750" frameborder="0" name="gallery"></iframe></div>
    <!-- InstanceEndEditable --></div>
        <!-- end .content --></div>
      <div class="footer">
          <div style="float:right">
            <p> <a href="MAILTO:[email protected]" >Site Designed by Fredric M. Zipser</a><br />
           </p>
        </div>
        <div class="clearfloatleft">
            <p>Clifford W. Steele  Professional Handler <br />
              1395 Rt. 6<br />
              Carmel, NY  10512-1627<br />
              United States<br />
              ph:(845) 225-2463<br />
              Cell:(845) 661-0010<br />
            <a href="MAILTO:[email protected]" >[email protected]</a></p>
        </div>
      <!-- end .footer --></div>
    <!-- end .container --></div>
    <script type="text/javascript">
    var MenuBar1 = new Spry.Widget.MenuBar("MenuBar1", {imgDown:"SpryAssets/SpryMenuBarDownHover.gif", imgRight:"SpryAssets/SpryMenuBarRightHover.gif"});
    </script>
    </body>
    <!-- InstanceEnd -->
    =====================================================================
    Here is the gallery code:
    <html xml:lang="en" xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
    <meta name="KEYWORDS" content="photography,software,photos,digital darkroom,gallery,image,photographer" />
    <meta name="generator" content="Adobe Lightroom" />
    <title>Adobe Web Gallery</title>
    <link rel="stylesheet" type="text/css" media="screen" title="Custom Settings" href="content/139026903252918767_custom.css" />
    <link rel="stylesheet" type="text/css" media="screen" title="Custom Settings" href="resources/css/master.css" />
    <script type="text/javascript">
       window.AgMode = "publish";
          cellRolloverColor="#a1a1a1";
          cellColor="#949494";
          </script>
    <script type="text/javascript" src="resources/js/liveUpdate.js">
    <!--padding for ie-->
    </script>
    <script type="text/javascript" src="resources/js/cutName.js">
    <!--padding for ie-->
    </script>
    <!--[if lt IE 7.]> <script defer type="text/javascript" src="resources/js/pngfix.js"></script> <![endif]-->
    <!--[if gt IE 6]> <link rel="stylesheet" href="resources/css/ie7.css"></link> <![endif]-->
    <!--[if lt IE 7.]> <link rel="stylesheet" href="resources/css/ie6.css"></link> <![endif]-->
    </head>
    <body>
    <div id="wrapper">
    <div id="sitetitle">
    <h1 onClick="clickTarget( this, 'siteTitle.text' );" id="liveUpdateSiteTitle">Adobe Web Gallery</h1>
    </div>
    <div id="collectionHeader">
    <h1 onClick="clickTarget( this, 'groupTitle.text' );" id="liveUpdateCollectionTitle">My Photographs</h1>
    <p onClick="clickTarget( this, 'groupDescription.text' );" id="liveUpdateCollectionDescription">Web Photo Gallery created by Adobe Bridge</p>
    </div>
    <div id="stage">
    <div id="index">
    <div id="tempDiv" xmlns="">Floyd &amp; Merve<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft   " onClick="window.location.href='content/_7522730020_large.html'">
    <div class="itemNumber">1</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID0_1390269032529_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_7522730020_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_7522730020.jpg" id="ID0_1390269032529_thumb" alt="Floyd &amp; Merve" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div id="tempDiv" xmlns="">Honey &amp; Coco<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft   " onClick="window.location.href='content/_5915412028_large.html'">
    <div class="itemNumber">2</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID1_1390269032529_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_5915412028_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_5915412028.jpg" id="ID1_1390269032529_thumb" alt="Honey &amp; Coco" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div id="tempDiv" xmlns="">Hope<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft   " onClick="window.location.href='content/_2409862627_large.html'">
    <div class="itemNumber">3</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID2_1390269032529_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_2409862627_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_2409862627.jpg" id="ID2_1390269032529_thumb" alt="Hope" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div id="tempDiv" xmlns="">Jackson<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft borderRight  " onClick="window.location.href='content/_0603615958_large.html'">
    <div class="itemNumber">4</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID3_1390269032529_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_0603615958_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_0603615958.jpg" id="ID3_1390269032529_thumb" alt="Jackson" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div class="clear">
    <!--padding for ie-->
    </div>
    <div id="tempDiv" xmlns="">Larry<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft   " onClick="window.location.href='content/_6717880965_large.html'">
    <div class="itemNumber">5</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID4_1390269032529_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_6717880965_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_6717880965.jpg" id="ID4_1390269032529_thumb" alt="Larry" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div id="tempDiv" xmlns="">Maggie &amp; Fiona<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft   " onClick="window.location.href='content/_7881538797_large.html'">
    <div class="itemNumber">6</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID5_1390269032545_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_7881538797_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_7881538797.jpg" id="ID5_1390269032545_thumb" alt="Maggie &amp; Fiona" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div id="tempDiv" xmlns="">Mocho<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft   " onClick="window.location.href='content/_0937208439_large.html'">
    <div class="itemNumber">7</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID6_1390269032545_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_0937208439_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_0937208439.jpg" id="ID6_1390269032545_thumb" alt="Mocho" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div id="tempDiv" xmlns="">Riley<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft borderRight  " onClick="window.location.href='content/_9205901081_large.html'">
    <div class="itemNumber">8</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID7_1390269032545_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_9205901081_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_9205901081.jpg" id="ID7_1390269032545_thumb" alt="Riley" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div class="clear">
    <!--padding for ie-->
    </div>
    <div id="tempDiv" xmlns="">Rio<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft   " onClick="window.location.href='content/_4843308047_large.html'">
    <div class="itemNumber">9</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID8_1390269032545_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_4843308047_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_4843308047.jpg" id="ID8_1390269032545_thumb" alt="Rio" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div id="tempDiv" xmlns="">Scout &amp; Whisky<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft   " onClick="window.location.href='content/_7104248265_large.html'">
    <div class="itemNumber">10</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID9_1390269032545_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_7104248265_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_7104248265.jpg" id="ID9_1390269032545_thumb" alt="Scout &amp; Whisky" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div id="tempDiv" xmlns="">Shadow<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft   " onClick="window.location.href='content/_0430682464_large.html'">
    <div class="itemNumber">11</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID10_1390269032545_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_0430682464_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_0430682464.jpg" id="ID10_1390269032545_thumb" alt="Shadow" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div id="tempDiv" xmlns="">Sissy<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft borderRight  " onClick="window.location.href='content/_8169451030_large.html'">
    <div class="itemNumber">12</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID11_1390269032545_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_8169451030_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_8169451030.jpg" id="ID11_1390269032545_thumb" alt="Sissy" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div class="clear">
    <!--padding for ie-->
    </div>
    <div id="tempDiv" xmlns="">Tyke<!--padding for OS X 10.6-->
    </div>
    <script type="text/javascript">
      var nameDiv = document.getElementById("tempDiv");
      var thumbnailName = getName(nameDiv.innerHTML);
      try {
       nameDiv.parentNode.removeChild(nameDiv);
      } catch (e) {}
    </script>
    <div class="thumbnail borderTopLeft  borderBottom " onClick="window.location.href='content/_3042148269_large.html'">
    <div class="itemNumber">13</div>
    <div onMouseOver="window.gridOn( this.parentNode, 'ID12_1390269032545_thumb' );" onMouseOut="window.gridOff( this.parentNode );" class="alignmentOuterGrid">
    <div class="alignmentOuter">
    <div class="alignmentMiddle">
    <div class="alignmentInner">
    <div class="AdjustZIndex">
    <a href="content/_3042148269_large.html" onClick="return needThumbImgLink;">
    <img src="content/bin/images/thumb/_3042148269.jpg" id="ID12_1390269032545_thumb" alt="Tyke" />
    </a>
    </div>
    </div>
    </div>
    </div>
    <div class="thumbnailName">
    <p onClick="clickTarget( this, 'thumbnailname' );" id="thumbnailName">
    <script type="text/javascript">
        document.write(thumbnailName);
       </script>
    </p>
    </div>
    </div>
    </div>
    <div class="emptyThumbnail borderTopLeft  borderBottom"> </div>
    <div class="emptyThumbnail borderTopLeft  borderBottom"> </div>
    <div class="emptyThumbnail borderTopLeft borderRight borderBottom"> </div>
    <div class="clear">
    <!--padding for ie-->
    </div>
    </div>
    </div>
    <div class="clear">
    <!--padding for ie-->
    </div>
    <div id="contact">
    <a href="mailto:[email protected]">
    <span onClick="clickTarget( this, 'contactInfo.text' );" id="liveUpdateContactInfo">Contact name</span></a>
    </div>
    <div class="clear">
    <!--padding for ie-->
    </div>
    </div>
    </body>
    </html>

    Try opening in Chrome or Firefox and inspecting the elements. You can turn easily locate the CSS that's driving the background and experiment with settings. You get there by right clicking on an element and select Inspect Element from the options. It's much easier than trying to go through all of that HTML code without a style sheet to go along with it.

  • Flash Player linux, grey box issue (youtube vids and some applets do not display)

    I posted this question on my distro-specific forum as well as linuxquestions.org, however it appears to  be a unique problem, so here it is:
    When viewing videos on youtube.com, most other websites, and when trying  to run certain flash games, the flash applet will not display (though  the audio will play). Instead of displaying the flash applet, there  will be a grey box where the flash video or applet would normally be.
    This problem occurs on Firefox and Chromium, but not on Opera.
    My Specs are as follows:
    Distro: PCLinuxOS 2010 (32-bit)
    flash-player-plugin: 10.1-2pclos2010
    firefox: 3.6.6-1pclos2010
    swfdec has never been installed (to my knowledge)
    I did a lot of investigating about the problem but have turned up no  solutions thus far. Here are my results.
    Flash videos and applets which allow  access to the settings menu (like youtube played from their website) do  not display, however flash videos and applets which do NOT allow access  to the settings menu (including youtube videos embedded in other  websites) WILL display.
    Reinstalling flash-player-plugin and firefox through synaptic does  not solve the problem (though note that PCLOS works with rpm files, not  deb files. apt4rpm does not support the remove --purge operation,  however reinstalls are said to overwrite custom configs with stock  ones.)
    Creating a new firefox profile and/or starting FFox in safe-mode  does not solve the problem
    Creating another user and running FFox from that user will  properly display flash videos
    Comparing default plugins between my main user and new user shows  that there is no difference. So this likely rules out a defective  extension or plugin binary.
    Deleting ~/tmp/plugtmp* folders when FFox is closed does not solve  the problem.
    Removing the ~/.macromedia and ~/.adobe folders does not solve the  problem. (have checked permissions between the new test user and main  user, and they are equivalent)
    Downloading libflashplayer.so from the Adobe website and copying it  to /usr/lib/mozilla/plugins has no effect on the problem.
    I'm thinking that there might be somewhere else that flash stores  configurations for my user, and that maybe the settings there are  corrupted and would need to be purged. However frantic googling has  turned up nothing useful so far.
    Does anyone have any suggestions for me?

    The problem, at least in my case, was QtCurve's opacity. If I have opacity set to less than 100%, flash would not display for sites like Youtube and Vimeo, but worked elsewhere.
    The solution for me was to go into qtcurve's settings, and put npviewer.bin in the application exceptions section for window and menu opacity. Doing that, I was able to keep my transparent menus, and also use flash everywhere.
    You can find out what the application name is by launching your browser of choice in a terminal with qtcurve debug turned on, like so:
    QTCURVE_DEBUG=1 firefox
    If you watch through the lines that start with "QtCurve" you'll see "Application name". Look for the one that shows up when you try to load a video. In my case it was npviewer.bin. In yours, it might be nspluginviewer or something else. If you add an exception for that specific application, you'll fix your problem without having to compromise on your theme.

  • Javascript - added images display as grey boxes

    I am attempting to add an Image to an InDesign document via a javascript that I am executing via the RunScript() soap method of InDesign Cs4 server.  The script I am using to add an image is something similar to this:
    var imageFile = File("//c/images/animage.pdf");
    var imageGraphic = myDocument.pages.item(0).place(imageFile, null, imageLayer);
    imageGraphic = imageGraphic[0];
    var imageFrame = imageGraphic.parent;
    imageFrame.geometricBounds = [IMAGE_TOP_Y, IMAGE_TOP_X, IMAGE_BOTTOM_Y, IMAGE_BOTTOM_X];
    imageFrame.fit(FitOptions.proportionally);
    imageFrame.fit(FitOptions.frameToContent);
    The script adds the image correctly, but when I pull up the document with InDesign, the Images are displayed as grey boxes.  I am able to fix this within InDesign designer by manually setting the "Display Performance" to "High Quality" through the menus, but I need to handle this via the script run on the server.  I attempted to update the script to the following:
    var imageFile = File("//c/images/animage.pdf");
    var imageGraphic = myDocument.pages.item(0).place(imageFile, null, imageLayer);
    imageGraphic = imageGraphic[0];
    var imageFrame = imageGraphic.parent;
    imageFrame.geometricBounds = [IMAGE_TOP_Y, IMAGE_TOP_X, IMAGE_BOTTOM_Y, IMAGE_BOTTOM_X];
    imageFrame.fit(FitOptions.proportionally);
    imageFrame.fit(FitOptions.frameToContent);
    //HERE IS THE NEW LINE
    imageFrame.localDisplaySetting = DisplaySettingOptions.HIGH_QUALITY;
    This script runs without problems within the CS4 ExtendScript Toolkit on my local pc.  However, when I run the script against the InDesign CS4 server, I get the following error:
    Error Number: 55
    Error String: Object does not support the property or method 'localDisplaySetting'
    Does anyone have any advice on how I should proceed?  My main goal is to have the image display correctly without the grey box.

    hello, I'm running into the same issue with image showing up as grey boxes. I'm updating documents via (JS) scripts by placing new images into rectangles. When I open up that document after the script saves it, all I see is a grey box until I change the Display Performance to Typical (or higher). In my scripts, I can change the localDisplaySettings to DisplaySettings.TYPICAL, but it only works locally, when I run this on the server it fails because it says DisplaySettings is undefined. I'm wondering if this is a server setting, and if so, how I might be able to change it?
    Thanks in advance!

  • I am using i padmini with retina display. i was curious to know if the pdf files saved on adobe reader app are safe from any hacking

    I am using i padmini with retina display. i was curious to know if the pdf files saved on adobe reader app are safe from any hacking

    If they are saved on your iPad, they are as safe as anything else.
    Barry

Maybe you are looking for

  • Error while creating cap file

    while creating Cap file through converter , error is coming Class helloworld does not belong to this package while giving the same package path where it is existing physically. i m using javacard version 2.2.1 and J2SE 1.4

  • Determine all entity associations used in application module?

    Hi, ADF 11.1.1.2.0, ADFBC. I want to create a JUNIT testcase to loop through all entity associations and compare them with the relations in the Oracle database. to get all view objects of the AM I use following method: am.getViewObjectNames(true,true

  • Lumia 620 - Store

    In my phone Lumia 620 there is a problem to opening store . Plz help me Moderator's note: We have provided a subject-related title to help other forum users easily view and respond to this post.

  • Unable to connect to OVD using the odsm

    Hi All, I was unable to connect to the OVD 11.1.1.3.0 installed using the ODSM, while i was able to connect to the OID happily. I tried to connect to the OVD using the adminssl port (8899), non-ssl port (6501), ssl port (7501). I have the user id as

  • Multiple link addons not working on version 21.0

    I have been having problems off and on with Snaplinks Plus (tab addon preferred by most sites I frequent), where it would glitch and stop working. Un- and re-installing it, though a nuisance, has been solving the problem up until now, but since I upg