Expose Photo Gallery: Uploading Problems Using Mac

Hello All,
First post, sorry to say it's about a problem I'm having.  I have a Joomla based website and I'm using the Expose Flash Gallery as an image gallery solution on my photography site: http://www.wakinglifephoto.com/
The plugin works great on the front end, my problem only occurs when managing albums on the backend, which is also based on Adobe's Flash Player.
Whenever I try to upload a photo on my Mac, the process stalls and never completes.  If I'm using a Windows PC, everything uploads fine.  I've talked with the people who make this gallery plugin and they say it has to do with a bug that is only found in the Mac version of Flash Player.
Is there any type of solution available for this problem, or do I have to wait and hope that it gets fixed in Flash 10.1?
TIA.

The Fascinate has SD card capability, so I would save all my photos to a micro SD card, and then use a reader to transfer them to your computer.

Similar Messages

  • What photo gallery can I use for a Mac OS X version 10.6.8 with 1GB memory?

    what photo gallery can I use for a Mac OS X version 10.6.8 with 1GB memory?

    What do you mean by photo gallery?  Are you referring to what version of the iPhoto application?  What version came with your iMac? 
    iPhoto 8.1.2 would be a good choice for that system and limited amount of memory.  It comes on the iLife 09 disc which is available from 3rd party vendors like Amazon.com or eBay.com.
    If you can add memory to your iMac do so.  Increasing memory to 4 GB will do wonders for the speed of the system and applications. 
    OT

  • Photo Gallery Demo Problem

    I'm trying to understand the Photo Gallery demo so I can
    replicate the function for use on various sites. I've copied the
    html, xml, javascript and some of the photo file elements to my
    hard drive. I initially modified the file structures to something
    more of my liking, but had some problems with the links. I've since
    mimicked the structures so I can reduce the initial errors, but I
    am stumped at the var dsGallery and var dsPhotos statements that
    dynamically link to the China, Paris and Egypt photo databases. In
    the original dynamic definition, DreamWeaver only parses the
    dsGalleries XML definition, not defining the dsGallery and dsPhoto
    nodes. I wasn't too concerned about that given the variable nature,
    but nothing except the pull-down menu and controls displayed in the
    browser. DreamWeaver shows correct parsing of the dsGalleries XML,
    dsGallery and dsPhoto nodes only when I eliminate the dynamic
    linking and set it to one of the static links (Egypt). This fails
    in the browser to link to the data, giving a display that shows the
    correct number of empty thumbnail frames but without the displayed
    photos, no Spry effects, and no large photo display. I'm sure I
    have multiple reference errors, but I don't see them. Any ideas?
    Initial Photo Demo page:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0
    Transitional//EN" "
    http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <!-- Copyright (c) 2006. Adobe Systems Incorporated. All
    rights reserved. -->
    <html xmlns="
    http://www.w3.org/1999/xhtml"
    xmlns:spry="
    http://ns.adobe.com/spry">
    <head>
    <meta http-equiv="Content-Type" content="text/html;
    charset=ISO-8859-1" />
    <title>Gallery</title>
    <link rel="stylesheet" type="text/css"
    href="../css/screen.css">
    <script type="text/javascript"
    src="../SpryAssets/xpath.js"></script>
    <script type="text/javascript"
    src="../SpryAssets/SpryData.js"></script>
    <script type="text/javascript"
    src="../SpryAssets/SpryEffects.js"></script>
    <script type="text/javascript">
    var dsGalleries = new
    Spry.Data.XMLDataSet("galleries/galleries.xml",
    "galleries/gallery");
    var dsGallery = new
    Spry.Data.XMLDataSet("galleries/{dsGalleries::@base}{dsGalleries::@file}",
    "gallery");
    var dsPhotos = new
    Spry.Data.XMLDataSet("galleries/{dsGalleries::@base}{dsGalleries::@file}",
    "gallery/photos/photo");
    </script>
    <script src="../SpryAssets/gallery.js"
    type="text/javascript"></script>
    </head>
    <body id="gallery">
    <noscript><h1>This page requires JavaScript.
    Please enable JavaScript in your browser and reload this
    page.</h1></noscript>
    <div id="wrap">
    <h1 id="albumName"
    spry:region="dsGallery">{sitename}</h1>
    <div id="previews">
    <div id="galleries" spry:region="dsGalleries">
    <label for="gallerySelect">View:</label>
    <select spry:repeatchildren="dsGalleries"
    id="gallerySelect"
    onchange="dsGalleries.setCurrentRowNumber(this.selectedIndex);">
    <option spry:if="{ds_RowNumber} == {ds_CurrentRowNumber}"
    selected="selected">{sitename}</option>
    <option spry:if="{ds_RowNumber} !=
    {ds_CurrentRowNumber}">{sitename}</option>
    </select>
    </div>
    <div id="controls">
    <ul id="transport">
    <li><a href="#" onclick="StopSlideShow();
    AdvanceToNextImage(true);"
    title="Previous">Previous</a></li>
    <li class="pausebtn"><a href="#" onclick="if
    (gSlideShowOn) StopSlideShow(); else StartSlideShow();"
    title="Play/Pause" id="playLabel">Play</a></li>
    <li><a href="#" onclick="StopSlideShow();
    AdvanceToNextImage();" title="Next">Next</a></li>
    </ul>
    </div>
    <div id="thumbnails" spry:region="dsPhotos dsGalleries
    dsGallery">
    <div spry:repeat="dsPhotos"
    onclick="HandleThumbnailClick('{ds_RowID}');"
    onmouseover="GrowThumbnail(this.getElementsByTagName('img')[0],
    '{@thumbwidth}', '{@thumbheight}');"
    onmouseout="ShrinkThumbnail(this.getElementsByTagName('img')[0]);">
    <img id="tn{ds_RowID}" alt="thumbnail for {@thumbpath}"
    src="galleries/{dsGalleries::@base}{dsGallery::thumbnail/@base}{@thumbpath}"
    width="24" height="24" style="left: 0px; right: 0px;" />
    </div>
    <p class="ClearAll"></p>
    </div>
    </div>
    <div id="picture">
    <div id="mainImageOutline" style="width: 0px; height:
    0px;"><img id="mainImage" alt="main image" /></div>
    </div>
    <p class="clear"></p>
    </div>
    </body>
    </html>
    Fixed reference version:
    <head>
    var dsGalleries = new
    Spry.Data.XMLDataSet("Graphics/galleries/galleries.xml",
    "galleries/gallery");
    var dsGallery = new
    Spry.Data.XMLDataSet("Graphics/galleries/egypt/Egyptphotos.xml",
    "gallery");
    var dsPhotos = new
    Spry.Data.XMLDataSet("Graphics/galleries/egypt/Egyptphotos.xml",
    "gallery/photos/photo");
    </script>
    Supporting files galleries.xml and Egyptphotos.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <galleries>
    <gallery base="Graphics/galleries/egypt/"
    file="Egyptphotos.xml">
    <sitename>Egypt</sitename>
    <photographer>Don Booth</photographer>
    <contactinfo>
    http://www.adobe.com</contactinfo>
    <email>[email protected]</email>
    <security><![CDATA[]]> </security>
    </gallery>
    ... duplicate China and Paris declarations
    </gallery>
    </galleries>
    <?xml version="1.0" encoding="UTF-8"?>
    <gallery
    base = ""
    background = "#FFFFFF"
    banner = "#F0F0F0"
    text = "#000000"
    link = "#0000FF"
    alink = "#FF0000"
    vlink = "#800080"
    date = "1/10/2006">
    <sitename>Egypt Gallery</sitename>
    <photographer>Don Booth</photographer>
    <contactinfo>
    http://www.adobe.com</contactinfo>
    <email>[email protected]</email>
    <security><![CDATA[]]> </security>
    <banner font = "Arial" fontsize = "3" color =
    "#F0F0F0"> </banner>
    <thumbnail base
    ="../../gallery/galleries/egypt/thumbnails/" font = "Arial"
    fontsize = "4" color = "#F0F0F0" border = "0" rows = "3" col =
    "5"> </thumbnail>
    <large base ="../../gallery/galleries/egypt/images/" font
    = "Arial" fontsize = "3" color = "#F0F0F0" border = "0">
    </large>
    <photos id = "images">
    <photo
    path = "egypt_01.jpg"
    width = "350"
    height = "262"
    thumbpath = "egypt_01.jpg"
    thumbwidth = "75"
    thumbheight = "56">
    </photo>
    </photos>
    </gallery>

    Please delete this posting. I've found the full original
    information in the v1.6 pre-release information and will compare to
    that baseline.

  • Web Photo Gallery Missing - Elements 6 (mac) - Elements 8 (pc)

    I've been asked to update a photo gallery in a website that was created with the Mac version 6 of Elements.  So I'm ready to purchase Elements version 8 for the PC and I download the trail version.  The problem is the HTML version has been replaced the FLASH, which might work okay.  But they really want the gallery format they have now, but I cannot find a similar template with the 'Shared' Online Album procedure.  It's a rather plain template, but they like it for their site.  It has a scrolling list of thumbnails on the left and the selected photo shows to the right.  There's an "Image Info" button on the bottom that pops-up a dialog of File/Title/Description/Credits/Copyright.
    If I purchase Elements 8, can I download older versions someplace?  If I have to hunt for Version 6 on eBay or elsewhere, do the PC and Mac versions 6 have the same HTML Photo Gallery templates/options?

    hey,
    the workflow is different in pse8 as compared to pse6. in pse8 if you want to create the web gallery you have option either in the File > Create Web gallery.
    i am not too sure whether you can download older version of pse from any where.
    thanks

  • Photo book uploading problem

    I have created a photo book in Elements 7 and cannot get it to upload to Kodak.  My OS is Windows 7 and I am using Noton 360 security software.  I make it through the ordering of the photo book and the uploading seems to go to completion, approximately 20 minutes for the 568MB file, but then after a pause I get a pop up message saying  "There was a problem with your internet connection.  Please check that there is not a firewall blocking Photoshop Elements from accessing the internet and that you have an internet connection."  My ISP is Verizon FiOS, I've checked the connection speed and have experienced no other internet access problems.  I have my firewall set to allow PE7 to access the internet without restriction, and have also tried uploading with the firewall disabled with the same result.  I contacted Adobe support and even agreed to the $30 charge, but they said this wasn't a Photoshop problem.  Kodak says if they don't receive the upload it isn't their problem.  I would really like to get this photo book printed (daughter's college graduation).

    Thanks for the update, Bob.  While I appreciate your efforts to resolve the issue with Kodak, I still feel there is something on my end that is not right.  I just tried to order additional copies of a photobook we did a  couple of years ago (43 pages, 147mb).  The upload process took just 10  minutes but failed with the same error message.  This was a photobook we had successfully ordered from Kodak before, using PE6 running on an older computer with a slower internet connection.
    You mentioned internet bandwidth as a determining factor, using a faster connection as a possible solution. I have a Verizon FIOS 20/5 connection, periodically test my download/upload speeds, and that's pretty much what I get.  I had reasoned that since PE7 takes like 20 minutes to upload a 300MB file there must be something else going on.  Btw, there was one particular upload speed test I just tried that failed,"probably due to a hardware or software firewall blocking the FTP protocol the test uses".  I was also not able to run this test successfully with the Norton firewall temporarily disabled.  Does the PE7 photobook upload utility use an FTP protocol?

  • Photo Gallery in Dreamweaver using Fireworks

    How do I add images to a photo gallery that I created in
    Dreamweaver using Fireworks? I created a photo gallery and I
    changed my background color and other settings, but I need to find
    any easier way to add images without messing up my settings. Each
    time I add a photo, I don't want to have to change 40+ web pages.
    Can someone please help? If there is an easier program to use, then
    I will change programs.
    Thanks for your help!

    Sorry in advance if the following comment is missing the
    point of your question.
    Ans: You need to export (>File > Export) the image that
    you have manipulated in Fireworks to an images folder in your
    dreamweaver website. You will be prompted for an optimum file
    output (JPEG, GIF etc) during this process. Then close Fireworks
    and open DW. Then place your curser at the point in the webpage
    where you want to insert the image and then select Menu > Insert
    > Image. Browse to the image that you have created in Fireworks
    and press enter. Job done! Fireworks is a fantastic s/w application
    ... and there's no need to look elsewhere.

  • Photo gallery / slideshow component using rss

    hi.. i was wondering if anyone can throw some light on this
    issue. i am thinking abt making a simple flash gallery / slideshow
    that will get info from an rss feed (either from flickr or a
    customized Gallery2.0 feed). there is already one at
    www.afcomponents.com, but their support is slow and the product
    layout is not customizable.
    so, does anyone know if another such component? or even
    better, a script that i can work on myself? any thoughts, comments
    and ideas will be greatly appreciated.
    thanks in advance,
    -V

    Hello lukeage7,
    I've done a bunch of similar galleries. Are you familiar with
    xml in Flash
    at all? The easiest way is to create an empty movie symbol on
    your stage
    and give it an instance name (placeHolder) for example.
    Create an xml file
    with a list of your image names, and then use loadMovie to
    load the first
    node's image into your placeHolder movie symbol. Then all you
    need to do
    is create a var you can increment to load the 2nd image, 3rd
    image, 4th image
    etc. I can send you a sample if you want.
    That said, I've also used this product and for the low price
    it is pretty
    robust:
    http://www.slideshowpro.net/product_ssp.php
    Jesse H.
    Adobe Community Expert
    My site:
    http://www.jharding.com
    Free Blog Radio:
    http://www.tornadostream.com
    > I am looking to make a photo gallery and want my images
    to be pulled
    > from a folder on my webserver. Does anyone know how to
    do this either
    > by a movie clip and script or by some type of components
    plug-in that
    > works well.
    >
    > I am using Flash Pro 8 and really want to put together
    and nice well
    > working photogallery with multiple images but don't want
    to embed them
    > into the flash file for file size reasons.
    >
    > Any help or general information would be a huge help.
    Thanks.
    >
    > Luke
    >

  • 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.

  • Can a Photo Gallery be created using the Meta Data with a Widget or Lightroom ?

    I want to create a website with a bunch of photo galleries, but I have to have the Titles and Descriptioins from the Meta data used. 
    Can Muse import Lightroom Photo Gallery's web pages?
    Or, Is there a widget to do this?

    So your saying import a Gallery from Lightroom using Muse's slideshow widget, which ignores titles/descriptions? 
    I'm finding it very difficult to understand why Muse would not use this information as it clearly shows the File Names in Asssets.
    The workflow seems simple: Take A picture, Bring it into Lightroom, Adjust and enter WHAT it is with Titles and Descriptions, use it ALL in a website.
    I've got some 500 photos.
    Re-entering Titles/Description information everytime it's used in a website is not something anybody should have to do.
    Please help, there has to be a better way to do this.
    I'm eager to buy Adobe's product to do this if it can be done.
    Adobe is too smart to leave out something so simple with MUSE.

  • Photo gallery navigation problem

    i have a photo gallery up on page http://paradisembc-dallas.org/gallery.html that is giving me the blues as far as navigation. i can't go back to images i've already viewed. any assistance would be greatly appreciated.

    what code are you using that's failing?  copy and paste only the relevant code, not all the code used in your app.

  • Resizing Photos Aspect Ratio Problem Using Contraints

    I am a photographer trying build a portfolio website.  I want my pictures to be as large as possible for the screen on which they are viewed. I am using Flash Catalyst CS 5.5 with Mac OS X Lion.  The problem I am facing when using the new constraint feature is that the aspect ratio of the pictures changes based on the size of browser.  How can I have the photos maintain a consistent aspect ratio while still growing/shrinking with the size of the screen/browser?

    In DV, both 4:3 and 16:9 material are the same number of pixels - 720x480. The difference is in the shape of the pixels. In FCP, unless the material is marked as anamorphic, it will assume the 4:3 aspect ratio.
    If the original material was 16:9, when you import it into FCP, make sure
    1) the sequence is set for 16:9 anamorphic and
    2) you put a checkmark in the ANAMORPHIC column for the clip in the browser.
    x

  • Photo element 12 problem with Mac os X

    After few manipulations, my dialogues box are empty and it is impossible to save the work in progress. I need to stop Photo element 12 and i lose my work. I use an Intuos 4 Wacom palet. I you ave  an idea to solve the problem, Many tanks
    C.dhugues

    Also, adobe has a special plugin for photoshop for that issue:
    (update the wacom drivers first before trying the plugin)
    http://feedback.photoshop.com/photoshop_family/topics/photoshop_menus_become_completely_bl ank
    http://helpx.adobe.com/photoshop/kb/photoshop-menus-turn-white-mac.html

  • Web gallery upload problem - the server switched to FTPS and now Bridge CS6 won't recognize it.

    I use Bridge CS6 on a Mac to create & upload web galleries directly to my website. My web server just changed and they no longer support FTP, only FTPS. When I try to upload a web gallery now, Bridge gives me the message that my username/password is incorrect. I have tested the server and can connect via Fetch so I know that it's possible to connect to the server. Is there anywhere in Bridge that allows you to change the FTP settings to allow it to recognize the FTPS? I cannot seem to find any information, I feel like there should be a simple fix and I'm probably overlooking it. Any help would be greatly appreciated!!

    Fondation RetroActif wrote:
    I Have a Master collection license. Is there a possibility to install Bridge separately ? There is no option to install it separately during the install process :-/
    Bridge is not a seperate program.  It is part of Photoshop.  That is why some users have to  launch Bridge the first time from PS to make it work. 
    Not familliar with the Suite, but if there are other applications where you can launch Bridge from the program try it.
    Also, make sure you have uninstalled any Adobe trials that may cause a conflict with permissions.

  • Suggestion for a photo gallery upload solution...

    Hi All
    i want to add a section to a site that allow users to
    register and then
    upload photos to a gallery.
    i needs to allow for a little bit of styling and have file
    size upload
    limits, ect.
    can anyone suggest / recomend either an DW extension or other
    third party
    software that would do this.
    thanks for any input
    as ever
    keen to learn,,

    On Fri, 12 Oct 2007 10:10:43 +0100, "Keen to Learn"
    <[email protected]> wrote:
    >Hi All
    >
    >i want to add a section to a site that allow users to
    register and then
    >upload photos to a gallery.
    >
    >i needs to allow for a little bit of styling and have
    file size upload
    >limits, ect.
    >
    >can anyone suggest / recomend either an DW extension or
    other third party
    >software that would do this.
    If you Google you'll find lots of them. Here's one that
    springs to
    mind:
    http://gallery.menalto.com/
    Steve Fleischer
    steve at flyingtigerwebdesign dot com
    Hong Kong

  • Photo stream upload problem

    I have tried this in iPhoto and Aperture, but my photo stream is not uploaded. All the photos are visible in WEB/Photostream, but they don't appear on my iOS devices.
    And when I want to make these photos public in Aperture, to make them visible for anyone, the √ vanishes a second after I hit the checkbox.
    Flickr stream pix do not show up either although the account looks OK.
    Looks as if something was blocking Aperture's traffic, but I have nothing of that kind installed. In System Settings, Photo Stream is enabled, of course.
    Thanks a lot for a good idea!
    Peter

    I understand that.  The problem is that the photos stay put on Photo Stream on the iPhone after being removed from Photo Stream in iPhoto.  Once a photo reaches it's "due date" it should be removed from iCloud and subsequently from all synchronised devices.  This does not happen, it is removed from some but not others.  Right now I have 243 photos on iPhoto Stream and 271 in iPhone stream.  How come?

