IWeb problem lost "button"

I have lost my Archive button on my blog, how can I find it again?

janemci wrote:
If I get this old site back into IWeb...
Jane ~ It's not clear to me what the situation is. Do you have two iWeb Domain files on the same Mac? ...If so, it's okay to keep them separate (in their own folder) and open each as needed by double-clicking. By the way, for searching purposes it may be useful to know that an iWeb '06 Domain file is called "Domain.sites" and iWeb '08 & '09 Domain files are called "Domain.sites2" — although the “.sites” extension is usually invisible.
It's also possible to merge multiple Domain files into one — see this old beta software called iWebSites:
http://mistergregg.com/cocoadrillosoftware/iWebSites/
Post back with more info about what Domain files you have and where they're located and perhaps someone here will chip in with some good advice. But whatever you decide to do, first make backup copies of your Domain files — just in case.

Similar Messages

  • 4th gen itouch lost  button in contacts.Anyone else seen this problem?

    4th gen itouch lost +button in contacts after ios5 upgrade.Help?

    SOme users have reported that their screen has come a little loose but very few.
    Try fixing it yourself
    iPod Touch Repair – iFixit

  • Problem placing buttons on top of a background image

    My knowledge of Java isn't the greatest and I am currently having problems placing buttons on top of a background image within a JApplet (this is also my first encounter with Applets).
    I'm using a Card Layout in order to display a series of different screens upon request.
    The first card is used as a Splash Screen which is displayed for 5 seconds before changing to the Main Menu card.
    When the Main Menu card is called the background image is not shown but the button is.
    While the Applet is running no errors are shown in the console.
    Full source code can be seen below;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.net.*;
    // First extend JApplet
    public class WOT extends JApplet {
         //--------------- Variables are declared here -----------------
         private CardLayout contentCardLayout = new CardLayout();  // declare CardLayout
         private Container contentContain;     // declare content Container
         private JPanel contentCard, splashScreen, mainMenu, menuImage; // declare content Panels
         private JLabel splash, menu, map; // declare image labels
         private ImageIcon mapBtn; // declare ImageIcons
         private JButton mapOption; // declare option Buttons
         private Timer timer; // declare Timer
         private ActionListener actionListener, mapOptionListener; // declare ActionListener
    //--------------- Initialise Applet -----------------
      public void init() {
         //--------------- Set-up Card Layout -----------------
         contentCard = new JPanel(contentCardLayout); // assign card panels to CardLayout
         //--------------- Splash Screen -----------------
         splashScreen = new JPanel();
         splash = new JLabel(new ImageIcon(getClass().getResource("img/bg.gif")));
         splashScreen.add(splash);
         splashScreen.setSize(600,800);
         splashScreen.setLocation(0,0);
    //--------------- "View Map" Option Button -----------------
         mapBtn = new ImageIcon(getClass().getResource("img/map.gif"));
         mapOption = new JButton(mapBtn);
         mapOption.setBorder(null);
         mapOption.setContentAreaFilled(false);
         mapOption.setSize(150,66);
         mapOption.setLocation(150,450);
         mapOption.setOpaque(false);
         mapOption.setVisible(true);
    //--------------- Main Menu Screen -----------------
         //menuImage = new JPanel(null);
         //menuImage.add(mainMenu);
         //menuImage.setLocation(0,0);
         mainMenu = new JPanel(null);
         menu = new JLabel(new ImageIcon(getClass().getResource("img/menu.gif")));
         menu.setLocation(0,0);
         mainMenu.add(menu);
         //mainMenu.setBackground(Color.WHITE);
         mainMenu.setLocation(0,0);
         mainMenu.setOpaque(false);
         //mainMenu.setSize(150,66);
         mainMenu.add(mapOption);
         //--------------- Map Image Screen -----------------
         map = new JLabel(new ImageIcon(getClass().getResource("img/map.gif")));
         //--------------- Add Cards to CardLayout Panel -----------------
        contentCard.add(splashScreen, "Splash Screen");
         contentCard.add(mainMenu, "Main Menu");
         contentCard.add(map, "Map Image");
    //--------------- Set-up container -----------------
          contentContain = getContentPane(); // set container as content pane
          contentContain.setBackground(Color.WHITE); // set container background colour
           contentContain.setLocation(0,0);
           contentContain.setSize(600,800);
          contentContain.setLayout(new FlowLayout()); // set container layout
           contentContain.add(contentCard);  // cards added
           //--------------- Timer Action Listener -----------------
           actionListener = new ActionListener()
                    public void actionPerformed(ActionEvent actionEvent)
                             //--------------- Show Main Menu Card -----------------
                             contentCardLayout.show(contentCard, "Main Menu");
         //--------------- Map Option Button Action Listener -----------------
           mapOptionListener = new ActionListener()
                    public void actionPerformed(ActionEvent actionEvent)
                             //--------------- Show Main Menu Card -----------------
                             contentCardLayout.show(contentCard, "Map Image");
         //--------------- Timer -----------------               
         timer = new Timer(5000, actionListener);
         timer.start();
         timer.setRepeats(false);
    }Any help would be much appreciated!
    Edited by: bex1984 on May 18, 2008 6:31 AM

    1) When posting here, please use fewer comments. The comments that you have don't help folks who know Java read and understand your program and in fact hinder this ability, which makes it less likely that someone will in fact read your code and help you -- something you definitely don't want to have happen! Instead, strive to make your variable and method names as logical and self-commenting as possible, and use comments judiciously and a bit more sparingly.
    2) Try to use more methods and even classes to "divide and conquer".
    3) To create a panel with a background image that can hold buttons and such, you should create an object that overrides JPanel and has a paintComponent override method within it that draws your image using the graphics object's drawImage(...) method
    For instance:
    an image jpanel:
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.image.BufferedImage;
    import java.io.File;
    import java.io.IOException;
    import java.net.URISyntaxException;
    import java.net.URL;
    import javax.imageio.ImageIO;
    import javax.swing.JButton;
    import javax.swing.JPanel;
    public class BackgroundImage
        // **** this will have to be changed for your program:
        private static final String IMAGE_PATH = "../../m02/a/images/Forest.jpg";
        private BufferedImage myImage = null;
        private JPanel imagePanel = new JPanel()
            @Override
            protected void paintComponent(Graphics g)
            {   // *** here is where I draw my image
                super.paintComponent(g);  // **** don't forget this!
                if (myImage != null)
                    g.drawImage(myImage, 0, 0, this);
        public BackgroundImage()
            imagePanel.setPreferredSize(new Dimension(600, 450));
            imagePanel.add(new JButton("Foobars Rule!"));
            try
                myImage = createImage(IMAGE_PATH);
            catch (IOException e)
                e.printStackTrace();
            catch (URISyntaxException e)
                e.printStackTrace();
        private BufferedImage createImage(String path) throws IOException,
                URISyntaxException
            URL imageURL = getClass().getResource(path);
            if (imageURL != null)
                return ImageIO.read(new File(imageURL.toURI()));
            else
                return null;
        public JPanel getImagePanel()
            return imagePanel;
    }and an applet that uses it:
    import java.lang.reflect.InvocationTargetException;
    import javax.swing.JApplet;
    import javax.swing.SwingUtilities;
    public class BackgrndImageApplet extends JApplet
        @Override
        public void init()
            try
                SwingUtilities.invokeAndWait(new Runnable()
                    @Override
                    public void run()
                        getContentPane().add(new BackgroundImage().getImagePanel());
            catch (InterruptedException e)
                e.printStackTrace();
            catch (InvocationTargetException e)
                e.printStackTrace();
    }

  • Problem in button

    hi,
    at present i am working in oracle forms
    in that while i am running the form, in the MDI window max,min,close button will appear,
    my problem is i don't want that button ,that buttons should not appear while running
    what to do for that

    hi
    pls..do not post the same quetion multiple times
    follow the link
    problem in button
    thanks
    Kris

  • Can anyone help me with an iWeb problem? I cannot save the site after making changes. I receive this error: "website.sites2 could not be saved"

    Can anyone help me with an iWeb problem? I cannot save the site after making changes. I receive this error: "website.sites2 could not be saved"

    You could try duplicating the Domain.sites2 file and launch this in iWeb. Delete the last page you edited and try saving. If that doesn't work, undo and try deleting another and so on...
    If you can find the problem page you would only have to rebuild it rather than the whole site.
    The other possibility is to create a new site on the same domain file and drag each page in turn down to it from the top site and try to save each time.

  • Strange solution to problem of buttons dissappearing in Encore 2.0

    I've pulled my hair over a problem with buttons dissappearing at preview. They are nice looking in the menu window, I can route them and so on, but when previewing they simply dissappear, or sometimes become partly visible, or sometimes become displaced.
    Now, I found that one solution to this is to place a new button in the menu, possibly onto the same place as another button already there. Then a immediately remove the newly placed button. After that problem seems solved, at least until I move or handle my buttons again. Might someone explain how this is possible? What in Encores internal workings can explain this? Deleting the cache folder didn't solve it. mind you.
    Regards,
    Nikolaj

    I have not analyzed the buttons in PS. How do I do that? I'll have to export the buttons as PS-files first, right?
    You are correct. Just use Edit in Photoshop, and the program will launch, and then Open your Menu.
    Once in PS, you will want to make sure that the Layers Palette is Open and visible. You will see several Layer Sets. Most will be your Buttons. When you click on the little triangle, at the left-side of the Button Layer Set, it will "twirl-down" all of the included Layers. Note that the Button Layer Sets, and each enclosed Layer will have some odd names. The first several characters in those names are VERY important. These MUST be correct, for the PSD file to function as a Menu.
    Also, don't worry about any mis-steps. That comes from not knowing the program yet.
    Take note that just because I have not encountered a problem with EncoreDVD 2.0, does not mean that it does not exist. I have done many, many Projects, and burned many successful discs, but then I do things the same exact way for each Project. Pretty boring, I will admit, but if it works, then I have few reasons to change anything.
    Now, I do get to exercise my artistic side with the Menus and the navigation, but the rest of it is rather "by the numbers."
    One note on Edit in Photoshop: this operation will create a TMP file of your Menu. It is THAT file, that is Opened. Look at the name. It'll be rather cryptic. When you make a change, in PS, and hit Save (Ctrl+S), those changes are transferred back to Encore. Do not do a Save_As, unless you have a good reason to do so, or Encore will still have the old Menu, and it will not update.
    Also, there are instances, where a simple Save does NOT update Encore. Through trial and error, I have found that if one does three (3) Saves, this gets past whatever that glitch is. Normally, I just use Ctrl+S, at least 3x, during the editing process, whether I have any indication that the Save is not working, as it should. It has now become habit for ALL Menus in my workflow, though the problem seems to only happen about 1:8 Menus.
    Good luck,
    Hunt
    PS - If you have any questions on your Menu and your Button Layer Sets, do not hesitate to do a screen-cap, and attach that. Hint: use the little "camera" icon in the lower-middle of the editing screens Toolbar. We'll all take a good look at it. I'd Save that as a JPEG @ ~ a compression of 9 on the PS scale, so we can read the "fine print."

  • AOL and PC iWeb problems?

    Why don't my iWeb pages appear in AOL? Is there a fix for this forthcoming from Apple?
    I've seen posts here that complain about iWeb sites not displaying properly on PC's but all of my friends with PC's report no problem with my site. Are there certain circumstances or certain browsers that are specific to producing iWeb problems on a PC? (As in, is there anything I should avoid doing on my pages?)
    Thanks...

    Why don't my iWeb pages appear in AOL?
    What are you seeing exactly? A url would really help in figuring out what you are talking about.
    Is there a fix
    for this forthcoming from Apple?
    I doubt it.

  • I FORGOT PASSCODE OF MY ipad AND LOST BUTTON IS TURN ON

    i forgot my IPAD passcode and ipad lost button is also turned on so itune is also not restoring data...? Pls help

    What are you calling the "iPad Lost Button"?
    How can I unlock my iPad if I forgot the passcode?
    http://www.everymac.com/systems/apple/ipad/ipad-troubleshooting-repair-faq/ipad- how-to-unlock-open-forgot-code-passcode-password-login.html
    iOS: Device disabled after entering wrong passcode
    http://support.apple.com/kb/ht1212
    How can I unlock my iPad if I forgot the passcode?
    http://tinyurl.com/7ndy8tb
    How to Reset a Forgotten Password for an iOS Device
    http://www.wikihow.com/Reset-a-Forgotten-Password-for-an-iOS-Device
    Using iPhone/iPad Recovery Mode
    http://ipod.about.com/od/iphonetroubleshooting/a/Iphone-Recovery-Mode.htm
    You may have to do this several times.
    Saw this solution on another post about an iPad in a school environment. Might work on your iPad so you won't lose everything.
    ~~~~~~~~~~~~~
    ‘iPad is disabled’ fix without resetting using iTunes
    Today I met my match with an iPad that had a passcode entered too many times, resulting in it displaying the message ‘iPad is disabled – Connect to iTunes’. This was a student iPad and since they use Notability for most of their work there was a chance that her files were not all backed up to the cloud. I really wanted to just re-activate the iPad instead of totally resetting it back to our default image.
    I reached out to my PLN on Twitter and had some help from a few people through retweets and a couple of clarification tweets. I love that so many are willing to help out so quickly. Through this I also learned that I look like Lt. Riker from Star Trek (thanks @FillineMachine).
    Through some trial and error (and a little sheer luck), I was able to reactivate the iPad without loosing any data. Note, this will only work on the computer it last synced with. Here’s how:
    1. Configurator is useless in reactivating a locked iPad. You will only be able to completely reformat the iPad using Configurator. If that’s ok with you, go for it – otherwise don’t waste your time trying to figure it out.
    2. Open iTunes with the iPad disconnected.
    3. Connect the iPad to the computer and wait for it to show up in the devices section in iTunes.
    4. Click on the iPad name when it appears and you will be given the option to restore a backup or setup as a new iPad (since it is locked).
    5. Click ‘Setup as new iPad’ and then click restore.
    6. The iPad will start backing up before it does the full restore and sync. CANCEL THE BACKUP IMMEDIATELY. You do this by clicking the small x in the status window in iTunes.
    7. When the backup cancels, it immediately starts syncing – cancel this as well using the same small x in the iTunes status window.
    8. The first stage in the restore process unlocks the iPad, you are basically just canceling out the restore process as soon as it reactivates the iPad.
    If done correctly, you will experience no data loss and the result will be a reactivated iPad. I have now tried this with about 5 iPads that were locked identically by students and each time it worked like a charm.
    ~~~~~~~~~~~~~
    Try it and good luck. You have nothing more to lose if it doesn't work for you.
     Cheers, Tom

  • I have problems with buttons and Forms in my trial proof of Indesign CC, how can I fix it?

    I have problems with buttons and Forms in my trial proof of Indesign CC, how can I fix it?

    Moved to InDesign forum.
    You can start by telling us what the problem is.

  • Problems with iweb and safari - 'buttons' not working in safari/firefox...

    Hello. Help! I've been using iweb for a while with no probs - but on trying to launch my most recent site I'm finding the navigation buttons (graphic images not text buttons) work fine in iweb on my mac, plus fine on a PC but only partially in safari/firefox browsers... see sarahgreen.me and you will see that none of them work on the home page. Is this some kind of bug? I was wondering if it is anything to do with there being too many objects on the page or something? They are fine on a PC.
    Thanks for any ideas.
    Sarah

    In iWeb do Command-Shift-L to see the layout of the page.
    The content in the Navigation layer is blocking the content of the Header layer. The body layer is empty.
    Move ( +Use Command-drag+ ) EVERYTHING in the Navigation layer and EVERYTHING in the Header layer INTO the Body layer.
    Put content where it belongs.
    Message was edited by: Wyodor

  • IWEB site lost problem - have archive.html file

    I've lost my previously published IWeb site but have found a full copy of it (photos and blog) on my computer here - file:///Users/.../Sites/Site.../J...s/Archive.html. It's no where else to be found. Is there any way/where that could restore this site to the web from this file alone? I had a serious computer issue and have lost many of those site photos.

    janemci wrote:
    If I get this old site back into IWeb...
    Jane ~ It's not clear to me what the situation is. Do you have two iWeb Domain files on the same Mac? ...If so, it's okay to keep them separate (in their own folder) and open each as needed by double-clicking. By the way, for searching purposes it may be useful to know that an iWeb '06 Domain file is called "Domain.sites" and iWeb '08 & '09 Domain files are called "Domain.sites2" — although the “.sites” extension is usually invisible.
    It's also possible to merge multiple Domain files into one — see this old beta software called iWebSites:
    http://mistergregg.com/cocoadrillosoftware/iWebSites/
    Post back with more info about what Domain files you have and where they're located and perhaps someone here will chip in with some good advice. But whatever you decide to do, first make backup copies of your Domain files — just in case.

  • Weird iWeb problem with nav buttons....

    Hi all. New to this and a complete idiot. The club which I am the Prez of needed a web site, and as no one else volunteered, I ended up doing it. Everything seemed to go fine for a while until I started modifying the original site....then I started getting weird things happening. Many of them I have figured out but the last one is beyond me. The problem is with the text in the nav buttons at the top of the pages. On the first page all the navigational buttons are fine, but on all the other pages the button that takes you back to the home page has text I never put in, and it does not appear in it's entirety. Can anyone provide any help as to how I can fix this. The URL is:
    www.nocasa-ft.com

    Indeed, the problem is with the cache. I cleared the cache and all now comes up as it is supposed to. Thanks so much for your suggestion. I was rather disappointed because it seemed the problem was with Safari, and I kind of like that browser. I didn't want to have to use something else.
    Thanks again.

  • IWeb video play button doesn't work

    I've got several videos on my website, but for some reason the play buttons don't work. You can play the video by double clicking it, but you can't even activate the play button.
    web.me.com/patrickjw

    Re: iWeb play buttons not working and your fix about showing the different elements of the page.
    I too had problems with the slideshow play buttons not working (iWeb '09). Whether I published to a folder or the internet, the buttons just wouldn't work. After spending much too much time on it, I almost gave up. Until I read your post about one element overlapping another. Although my problem was slightly different then the one you were addressing, your post gave me the answer I needed.
    Here's the problem and the fix:
    I created the typical 'Photos' page. But I got too fancy and that was the problem! For design reasons, I put a frame around the outside of the 'Photos' element. Using the 'Shapes' tool, I created a frame with a thin ruled border and had a 'fill' of 'none.' The 'none' fill made it possible to see the photos and buttons through the frame I made. Kind of like a hole in the frame so I could see through it. It was the last thing I did, so it was on top of everything else. It was the top element on the page. AND THAT WAS THE PROBLEM: IT WAS THE TOP ELEMENT. IT BLOCKED THE BUTTONS UNDERNEATH FROM WORKING! Even though I saw the photos and buttons ('Play Slideshow' & 'Subscribe') through the 'hole' I had in the frame, the frame was still on top and blocked the buttons from functioning. iWeb didn't recognize the 'none' fill and saw the frame as completely opaque. As soon as I made the frame the back element on the page (Arrange>Send To Back), all the buttons worked!!! Everything looked exactly the same to the naked eye as it first did, but now iWeb saw it differently and everything, all the buttons, worked.
    Since this situation doesn't seem to be documented anywhere in iWeb, I thought I'd pass the info along.
    Although I still have some things that bother me about iWeb, the program is looking a lot better to me today then it did yesterday!

  • IWeb Problem beginning

    I have a slight problem with iWeb.
    Opening iWeb for the first time i get iWeb open but its disabled and empty, i wish i could post a screenshot.
    I beleive normally yoy get a dialog asking to select a template, but i dont get that. I get a sidebar with a empty "site" tree. The add button is disabled, the secondary click shows "New Page" disabled.
    Please help

    i just reinstalled iWeb. Get the templates screen now..

  • IWeb problem... reverting to original

    Hello there everyone
    I hope I am posting in the right place... please redirect me if not... thank you.
    I have a problem that requires someone with knowledge of the iWeb application. It's a bit lengthy to write so please bear with me and read on.
    I have created a website (no.1) and published, no problem.
    I have created a website (no.2) and not published, no problem.
    I have created a website (no.3) and published, no problem. However, this was set up as a temporary measure. I published it prior to creating the 'real' site which I have today been working on. Rather than set up a new site for this 'real' one, I decided to simply edit the No. 3 site. I have not saved or published it yet. Since editing it, I have been asked to leave the original site as it is and so I have simply created site No.4 and have copied and pasted the edited version of No.3 to site No.4. I have not saved or published this latter site.
    The problem I have met and need help with is...
    I clicked on site no.3 and then went to File -> revert to saved.
    It came up with a box saying 'do you want to revert to the most recently saved version of the document "Domain.sites2"? Your current changes will be lost.
    Well, I was hoping it would refer to site no.3. As it doesn't, I have no idea what will happen if I click the 'Revert' option.
    I want to keep the original site no.3 and the now new site no.4.
    Can anyone help me sort this out please? I will be very grateful for any suggestions as i'm a bit desperate!!! (hours of work involved here gasp!)
    Many thanks in advance
    Merry x

    You can't do what you want to do. Although the horse is out of the barn you should have duplicated site 3, renamed it site 4 and made the edits directly to site 4. The revert to saved means the domain file as it existed when you opened it (since you haven't made any saves since then).
    Try the following: without saving or closing iWeb go to your User/Library/Application Support/iWeb folder and duplicate the domain file there. That will contain sites 1-3 as they existed when you opened iWeb. Go back to iWeb and save. Now go back to the User/Library/Application Support/iWeb folder and double click on the Domain copy.sites2 folder. When it opens delete sites 1 and 2, leaving site 3.
    Download iWebSites and merge the two domain files together. Then you can go in and delete the edited site 3 leaving site 1, site 2, the original site 3 and site 4.
    If you plan on publishing multiple sites this might be of some help: I use iWebSites to manage multiple sites.. It lets me create multiple sites and multiple domain files.
    If you have multiple sites in one domain file here's the workflow I used to split them into individual site files with iWebSites. Be sure to make a backup copy of your original Domain.sites files before starting the splitting process.
    This lets me edit several sites and only republish the one I want.
    OT

Maybe you are looking for

  • What adaptor do i need?

    I was given a Power Mac G4 tower and an apple studio display, the transparent case display. As I am use to all in ones, I have no idea what adaptor I need to hook up the display. This is the info I got from the back of the tower: Manufactured in 1999

  • How to get list of Vacant positions

    Hi Experts, We have to display all the vacant positions with the personnel areas. I know we have one standard report S_AHR_61016509. But it is not showing the exact values. Is there any other function module to get all the vacant positions. Many Than

  • How can I re-install Photoshop Elements after I reformatted my hard-drive?

    I hard to run windows repair on my computer because I had viruses and lot all my programes. Is there a way to use my license number again?

  • Data Guard Application Failover

    Hi, We've setup a physical standby database on 11.2.0.1. I'd request for opinions on how well to manage application fail-over when we switchover/fail over the database. The application connects to the database through TNS name resolution. Some people

  • Printing from iPhoto using a colour profile

    Just a quick question. I have a profile for my desired ink/paper/printer combination that in Photoshop produces an accurate result. I wish to print quickly and accurately from iPhoto without the labour of going though Photoshop. How do I achieve this