Web Gallery - default icon when viewing

I would like to know why I have default image "clown fish" used for my posted web gallery albums. Shouldn't there be a image selected from the ablum(s).

MJC:
Welcome to the Apple Discussions. On password protected galleries only the default image is possible. That's part of the privacy feature. On non password protected galleries just drag the image you want for the default icon onto the icon next to the gallery title in iPhoto and republish.
Do you Twango?
TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto 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), 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 08 libraries 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.

Similar Messages

  • Apple Web Site Default Icon, Gone..

    Hi There,
    I seem to have tossed my Apple Web Site Default Icon..
    I remember seeing the puff of smoke which means I moved it a little to far, and now I'd like to get it back.
    You know the one, it looks like an A, or an @ on a spring or something..
    Any help would be great..
    Thanks,
    Eric

    Hi Eric
    you can make a new one for any website, not just Apple's....while you're on the webpage you want, click & drag the icon in the address to the dock, the area near the trash where your original one was.
    These 'web internet locations' can also be dragged to the desktop, or any folder you want.
    see this apple doc

  • What is the bottom centre icon when viewing an open email iphone 5

    What is the bottom centre icon when viewing an open email iphone 5

    Uncadon,
    Sounds like a Gmail archive icon. "When you archive a message, it moves to the All Mail folder. It does not delete it from the Gmail account. Archive replaces all delete options when using a Gmail account, including using the Trash icon while viewing a message and selecting Edit to manage multiple messages. You can disable this feature in Settings > Mail, Contacts, Calendars > Gmail Account > Archive Messages:"

  • Web gallery default view

    The default view upon open a web gallery is "Grid". I'd like to change it to "Mosaic". Can this be done?

    No. That's controlled by server side software.
    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.

  • The Output panel in cs 6, giving choice between pdf or Web gallery, is missing when I click on the Output workspace.  How do I get it back?

    Anybody know how to manage this?  I have never had this problem before.  There is a blank space where I used to be able to choose between Web gallery and PDF

    I ended up doing the exact same thing and was just as surprised when it worked. Seems backwards and counterintuitive, and it's probably a big glitch somewhere in iOS5 and/or iTunes, but it did work.
    Now, however, I have a new problem. I have a Bluetooth-enabled Garmin nuvi 2360 GPS I use in my car for hands-free calling with the iPhone. Never had any problems with connecting until after the restore last night. Now, even tho the iPhone is discoverable and attempts to connect, it always fails. Anyone know if there are issues with the Bluetooth capabilities of the phone with iOS5? I'm almost paranoid to try and sync the phone or shut it down again in case it craps out again. May take it to the Apple Store, but I've got a feeling they'll either tell me there's nothing they can do or that I have to buy a new phone, and I just can't do it right now.

  • Icon was changed to default icon when editting a node on JTree

    I have a tree with icon on nodes. However, when I edit the node, the icon is changed to default icon.
    I don't known how to write the treeCellEditor to fix that one.
    The following is my code:
    package description.ui;
    import java.awt.BorderLayout;
    import java.awt.Component;
    import java.awt.Dimension;
    import java.awt.event.ActionEvent;
    import javax.swing.ImageIcon;
    import javax.swing.JFrame;
    import javax.swing.JScrollPane;
    import javax.swing.JTree;
    import javax.swing.ToolTipManager;
    import javax.swing.WindowConstants;
    import javax.swing.tree.DefaultMutableTreeNode;
    import javax.swing.tree.DefaultTreeCellEditor;
    import javax.swing.tree.DefaultTreeCellRenderer;
    import javax.swing.tree.DefaultTreeModel;
    import javax.swing.tree.TreePath;
    import javax.swing.tree.TreeSelectionModel;
    public class Tree extends javax.swing.JPanel {
         private JTree tree;
         private JScrollPane jScrollPane1;
         public static void main(String[] args) {
              JFrame frame = new JFrame();
              frame.getContentPane().add(new Tree());
              frame.setDefaultCloseOperation(WindowConstants.DISPOSE_ON_CLOSE);
              frame.pack();
              frame.show();
         public Tree() {
              super();
              initGUI();
         private void initGUI() {
              try {
                   BorderLayout thisLayout = new BorderLayout();
                   this.setLayout(thisLayout);
                   setPreferredSize(new Dimension(400, 300));
                    jScrollPane1 = new JScrollPane();
                    this.add(jScrollPane1, BorderLayout.CENTER);
                        DefaultMutableTreeNode rootNode = createNode();
                        tree = new JTree(rootNode);
                        tree.getSelectionModel().setSelectionMode(TreeSelectionModel.SINGLE_TREE_SELECTION);
                        jScrollPane1.setViewportView(tree);
                        ToolTipManager.sharedInstance().registerComponent(tree);
                        MyCellRenderer cellRenderer = new MyCellRenderer();
                        tree.setCellRenderer(cellRenderer);
                        tree.setEditable(true);
                        tree.setCellEditor(new DefaultTreeCellEditor(tree, cellRenderer));
                        //tree.setCellEditor(new MyCellEditor(tree, cellRenderer));
              } catch (Exception e) {
                   e.printStackTrace();
         private void btRemoveActionPerformed(ActionEvent evt) {
             TreePath path = tree.getSelectionPath();
             DefaultMutableTreeNode selectedNode = (DefaultMutableTreeNode)path.getLastPathComponent();
             ((DefaultTreeModel)tree.getModel()).removeNodeFromParent(selectedNode);
         private DefaultMutableTreeNode createNode() {
             DefaultMutableTreeNode rootNode = new DefaultMutableTreeNode("Doc");
             DefaultMutableTreeNode ch1 = createChuongNode(rootNode, "Ch1");
             DefaultMutableTreeNode ch2 = createChuongNode(rootNode, "Ch2");
             createTextLeafNode(ch1, "title");
             return rootNode;
         private DefaultMutableTreeNode createChuongNode(DefaultMutableTreeNode parent, String name) {
             DefaultMutableTreeNode node = new DefaultMutableTreeNode(new ChapterNodeData(name));
             parent.add(node);
             return node;
         private DefaultMutableTreeNode createTextLeafNode(DefaultMutableTreeNode parent, String name) {
             DefaultMutableTreeNode node = new DefaultMutableTreeNode(new TitleNodeData(name));
             parent.add(node);
             return node;
          private class MyCellRenderer extends DefaultTreeCellRenderer {
                 ImageIcon titleIcon;
                 ImageIcon chapterIcon;
                 public MyCellRenderer() {
                     titleIcon = new ImageIcon(getClass().getClassLoader()
                            .getResource("description/ui/icons/Text16.gif"));
                     chapterIcon = new ImageIcon(getClass().getClassLoader()
                            .getResource("description/ui/icons/Element16.gif"));
                 public Component getTreeCellRendererComponent(
                                     JTree tree,
                                     Object value,
                                     boolean sel,
                                     boolean expanded,
                                     boolean leaf,
                                     int row,
                                     boolean hasFocus) {
                     super.getTreeCellRendererComponent(
                                     tree, value, sel,
                                     expanded, leaf, row,
                                     hasFocus);
                     if (isChapterNode(value)) {
                         setIcon(chapterIcon);
                         setToolTipText("chapter");
                     } else if (isTextLeafNode(value)) {
                         setIcon(titleIcon);
                         setToolTipText("title");
                     return this;
                 protected boolean isChapterNode(Object node) {
                     return ((DefaultMutableTreeNode)node).getUserObject() instanceof ChapterNodeData;
                 protected boolean isTextLeafNode(Object node) {
                     return ((DefaultMutableTreeNode)node).getUserObject() instanceof TitleNodeData;
          private class MyCellEditor extends DefaultTreeCellEditor {
                 ImageIcon titleIcon;
                 ImageIcon chapterIcon;
              public MyCellEditor(JTree tree, DefaultTreeCellRenderer renderer) {
                  super(tree, renderer);
                  titleIcon = new ImageIcon(getClass().getClassLoader()
                         .getResource("description/ui/icons/Text16.gif"));
                  titleIcon = new ImageIcon(getClass().getClassLoader()
                         .getResource("description/ui/icons/Element16.gif"));
              public Component getTreeCellEditorComponent(
                           JTree tree,
                           Object value,
                           boolean isSelected,
                           boolean expanded,
                           boolean leaf,
                           int row) {
                  super.getTreeCellEditorComponent(tree, value, isSelected, expanded, leaf, row);
                  return this.editingComponent;
          abstract class NodeData{
              String name;
              public NodeData(String name) {
                  this.name = name;
              public String getName() {
                  return name;
              public void setName(String name) {
                  this.name = name;
              public String toString() {
                  return name;
          class ChapterNodeData extends NodeData {
              public ChapterNodeData(String s) {
                  super(s);
          class TitleNodeData extends NodeData {
              public TitleNodeData(String attr) {
                  super(attr);
    }

    Arungeeth wrote:
    I know the name of the node... but i cant able to find that nodeHere is some sample code for searching and selecting a node:
        TreeModel model = jtemp.getModel();
        if (model != null) {
            Object root = model.getRoot();
            search(model, root, "Peter");//search for the name 'Peter'
            System.out.println(jtemp.getSelectionPath().getLastPathComponent());
        } else {
            System.out.println("Tree is empty.");
    private void search(TreeModel model, Object o, String argSearch) {
        int cc;
        cc = model.getChildCount(o);
        for (int i = 0; i < cc; i++) {
            DefaultMutableTreeNode child = (DefaultMutableTreeNode) model.getChild(o, i);
            if (model.isLeaf(child)) {
                TreeNode[] ar = child.getPath();
                String currentValue = Arrays.toString(ar);
                if (currentValue.contains(argSearch)) {
                    jtemp.setSelectionPath(new TreePath(ar));
            } else {
                search(model, child, argSearch);
    }

  • Published video to mobile me web gallery how do I view on iphone?

    I made a video in imovie and published the video onto my mobile me web gallery. How do I view this video on my iPhone?

    Hey rmccv,
    This article will walk you through the process.
    http://docs.info.apple.com/article.html?path=iMovie/7.0/en/14132.html
    Basically, you'll publish the video and then visit your web gallery. You can click the visit gallery button after publishing or go to http://gallery.me.com/<your username here>
    Jason

  • Imovie on web gallery people can't view

    I have one small imovie on my web gallery.
    One person on a pc said he 'couldn't download ' it..? I told him he needs IE 7 is this correct?
    Another person said she can't view because it said she needed quicktime 2??
    why can't all these pc people watch? Won't be good for my business.....
    http//gallery.mac.com/photolight1

    A Windows XP or Vista user will need Safari 3 or later, Firefox 2 or later, or Internet Explorer 7.
    They will also need the most current version of Quicktime Player, which is available free. If they have iTunes, they may already have QuickTime Player.

  • Docx file association is set up correctly but does not display Word icon when viewing in Explorer

    Problem with MS Word as part of MS Office 2007 Professional Plus running on Windows 7.
    When I view a folder in Windows Explorer all docx files show up with a plain white icon, not a Word icon. I have done the following:
    Start > Control Panel > Default Programs > Associate a file type or protocol with a program.
    Then scrolled down the display and selected the docx extension - it already shows as Microsoft Office Word - clicked on Change Program, reset the program to WordPad, then back in the display clicked on the Change Program icon again. This tiime I reset it
    to Microsoft Office Word.
    However when I go back into Explorer the icon has not changed. Even if I close it down and restart it again. And even after a reboot.
    Also, I have checked the individual properties of the docs files, using Explorer, and they do say Open With Microsoft Word. So no problem there either.
    Any suggestions welcome as to how to change it so the icon displayed is Word not blank.

    Hi orchestrand,
    I have the same problem as you and after searching for a day for a definitive solution, i have found this one that works on another forum located here: http://www.sevenforums.com/tutorials/49819-icon-cache-rebuild.html
    The reason seems to be that icons stored have for some reason disappeared (inexplicably?). The solution is also stupidly simple after i've tried every suggestion in this thread.
    1) go to start menu and search for: cmd
    2) right click on cmd and choose "run as administrator" (--> this causes command line to change from C:\users\<account name> to change to: C:\windows\system32).
    3) turn off everything you are doing after saving your work because now you will be closing explorer.exe
    4) in the command line enter each command separately and with enter following each line
    taskkill /IM explorer.exe /F
    CD /d %userprofile%\AppData\Local
    DEL IconCache.db /a
    shutdown /r
    5) after the restart, everything should be back to normal.
    This is a complete fix for the problem and not a work around and I can verify that it worked for me. Good luck all.
    also, this is a repost, but i think we have the same problem

  • Defaulting fonts when viewing DPS articles in Adobe Content Viewer

    Hi.
    My fonts are defaulting throughout my folio when I view articles in Adobe content viewer.
    This folio is a PDF. I have published before and not had this issue.
    Is the problem with Content Viewer?
    Will the type display correctly when I publish this folio and view in app?
    Thank you.

    When a font is missing or unlinked that font shows up as a default font.
    The fonts in these documents are not missing or unlinked.
    When I update the article it fixes the problem, but only temporarily.
    The fonts default the next time I view the article.

  • How can I permanently "reset toolbars to default settings" when viewing pdfs in Firefox?

    Just upgraded to version 8.0.1. My job includes a fair amount of searching and printing from PDFs that have been published on the web. The standard toolbar at the top of the PDF is gone. I hit Alt-F8 to get it back ("Restore toolbar to default settings?"). Sometimes the toolbar comes back, sometimes it doesn't. If it does come back, the available buttons don't reflect how I customized it last time, and the next time I open a PDF the toolbar is gone again. I need this fixed !!ASAP!! or I have to go back to another browser because I don't have time in the day for this. Please don't make me use IE!!!

    sounds like malware fallout
    Have you recently installed any software infected with''' OpenCandy malwar'''e? If you saw any ads DURING installation you might have used malware
    these fine people will help you identify-, and remove malware at ZERO COST
    http://www.bleepingcomputer.com

  • MS Access 2013 Web App script error when viewing datasheet view

    Hi--in MS Access 2013 on my PC (Win 7 64), whenever I hit VIEW+DATASHEET, I get a script error. I have tried multiple solutions, including one posted here to delete all of the files in the DatabaseCache folder. Here's a screenshot of the error I get:
    This forum won't let me attach a screenshot, so here's what the error says:
    =============================================
    An error has occured in the script on this page
    Line: 5
    Char; 1
    Error: Syntax Error
    Code: 0
    URL: https://rainbowcityband-fc0dbfcf70da72.sharepoint.com/_layouts/15/Menu.htc
    Do you want to continue running scripts on this page?
    =============================================
    The data shows fine once in my browser, but has never appeared for any table on my PC. 
    Thanks!

    Hi Ginger Rowe,
    Is the issue occured on the specific view?
    Based on my understanding, the issue seems relative to script. Please check whether there are 'OnLoad' and 'On Current' action for the view and ensure it is correct.
    We can check it from Access like figure below:
    Regards & Fei
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Web Gallery created in Bridge not displaying first picture correctly on a Unix server

    Hi Guys, Am really stumped by a problem that has surfaced after moving from a Windows web hosting server to a Unix hosting platform. The Web Galleries created in both Bridge CS4 and CS6 display and operate as expected on the Windows server. However, having moved to a Unix hosting platform, I observe an odd behavior when going to the Web Gallery page. When the gallery loads, it displays the first image offset. This is always the top left hand quarter of the picture, offset to show in the bottom left hand corner, leaving the top left and right quarters and the bottom left quarter black (I use quarters to best describe the situation, though it really does seem as if the view port of the Gallery is indeed quartered for this first image).
    If I click on the second image in the series, it appears full size. The same happens if I click on the "Play" button. If I return to the first image manually, it displays full size.
    The phenomenon is apparent in Firefox 19.0.2, IE9, Opera and Chrome, all of the latest build.
    Can anyone throw some light on why this phenomenon is occurring and better still, suggest a cure?
    Grateful for all and any help anyone can give.
    Cheers, Daviddhg

    Hi Guys, This turned out to be a Unix server-side issue. Apparently the compression software being used by the ISP on this server was in some way incompatible. The ISP turned the compression off and the problem was cured.
    Cheers, Daviddhg

  • Web Gallery in iWeb Doesn't Behave Like Standalone Gallery

    From iPhoto I published a web gallery of four albums. When you go to the web gallery the four albums appear. The key photo of each album is displayed. If you move your cursor you can skim.
    If I add a page in iWeb and then select Insert Web Gallery and add the galleries each album starts a mini slide show. There is a small black box that flickers on each album icon. When you go to the web album page each web gallery album icon is playing the slideshow. Which is not consistant the way the standalone web gallery works.
    Here is the link to the web gallery
    http://gallery.mac.com/kjritchie#gallery
    Her is the link to the iWeb page
    http://web.mac.com/kjritchie/Site/Web_Gallery.html
    When working in iWeb this motion eats up CPU. I don't remember iWeb doing this a while ago. Is this due to 10.4.11?
    Thanks for any advice.
    Kelvin

    That seems to be the way it is. Albums added to an Album page are static except for skimming and the iPhoto galleries added via the Web Widget feature are dymanic. It appears to be determined by what application creates the entity, iPhoto for the web gallery and iWeb for the album.
    This site has both types side by side and show the difference that you're referring to.
    OT

  • Web Gallery / Mobile Me - issues with IE 6?

    Hi,
    I have uploaded my latest set of photos on the web gallery. But when I want to see the web gallery with IE6, it says - "We recommend a newer browser" and it lists the three browsers - IE7, FF 1.5 or higher and safari 3.0 or higher. There is a button that says Use current browser and a checkbox that says "do not warn me again". Even if I click the checkbox, the browser does not load the gallery page.
    Do we really need IE7 now to view gallery? I do have FF and that seems to work fine, but my folks are still very IE savvy.
    Is this a bug or is this expected? At least the browser should continue loading the page, even after you check the "Don't warn me again" checkbox and click on the "Use current browser" button.
    Anyone else seeing this issue?
    Thanks,
    Abhi

    I haven't seen much on Mobile me yet - here is the apple page for mobile me on a PC - http://www.apple.com/mobileme/features/pc.html - and in the upper right hand side there is a link to the tutorials - you might get more information there
    We recommend a newer browser" and it lists the three browsers - IE7, FF 1.5 or higher and safari 3.0 or higher.
    This sounds like a design not a bug
    LN

Maybe you are looking for

  • Use of express in hotels?

    When a hotel gives you an Ethernet Jack is it a no brainer to plug wireless into that? I live in a high rise that assigns a static private ip address and it works fine in the configuration so is a hotel setup likely to be similar?

  • Album shuffle has stopped working

    My 2nd gen nano has stopped shuffling albums. It used to do that just fine but then stopped for no apparent reason. I have reset the iPod, cleared and restored it all to no avail. Repeat is not on. It won't shuffle songs either. It is otherwise compl

  • IPhoto album backups and duplicate photos

    Hello, After uprading to iPhoto 6, I went through the whole library and put it all into about 15 separate albums. I've only got about 2000 photos, but it was still a lot of work. After I had done this, I started making a calendar, which for some stra

  • Apple Talk won't activate

    I have an iMac G3, 400 MHz, 192 MB, running 10.2.8. My printer is a LaserWriter 4/600PS. It is connected to the computer by an AsanteTalk switch which allows me to use the ethernet port for Apple Talk. I have a G5 with an HP printer which I usually u

  • Creating entries in a database table

    I have created a database table and want to insert new records in it thru this path - Utilities --> Table contents - > Create entries. But the create entries is not highlighted i.e. the system is not allowing me post entry in this way. Any idea why i