Wash Post. photo gallery didn't display on Safari?

I struggled to open any photo galleries at the washingtonpost.com on either Safari or Firefox since last fall. All of them didn't display. Blank on WP's photo gallery. I thought a problem must be Flash player, but other news onlines displayed any photo galleries on either Safari or Firefox. I asked other person, who has iMac, could see WP's photo gallery. Something wrong with my iMac. Any suggestion?

shs35 wrote:
I'm such a novice it's embarrassing — how do I do that?  Thank you very much, I really appreciate it.
Assuming the file is within the defined site within Dreamweaver just navigate to it in the Files panel and click the Put button to upload the file to the server.  If the file is not within your defined site, for whatever reason, I would recommend putting it there so you can easily upload within DW.  DW only allows uploading files that are within defined sites on your hard drive.  If you need to upload files elsewhere I would recommend looking into a FTP client like CyberDuck ( http://cyberduck.ch/ ).

Similar Messages

  • Local video streaming and photo gallery displaying

    Hi, there. I have a macbook pro, an iPhone4, a video beamer and a wi-fi connection. I would like to know how I can, localy, stream a live video I'm shooting with my iPhone4 in order to see it in real time on the beamer (connected to the Macbook).
    I would also like to know how I can, with the same setup, shoot photos with my iPhone4 and update in real time a photo gallery I'm displaying with the beamer.
    The only constraint is that I can't use any cable wired on the iPhone (it's for a party actually).
    Thank you.

    No one has any idea?

  • Dynamic Photo Gallery in Flash using AS3.0 and XML, but it doesn't work and missed up my app.

    Hi,
    I am creating an iPad app using AS3. The app contains three sections.
    One of those sections (chocolate sources)contains Dynamic Photo Gallery using XML. The photos, thumbnails, and text in this section are loaded from XML.
    I faced may issue when I tried to run this app:
    The gallery photos didn't show up
    The thumbnails (buttons to navigate the photo gallery) didn't show up at all. (The thumbnails should show up under the photo gallery box.)
    The text doesn't show up (the text should be in every photo as describtion)
    I want to include Swipe in the photo gallery, how can I do that?
    When I click on "Chocolate Sources" button, the photo gallery appears in every section, here are print screens describe what I mean:
    The photo gallery covers the home screen too.
    Here is my XML:
    <?xml version="1.0" encoding="utf-8"?>
    <sources>
              <section>
                        <details>
                                            Cocoa tree exists in the tropics area, such as Central and South America.
                                  </details>
                                            <image>
                                                      <url>coca1.jpg</url>
                                                      </image>
                                                      </section>
              <section>
                        <details>
                        Cocoa is supplied in many countries such as Indonesia, Ghana, Brazil, Ecuador and Cameroon.
                        </details>
                                  <image>
                                  <url>coca2.jpg</url>
                                  </image>
                                            </section>
              <section>
                                  <details>
                                  Dark chocolate helps to relax and reduce the stress and blood pressure because it has antioxidants elements, which helps in vasodilatory process.
                                  </details>
                                            <image>
                                            <url>coca3.jpg</url>
                                                      </image>
                                                                </section>
              <section>
                        <details>
                        Chocolate provides energy and hyperactive sometimes because it contains high level of caffeine and sugar.
                        </details>
                                  <image>
                                  <url>coca4.jpg</url>
                                            </image>
                                                      </section>
              <section>
                        <details>
                        Chocolate could be mixed with many different flavors, such as mint, strawberry, orange, banana, vanilla, hazelnut, almond, coconut, and etc.
                        </details>
                                  <image>
                                  <url>coca5.jpg</url>
                                  </image>
                                            </section>
              <section>
                        <details>
                                  Chocolate is expressing of well hospitality and good time due to its lovely taste.
                                  </details>
                                            <image>
                                            <url>coca6.jpg</url>
                                                      </image>
                                                                </section>
    </sources>
    And here is my Action Script for "Chocolate Sources" section:
    stop();
    function Choco1(evt:MouseEvent): void {
              gotoAndStop('16');
    choco_btn.addEventListener(MouseEvent.CLICK,Choco1);
    function Souc1 (evt:MouseEvent): void {
              gotoAndStop ('31');
    souc_btn.addEventListener(MouseEvent.CLICK,Souc1);
    function ShopIn1 (evt:MouseEvent):void {
              gotoAndStop('46');
    shops_btn.addEventListener(MouseEvent.CLICK,ShopIn1);
    import flash.net.URLLoader;
    import flash.net.URLRequest;
    import flash.events.Event;
    import flash.display.MovieClip;
    import flash.display.Loader;
    import fl.motion.MotionEvent;
    import flash.events.MouseEvent;
    import flash.sampler.NewObjectSample;
    import flash.text.TextFormat;
    var xmlLoader: URLLoader = new URLLoader (new URLRequest("sources.xml"));
    xmlLoader.addEventListener(Event.COMPLETE, finishedXmlLoader);
    var xmlFile:XML;
    var xextend:int = 10;
    var gal:galary = new galary ();
              gal.x = 85;
              gal.y = 165;
              addChild(gal);
    var txfe: TextField = new TextField ();
    txfe.x = 25;
    txfe.y = 45;
    var tformat:TextFormat = new TextFormat ();
    tformat.bold = true;
    tformat.color = 0xFFFFFF;
    tformat.size = "18";
    tformat.font = "Arial";
    txfe.defaultTextFormat = tformat;
    addChild(txfe);
    function finishedXmlLoader (e:Event): void{
              xmlFile = new XML (xmlLoader.data);
              var leng:int = xmlFile.image.length();
              txfe.text = xmlFile.image.details[0];
              for (var i:int = 0;i<leng;i++){
                        var b:thumbs = new thumbs ();
                        b.x = xextend;
                        b.y = 480;
                        b.buttonMode = true;
                        b.details = (i+1).toString();
                        addChild(b);
                        b.addEventListener(MouseEvent.MOUSE_OVER, theMosover);
                        b.addEventListener(MouseEvent.MOUSE_OUT, theMosout);
                        b.addEventListener(MouseEvent.CLICK, onMosClick);
                        var bloader:Loader = new Loader();
                        bloader.load(new URLRequest("thumbs/" + (i+1) + ".jpg"));
                        b.addChild(bloader);
                        xextend += b.width + 50;
    var loader:Loader = new Loader ();
    loader.load(new URLRequest ("pictures/coca1.jpg"));
    gal.addChild(loader);
    function theMosover(m:MotionEvent):void{
              m.currentTarget.alpha = 0.5;
    function theMosout (m:MouseEvent):void{
              m.currentTarget.alpha = 1.0;
    function onMosClick(m:MouseEvent):void{
              var loader:Loader = new Loader();
              loader.load(new URLRequest("pictures/" + m.currentTarget.details + ".jpg"));
              gal.addChild(loader);
              txfe.text = xmlFile.image.details[int(m.currentTarget.details) -1];
    I need an urgent help to fix the errors and make this section work well.
    thanks.

    try:
    txfe.text = xmlFile.section[int(m.currentTarget.details) -1].details;
    instead of
    txfe.text = xmlFile.image.[int(m.currentTarget.details) -1];
    and add your thumbs to gal, not the stage.  when you're done with the gallery, remove gal.

  • Photo gallery in details view

    Hey all. I'm developing a site for a real estate agency. I have built a web app that lists and displays individual properties. I have managed to hook up Business Catalyst's Photo gallery module that displays a specific gallery (one for each property) on the details page template. I did this by creating a text sting field in the web app, into which you can input the gallery tag specific for each property. Like this: ({module_photogallery,33715, 4,,6,175,150,ThumbnailAlgorithm,fill_proportional}). This works, but the client now says they don't like the "lightbox" function of the default BC gallery module, and want it to function differently. As in having clickable thumbnails that populate a static image area. Is this possible? I understand that I could use different image galleries, if it were a gallery on a static page. My problem is that I need a gallery that can be different for each web app item and work within the details page of a web app. Any help would be appreciated.
    Here is the test link: Anne Rogers Realty Group, Inc - Committed to our clients, our neighborhood, with personalized service every time. note the way the list and details pages function.
    Thanks

    Yes,
    What you are seeing by default is shown as 'My folders' view. It's a flat alphabetical list of the last level subfolders in which you have media files.
    Click on the little yellow icon just right of the 'My folders' title bar, and you switch to the 'Folders' view which reflects what you see in your explorer. The difference is that by default, you see only subfolders having image files; if you want to display subfolders without image files, right click on the master folder and choose to show empty folders; that choice is not sticky.

  • Safari and Photo Gallery

    When browsing with Safari, clicking on a picture (for example; in AOL News) sends you to "Photo Gallery" for more pictures. The "Photo Gallery" is blank where pictures would normally show. All other pictures, u-tube videos, etc. in Safari work fine -- just "Photo Gallery" does not display images. Pop-up windows are not blocked; display images in Appearance preferences is checked. Am I missing a plug-in? Thanks, FloydK

    Photo gallery working fine when using fire fox But not when using Safari. This all started when Safari came out with 5.0. I have apple care & have called support over 20 times on this issue. Even had them go to Aol & go to one of the photo galleries & low & behold they had the same exact problem but it still is not fixed. I would think but am not sure that maybe apple has to contact Aol for file updates, This has been going on for 6 months now & really don't see it being fixed anytime soon.

  • HT201401 I had restored my iPhone 4 but after restore my camera can't function well after take picture from the camera it's didn't display in the Photo Gallery even can't take a video record,how to solve this?and i had tried to restore again,still the sam

    I had restored my iPhone 4 but after restore my camera can't function well after take picture from the camera it's didn't display in the Photo Gallery even can't take a video record,how to solve this?and i had tried to restore again,still the same
    kindly reply and fix this for me
    reply to my email,tq

    Most likely you have Office 2004 which are PPC-only applications and will not work in Lion. Upgrade to Office 2011. Other alternatives are:
    Apple's iWork suite (Pages, Numbers, and Keynote.)
    Open Office (Office 2007-like suite compatible with OS X.)
    NeoOffice (similar to Open Office.)
    LibreOffice (a new direction for the Open Office suite.)

  • Photo Gallery display by date uploaded

    I would really like to have the photo gallery display images by date uploaded not alphabetical. I know this isn't possible but I remember somewhere on the old forum someone posting a workaround for this issue. Does any one know a workaround? I'm sure it had something to do with renaming the files.
    Thanks
    Karl

    Hi Sidney, thanks loads for your reply. If i try your method the most recent image still wont be placed at the beginning eg.
    If today's date is 01022012 then tomorrows date will be 02022012 which will still be placed after 01022012
    Eg
    01022012
    02022012
    Thanks again but is there any other method?
    Karl

  • Photo gallery not displaying after site is published to .mac

    I would like to thank everyone who reads and responds to these posts. I would be completely lost without it. Apple is lucky to have such great forums. That being said, I need help again...
    I finally (thanks to much help) got both my websites up and running without interfering with each other in the publishing process. Now my second website http://web.mac.com/dkeesey01/CAAHA/Welcome.html or www.caaha.org is up but the photo gallery won't show. I published to a folder and it works fine, but it won't work in safari, firefox, or internet explorer.
    Thank you!

    Update iWeb to 2.0.4. It will solve a lot of problems.
    Then do *Publish all to MobileMe*.

  • Help! problem displaying Web Photo Gallery in IE and Windows browser

    Hi all,
    Sorry if this issue is old news but, i have tried to find the answer in the archives first, with no luck.
    It's about this;
    I am working with Mac OSX 10.4.11 and Photoshop CS2.
    Recently i haveust published Web Photo Gallery on my website.
    It looks good in Safari and Firefox. But when viewed in Internet Explorer it's totally different layout. Thumbnails are shifted to the middle of the frame, and it is not a pretty sight.
    Can't find the way to fix it...
    here is the link
    http://www.exornocreations.com/html/gallery/pendants/PENDANTSindex.html
    If someone here has a clue how to go about it and wants to share a good tip i would be eternally grateful.
    Many thanks,
    Karmela

    >There are more browsers than just IE that will have trouble with this page.
    Which ones?
    I am currently building a site for a client and I have a page which should play a Movie inside an iFrame.
    My HTML includes heights and widths and is as follows (angled brackets have been removed for display purposes in the Forum):
    "iframe id="movie_play_iFrame" name="movie_play_iFrame" src="../movie/Movie-screen.gif" frameborder="0" scrolling="no" align="middle" height="269" width="398" /iframe"
    This works perfectly in the latest available version of Safari, Firefox, Netscape, AOL, and Opera.
    The only one that it does NOT work in is IE.
    In IE, the movie plays all right but it does so in a new window and not in the required position on the page (which is inside the iFrame).

  • Photo Gallery Display

    Hi there, I have created a site which includes a photo gallery, when I drag my photos into the iweb page it shows the photos in a grid format which is pretty ugly! if I double click on any one of the images the layout changes and I have small thumbnails along the top and it displays a large version of the highlighted photo, which I think looks much neater and more professional there is a button on the top left which reads 'back to album' (I don't want to go back to album because it looks ugly!). As soon as I publish the site it goes back to the horrible grid format. Is there any way I can retain the format with the small thumbnails along the top so that is always viewed in that format? .... hope that all makes sense!! Many thanks

    Once I publish the site the web gallery is in the standard grid format, when I double click on an image it changes to show the thumbnails at the top and a large version of the chosen image. What I'm looking to happen is that when I click to view my photo page it goes straight to that format rather than displaying the grid first... can this be done.... I'm using iweb as I want to keep things as simple as possible web... I'm no good with HTML, CSS all that stuff. Help a web novice out!!!

  • Photo Gallery Images Do Not Display When Uploaded

    I have made a photo gallery in Bidge, and locally, it looks fine. WHen I upload the folder to the remote server, none of the images will display.
    Everything is contained in the gallery folder, and I uploaded that folder. The web pages are displayed, but the images will not.
    On the image below, the list of local files are on the right, and the remote files are on the left.
    Please tell me what I've missed. Thanks.

    Is your photo gallery from a Collection?  Don't think those can be shared as they are  just alisis and not the image.

  • Windows Vista Photo Gallery displays incorrect colors? Photoshop?

    Hi all
    I have two PC's running Windows Vista that I work with and both have photoshop CS3 installed, but for what ever reason on one of the PC's the Windows Photo Gallery application displays really desaturated colors when views jpg's and the like (the other PC's displays them fine).
    I've googled and haven't yet found out a quality solution, lots of info on simply combining and replacing drivers and the like and nothing really set in stone from Adobe, or Microsoft etc
    Any help would be great

    Are both your monitors hardware calibrated? Is Windows Photo Gallery a fully colour managed application?
    If the answer to one or both questions is no then you cannot expect similar results.
    If the monitors are calibrated and Photoshop has identical colour settings then the images should appear similar on each computer.

  • Flash not displaying photos in Flash photo Gallery

    I have several web sites that use a flash photo gallery to display the photos. All worked until a few months ago when the photo were not displayed to users who used Mozilla Firefox, or MAC users using Safari for their browsers. The albums were blank, the thumbnails were blank. Yet if you used Google Chrome or Internet Explorer, all photos displayed perfectly. I have been to the Firefox forums and they point to Flash. I was using Flash 11.5.502.146, then I downgraded to Flash 10.3. To my surprise all photos display now on my Firefox browse V18.0. So there is definitely a problem with the newer Flash displaying photos in a flash gallery. What can be done to fix this?

    report the bug:  https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform

  • While i post photos from my gallery to Facebook it is not appearing as posted from ios

    while i post photos from my gallery to Facebook it is not appearing as posted from ios how do it do it

    http://support.apple.com/kb/HT4236 hope this article will help.

  • In windows live photo gallery it says an error is preventing the photo or video from being displayed

    in windows live photo gallery it keeps saying an error is preventing the photo or video from being displayed

    Hi Frank.
    Thanks for the response.
    Agreed, the pertinent question is why can't my colleague edit the JPG exported by Aperture. It's probably also worth pointing out, the same problem occurs with JPGs exported from iPhoto.
    The Windows software usually plays nicely with JPGs by all acounts, just not the ones I send - which I do via eMail or my public space on Mobile Me incidently.
    So, another key question is: all settings being equal (color profile, quality, etc.) are the JPGs as produced by iPhoto and Aperture indistinguishable from those produced by other apps on other platforms - i.e. does the use of JPG enforce a common standard?
    If that is the case, I suspect ours might be a permissions issue.
    According to the Microsoft support page on editing in Windows Live Photo Gallery, the inability to edit a picture is commonly caused by unsupported file type, or read-only attribute set on the file.
    Unfortunately, he and I are not in the same place, and he's not particularly au-fait with this type of problem solving. Hence, before involving him, I'd like to know:
    1. it's possible (i.e. someone else does it), and,
    2. what's involved (at my end and/or his).
    Thanks again,
    PB

Maybe you are looking for

  • Xperia Ray after ICS 4.0.3

    Hi! Yesterday I connected my RAY to PC companion for some backup, and notice that the new Android version 4.0.3. was available. I was expecting it, since we always like to have the latest features on our phones, so I did the update to the new version

  • MOSS 2007 Custom Theme Images Invisible to Users

    Hi, Our MOSS 2007 Site uses Custom Theme and the theme uses image for styling navigation background. The issue is the when a user logs in to site he is not able to view the navigation background image whereas when a user with full control logs in to

  • Java Script Error

    Saved various websites which I was researching a trip with and about a week later opened them all up and got this error. Java Script: error in konaSafe reporting   it gave me the option to click OK which I did and it repeated itself 3 times before it

  • AT USER COMMAND event in interactive reports

    hi experts, Can anyone explain me about AT USER COMMAND event with one practical ex. thanks in advance R.vijai

  • Capacity check during Planned order to production order conversion

    Hello Gurus, I have a strange situation during capacity check. While Converting the planned order to Production order, I release the order and I don't get any warning. All work centers are available But for the same material/quantity/dates, if I crea