Maybe you are looking for

  • 10.4.7 Runs Slow, Spinning Beach Ball, "kass" takes over system

    To the helpful frequenters of this forum: Since installing Tiger and updating to 10.4.7 recently, I have experienced some major system slow downs on my computer. I am running a Titanium Powerbook G4 with 512MB RAM and 12GB free (from a 60GB hard driv

  • Deleting word deletes space before it as well

    I don't know if this has always been the case, but I've only just started to notice it and it is frustrating the **** out of me. In pages on the iphone and iPad, if I delete all the letters in the word, the space before the word automatically gets de

  • Cash Sales - Acc.Seq - Acct Key error

    Hi! I'm doing the Cash Acct Detmn, where the acc.seq. is having only to table 004 & 009. I reqd a Acctkey table in that acc.seq. So, used table 005 which has Sal Org and acct key. But when activating the fields, the Acct key is showing error as the f

  • Static methods in startup class

    I have declared few static methods in startup class. What will happen           once startup class is executed in cluster environment, will the access           to those static methods be clustered and replicated across the           clusters. How ex

  • Strange Box's And Wanting To Reset Keys

    Hello, Im having an little problem with strange box's appealing where my curser is. It happens on all applications, Safari, Mail, Messenger ect. If I also go to scroll the page down the box follows it and messes up the screen. Screen shots, So you kn