Need help finishing off slideshow

Hello there,
I have posted here a few times before,  i have had great help from members but now i just need help finishing off my project. It is for a client and i am trying to do it as fast as i can but i do not have the knowledge to finish off the code. I did post this question previously but it has gone unanswered,
I just need help on a roll out effect, i have it so if the mouse rolls of the button before the second image is up, it fades out. That is good. But when the second image IS up, the mouse rolls off the button and then the 2nd image fades out, but the 1st images shows up and also fades out. How can i prevent this from happening so it is always only the visible image that will fade out.
Thanks in advance,
Declan.

I don't have time to go thru your code in detail to figure out what it's supposed to be doing, and no one is likely to try to help if you don't provide it here.  If I look at your other posting I see one line that you should correct... who knows, it might be the source of your problem... this line needs to be fixed....
if (image2.visible = true)

Similar Messages

  • Help finishing off

    Hi there people, I would like some help finishing this off, but before I explain it, this is me practising my java this is not coursework, and I'm not trying to create and form of spyware!
    Ok =D right what im trying to do is make a program like msn messenger, but when the user enters their username and password, that data gets sent to the listener which prints it out into a text file.
    I am having trouble with the following area and would apprecitate a little help:
    Layout - I'm not too sure how to work gridbaglayout
    Background - How to you set a picture in the background?
    Getting the entered text to the listener - I can't work out who I get the text the user has entered and print it out into the text file.
    And if any of you have an idea on things I could add change etc then =D
    Please don't b***h about me trying to make some spyware or rubbish like that, I'm just trying to have fun practising my java :)
    Msn class
    * Main class
    * @author
    * @date 25/05/06
    import java.awt.*;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    public class Msn extends SimpleFrame{
         PanelArea panelArea = new PanelArea();
          * Main method
         public static void main(String[] args){
              Msn msn = new Msn();
              msn.showIt("MSN Messenger");
          * Make the buttons to go at the top
         public JMenuBar menuBar = new JMenuBar();
         // Menu
         public JMenu file = new JMenu("File");
         public JMenu contacts = new JMenu("Contacts");
         public JMenu actions = new JMenu("Actions");
         public JMenu tools = new JMenu("Tools");
         public JMenu help = new JMenu("Help");
         // Submenu for file
         public JMenuItem signIn = new JMenuItem("Sign In");
         public JMenuItem signOut = new JMenuItem("Sign Out");
         public JMenuItem openReceived = new JMenuItem("Open Received Files");
         public JMenuItem close = new JMenuItem("Close");
         // Submenu for contacts
         public JMenuItem addContact = new JMenuItem("Add a Contact");
         public JMenuItem searchContact = new JMenuItem("Search a Contact");
         public JMenuItem addressBook = new JMenuItem("Go To My Address Book");
         public JMenuItem displayPicture = new JMenuItem("View Display Picture");
         public JMenuItem manageContacts = new JMenuItem("Manage Contacts");
         public JMenuItem manageGroups = new JMenuItem("Manage Groups");
         public JMenuItem sortContacts = new JMenuItem("Sort Contacts");
         public JMenuItem saveContacts = new JMenuItem("Save Contacts By");
         public JMenuItem importContacts = new JMenuItem("Import Contacts From a File");
         // Submenu for actions
         public JMenuItem sendInstantMessage = new JMenuItem("Send an Instant Message");
         public JMenuItem videoVoice = new JMenuItem("Video/Voice");
         public JMenuItem startActivity = new JMenuItem("Start an Activity");
         public JMenuItem playGame = new JMenuItem("Play a Game");
         public JMenuItem remoteAssistance = new JMenuItem("Request Remote Assistance");
         // Submenu for tools
         public JMenuItem allwaysOnTop = new JMenuItem("Always on Top");
         public JMenuItem myEmotions = new JMenuItem("My Emotions");
         public JMenuItem myBackground = new JMenuItem("My Background");
         public JMenuItem changeDisplayPicture = new JMenuItem("Change Display Picture");
         public JMenuItem myWinks = new JMenuItem("My WInks");
         public JMenuItem webCam = new JMenuItem("Web Cam Settings");
         // Submenu for help
         public JMenuItem helpTopics = new JMenuItem("Help Topics");
         public JMenuItem termsOfUse = new JMenuItem("Tersm of Use");
         public JMenuItem sendFeedback = new JMenuItem("Send Feedback");
         public JMenuItem aboutMsn = new JMenuItem("About MSN Messenger");
          * Constructor to add the buttons onto the panel
         Msn(){
              MsnListener msnListener = new MsnListener();
              // Add menuBar
              this.setJMenuBar(menuBar);
              // Add Items to the menuBar
              menuBar.add(file);
              menuBar.add(contacts);
              menuBar.add(actions);
              menuBar.add(tools);
              menuBar.add(help);
              // Add items to file
              file.add(signIn);
              file.add(signOut);
              file.add(openReceived);
              file.add(close).addActionListener(msnListener);
              // Add items to contacts
              contacts.add(addContact);
              contacts.add(searchContact);
              contacts.add(addressBook);
              contacts.add(displayPicture);
              contacts.add(manageContacts);
              contacts.add(manageGroups);
              contacts.add(sortContacts);
              contacts.add(saveContacts);
              contacts.add(importContacts);
              // Add items to actions
              actions.add(sendInstantMessage);
              actions.add(videoVoice);
              actions.add(startActivity);
              actions.add(playGame);
              actions.add(remoteAssistance);
              // Add items to tools
              tools.add(allwaysOnTop);
              tools.add(myEmotions);
              tools.add(myBackground);
              tools.add(changeDisplayPicture);
              tools.add(myWinks);
              tools.add(webCam);
              // Add items to help
              help.add(helpTopics);
              help.add(termsOfUse);
              help.add(sendFeedback);
              help.add(aboutMsn);
              this.getContentPane().add(panelArea,BorderLayout.CENTER);
              pack();
    }Listener class
    * Listener class
    * @author
    * @date 25/05/06
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.PrintWriter;
    import java.io.FileOutputStream;
    import java.io.FileNotFoundException;
    public class MsnListener implements ActionListener {
         PanelArea pArea;
         public void actionPerformed(ActionEvent e){
              String actionCommand = e.getActionCommand();
              if(actionCommand.equals("Close"))
                   leave();
              if(actionCommand.equals("Sign In"))
                   popUp();
                   enter();
              else if(actionCommand.equals("Ok"))
                   System.exit(0);
          * Method to close the programme
          * Called when user selects "Close" from the menu
         public void leave(){
              System.out.println("Testing");
              System.exit(0);
          * Method which takes the user name and password entered
          * and puts it into a text file
          * file is located in the same place as the java files
         public void enter(){
              System.out.println("Running");
              PrintWriter outputStream = null;
            try
                outputStream =
                    new PrintWriter(new FileOutputStream("password.txt"));
            catch(FileNotFoundException e)
                System.out.println("Error opening the file");
            System.out.println("written to file");
            outputStream.println("User Name: ");
            outputStream.println("Password: ");
            outputStream.close();
          *  Pop for when the user tries to log in
         public void popUp(){
              Runnable runner = new Runnable() {
                  public void run()
                    try
                        Thread.sleep(1500);
                    } catch (InterruptedException e)
                    JFrame frame = new JFrame("MSN Error");
                    JLabel label = new JLabel("Error xdsf34234fd");
                    JButton okButton = new JButton("Ok");
                    frame.add(label, BorderLayout.CENTER);
                    frame.add(okButton, BorderLayout.SOUTH);
                    frame.setSize(200, 200);
                    frame.setVisible(true);
                EventQueue.invokeLater(runner);
    }Panel class
    * PanelArea clas
    * @author
    * @date 35/05/06
    * TextField, Buttons etc that go in the main panel
    import java.awt.*;
    import java.awt.event.ActionListener;
    import javax.swing.*;
    public class PanelArea extends JPanel{
         private static final long serialVersionUID = 1L;
         // Makes the buttons and labels
         private JLabel emailAddress = new JLabel("E-mail address");
         private JTextField email = new JTextField();
         private JLabel enterPassword = new JLabel("Password:");
         private JPasswordField password = new JPasswordField();
         private JButton signIn = new JButton("Sign In");
         private JRadioButton remember = new JRadioButton();
         private JRadioButton rememberPassword = new JRadioButton();
         private JRadioButton autoSignIn = new JRadioButton();
         private JLabel msPass = new JLabel("Microsoft Passport Network");
          * Constructor to set things in palce
         PanelArea(){
              MsnListener msnListener = new MsnListener();
              // Set Size and background Colour
              this.setBackground(Color.WHITE);
              this.setPreferredSize(new Dimension(500,600));
              // Grid Layout
              BorderLayout borderLayout = new BorderLayout();
              this.setLayout(borderLayout);
              this.setLayout(new GridLayout(0,1));
              // Set the Buttons and Labels in place
              this.add(emailAddress);
              this.add(email);
              this.add(enterPassword);
              this.add(password);
              this.add(signIn);
              this.add(remember);
              this.add(rememberPassword);
              this.add(autoSignIn);
              this.add(msPass);
              signIn.addActionListener(msnListener);
         public String getEmail(){
              return email.getText();
         public String getPassword(){
              return password.getText();
    }Simpleframe class
    * SimpleFrame class
    * @author
    * @date 25/05/06
    import javax.swing.*;
    public class SimpleFrame extends JFrame {
         public void showIt()
              this.setVisible(true);
         public void showIt(String title)
              this.setTitle(title);
              this.setVisible(true);
         public void showIt(String title,int x,int y)
              this.setTitle(title);
              this.setLocation(x,y);
              this.setVisible(true);
    }null

    but it throws loads of awt exceptions! what am I doing wrong?you've changed the method to reference pArea
    pArea.getEmail()
    but pArea is null
    PanelArea pArea;
    you need to pass some references
      Msn(){
        //MsnListener msnListener = new MsnListener();<------comment out this
        this.getContentPane().add(panelArea,BorderLayout.CENTER);
        pack();
    class MsnListener implements ActionListener {
      PanelArea pArea;//<--------see next line
      MsnListener(PanelArea p){pArea = p;}//<--------------add the constructor, and pass the reference
      public void actionPerformed(ActionEvent e){
      PanelArea(){
        //MsnListener msnListener = new MsnListener();<-----------change to next line
        MsnListener msnListener = new MsnListener(this);//<----pass the reference
        // Set Size and background Colour
        this.setBackground(Color.WHITE);make these changes to a backup copy of your program
    (in case they don't do what you want)

  • Need help switching Flash slideshow

    I admit it, I need help!
    Here is my problem, I want the links on the left to change the Flash slideshow on the right when clicked.
    I want to stay on this page, so only the Flash slideshow changes.
    This is the site I'm working on.... http://www.hwas.com/A-events-page-3.htm#
    I am using CS4.
    HELP!

    Shouldn't matter what version ... that hasn't changed much and is done pretty much the same way as long as I can remember. Which seems to be getting shorter and shorter all the time. 
    Anyways, nice site though. Well done.
    Brad Lawryk
    Adobe Community Expert, Dreamweaver
    Adobe Usergroup Manager, Northern British Columbia Adobe User Group

  • Needing help making a Slideshow in Premiere 7

    Back in 2008 several contributors on this forum helped me make a slideshow using Photoshop Elements 6 and Premiere Elements 4, which I am forever grateful for. It was a long process as I had never made a slideshow before, but after much labor I created a wonderful slideshow of my Alaska photos with music. After a lot of reading I decided to upgrade to Elements and Premiere 7, which I was able to actually do for free.   I purchased the Muvipix.com Guide to Adobe Premiere Elements 7 as I was told this would be a great resource to help me out. Well, here I am two years later trying to make a slideshow again and still as confused as ever. I am trying to make the slideshow in Adobe Premiere Elements, as I was told last time it was easier to do it that way if I wanted to add music to it. I am just getting started and am already confused.
    My first question is: Am I best off making the slide show in Premiere Elements rather than Photoshop Elements? I want to add music to it.
    I have tried using both the book that came with the program and the Muvipix book and I am lost on step one.
    In the Adobe manual it says to deselect the Show Video and Show Audio buttons. Why do I need to deselect these?
    In the Muvipix book it tells me to select a number of clips amd then either right-click on them or click on the ">>" button to access the "Create Slideshow" too.  I can't find the ">>" button. How do I access the the "Create Slideshow" feature?
    I have a question about the stills that show up in the panel. Many actual photos appear in this panel. However, there are also a large group of boxes with two swirling arrows, one green and one red. Why are they there rather than actual photos? I have tried double clicking on a few and they all bring up the same photo folder from "my pictures." I am confused.
    Sorry if my questions seem very basic, but this is not what I do for a living. It is a once every couple of year hobby. Perhaps if I ever get it downpat I will do it more often.
    Thanks for any help you can give me. I am sure I will need a little more handholding. I have been looking for the last two years for a class on this program. I know that is what I need. However, none have been available in my area.

    Thanks for the response Steve. I am hoping it will be easier this time around.
    "If you're seeing empty boxes with swirling arrows in them instead of your photos in the Project panel, it means that the program no longer has access to the photos -- either because they were moved or the device that they were on (your camera?) was disconnected from the computer. You really need to copy these photos to your computer's hard drive if you're going to use them in a project"
    These photos were still on the harddrive. I checked in Photoshop Elements and they needed to get reconnected. Here is what I think happened. When I download my photos, they go into MY PICTURES. When I move them from where they automatically get placed by the program, into a folder of my choice, they seem to get "unconnected". I was able to reconnect them and now they appear in Premiere Elements. Thanks for the tip which actually led me to a solution.
    "There are actually at least four different ways to make a slideshow in Premiere Elements and Photoshop Elements. Each has advantages. Which method are you using? (In all cases, as I say in my book, you should make sure your photos are sized to no larger than 1000x 750 pixels in size before you begin.)"
    I am just starting and I was using Premiere Elements 7. I thought I was told back in 2008 on this forum it was easier to do it all in Premiere Elements if I wanted to add music rather than creating it in Photoshop Elements and then moving it to Premiere. As far as photo size, I am a real beginner here. I have no idea what size they are or where to look to find that out. All I know is that  my Alaska slideshow turned out great and did nothing about changing pixels. Where would I find out how to change pixel size?
    "It sounds like you're using the Create Slideshow tool in the Project media panel. (As I say in Chapter 1, you'll only be able to see the >> menus if you go to the Window drop-down menu and select Show Docking Headers.) You can also access this tool by selecting all of the photos you want to include in the Project panel and right-clicking on them."
    I did read about Show Docking Headers and did follow that instruction. That was the first thing I did, actually. However, when I am in Premiere ELements, I still don't see where I find the Create Slideshow tool that you mention on p. 59. I am a bit confused with this option. I can move the photos I want from the panel to the Timeline, but I am confused as to where the "Create Slideshow Tool" is located.
    Thanks again for your help.I know I will get this done, just very slowly.

  • Need help with automatic slideshow

    I made an automatic slideshow that switches frames at a set
    interval but now i want to load each frame from an extrenal swf and
    add a preloader for each frame, how do i tell the slideshow to wait
    until the frame is loaded before it proceeds to the next frame, but
    still have the movieclip be automatic. Also the slideshow can be
    controlled mannually so i also want to know how to disable the
    manual control till each frame is loaded.

    Here is some of the action script for the slideshow.
    This first bit sets up the automatic interval transitions in
    the main movie timeline
    function nextImage()
    mc_slide.mc_transition.play();
    } // End of the function
    function waitImage()
    clearInterval(slideTimer);
    var slideTimer = setInterval(nextImage, timer * 1000);
    nextImage();
    } // End of the function
    function pauseSlide()
    mc_slide.mc_quicktransition.gotoAndPlay(2);
    } // End of the function
    var timer = 8;
    var pauseTime = 20;
    var slideTimer = setInterval(nextImage, timer * 2000);
    stop ();
    the movieclip loaders that load each movie clip are embedded
    with the transition animation.
    this is the code in the embedded mc-it loads the 1st movie
    clip and allows the user to manually jump to any of the other movie
    clips.
    emptyMC.loadMovie("frame1.swf");
    var pageAddress = "about:blank";
    btn1.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(1);
    btn2.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(2);
    btn3.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(3);
    btn4.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(4);
    stop();
    I need to know how to put the code for the automation of the
    slideshow pause until each movieclip has finished loading and also
    at the same time disable the manual control of the movie clips
    before they are fully loaded.

  • Need help with simple slideshow

    Hi everyone,
    I'm a complete newbie at Flash and trying to build my first
    movie, just a basic slideshow. I have about a dozen jpegs all same
    size, and I just want a basic fade out and fade in the next one, no
    user interractivity necessary. I imported the jpegs into the
    FlashMX (v6) environment, converted to graphic symbols, created a
    movie clip symbol for each image, and set up the fade in/fade out.
    Each individual movie clip works OK, but I can't figure out how to
    arrange my movie clips to display in succession in the main
    timeline. I can set frame 1 as a keyframe and place a movie clip in
    that frame, test the movie, and the clip plays. I put a keyframe in
    frame 2 and put the next movie clip in that frame, then nothing
    works. Any suggestions? If someone could just explain the basic
    principal of playing several movie clips in succession, or just
    point me in the right diresction, I would be very grateful.
    Thanks much,
    Dave

    Here is some of the action script for the slideshow.
    This first bit sets up the automatic interval transitions in
    the main movie timeline
    function nextImage()
    mc_slide.mc_transition.play();
    } // End of the function
    function waitImage()
    clearInterval(slideTimer);
    var slideTimer = setInterval(nextImage, timer * 1000);
    nextImage();
    } // End of the function
    function pauseSlide()
    mc_slide.mc_quicktransition.gotoAndPlay(2);
    } // End of the function
    var timer = 8;
    var pauseTime = 20;
    var slideTimer = setInterval(nextImage, timer * 2000);
    stop ();
    the movieclip loaders that load each movie clip are embedded
    with the transition animation.
    this is the code in the embedded mc-it loads the 1st movie
    clip and allows the user to manually jump to any of the other movie
    clips.
    emptyMC.loadMovie("frame1.swf");
    var pageAddress = "about:blank";
    btn1.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(1);
    btn2.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(2);
    btn3.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(3);
    btn4.onRelease = function ()
    _parent.pauseSlide();
    gotoAndStop(4);
    stop();
    I need to know how to put the code for the automation of the
    slideshow pause until each movieclip has finished loading and also
    at the same time disable the manual control of the movie clips
    before they are fully loaded.

  • Need help with Photo Slideshow Tips for FCPx

    How do i create a background/generator/effect similar to this for my still images for my photo slideshow presentation? Im just using ken burns effect for now and I cannot find a plug-in that would give this background effect for my photos. help please!

    you're in the fcp studio forum not fcpX.   This is where you want to be
    https://discussions.apple.com/community/professional_applications/final_cut_pro_ x

  • Need help w/ Photo Slideshow Effects for FCPX

    How do i create a background/generator/effect similar to this for my still images for my photo slideshow presentation? Im just using ken burns effect and it looks a little plain for me. I cannot find a plug-in that would give this background effect for my photos. help please!

    Here is another: 3D Glass Shelf Effect (see here: http://www.premiumbeat.com/blog/the-big-list-free-fcpx-effects-filters-and-templ ates/)

  • I need help finishing the java install

    i have windows Millenium Edition & am trying to download J2SDK 1.5.0_4 so that i can write small programs at home. However, i cannot get the install software to finish putting java onto my desktop. it just keeps telling me that the install is complete but, there is no java icon to open the package. i have removed the program completely and tried a second time to install the software but i can get no further that the installshield wizard. i am at a loss and desperately want to start writing programs with java. someone out there, please help!
    i tried downloading an installing " Windows Offline Installation, Mult-language jdk-1_5_0_04-windows-i586-p.exe ( J2SE Develop. Kit 5.0 Update 4 ) " but it won't let me open java to write any programs.
    Thank you for your help in this matter.
    kind regards
    eric d.

    Java does not have a desktop icon to click. You open the command window and type commands to compile and execute the programs you write.
    I strongly suggest that you go to this tutorial
    http://java.sun.com/docs/books/tutorial/
    and click the First Steps: link. Be sure to click the link to the installation instructions and read them, especially the instructions about setting the PATH environment variable and the coaution regarding the use of Windows' Notepad.

  • I need help finishing my assignment

    this is the program
    public class CableInstallationTestClass {
    public static void main(String[] args) {
      CableInstallationClass  ci = new CableInstallationClass();
      ci.setNumOutlets(1);
      double subTotal = ((ci.getNumOutlets() -1 ) * ci.getCostPerOutlet()) + ci.getBasicInstallationCost();
      //do some more stuff to calculate all the taxes.
      //I changed to signature of the display invoice, since it makes more sense to pass the total
      //to the method
      double pstTax = ci.getPSTAmount(subTotal);
      double gstTax = ci.getPSTAmount(subTotal);
      double grandTotal = ci.getGrandTotal(subTotal, pstTax, gstTax);
      ci.displayInvoice(grandTotal);
    //AND THEN YOU WILL HAVE THE WORK CLASS
    // need to use cableinstallationclass, and cableinstallationtestclass
    public class CableInstallationClass {
    private double basicInstallationCost = 49.99;
    private double costPerOutlet = 10.00;
    private double numOutlets = 1;
    double getGSTAmount(double subtotal) {
      return .06;
    double getPSTAmount(double subtotal) {
      return 0.08;
    double getSubtotal() {
      return 0.0;
    double getGrandTotal(double subTotal, double PSTTax, double GSTTax) {
      return subTotal * ( 1 + PSTTax + GSTTax);
    void displayInvoice(double total) // (Neither rounding nor formatting is required.)
      System.out.println("Total: " + total);
    public double getBasicInstallationCost() {
      return basicInstallationCost;
    public void setBasicInstallationCost(double basicInstallationCost) {
      this.basicInstallationCost = basicInstallationCost;
    public double getCostPerOutlet() {
      return costPerOutlet;
    public void setCostPerOutlet(double costPerOutlet) {
      this.costPerOutlet = costPerOutlet;
    public double getNumOutlets() {
      return numOutlets;
    public void setNumOutlets(double numOutlets) {
      this.numOutlets = numOutlets;
    }i put the value in for the amount of outlets just to test it its not the required number, but the value that i get is usually of by a dollar and acouple of cents, i tried changing the values of the pst to retrun subtotal * 0.06; but that only created more problems.
    just wondering if anyone could look and the code and see what the problem is, i might be missing a key method but i have tried alot of things but with no success.
    thanks
    Will

    sorry about that, i think it has to do with the tax methods that i have, when i just print the subtotal before the taxes are calculated it gives the right answer. when i include the pst and gst i get an answer that is off by a small but noticable number.

  • I need help turning off things from my i-pod

    I have shut off all of the things I did not want any longer!  Please help me with my i-pod, and changing my password and help me to find ways to completely 'reboot' my i-pod!!
    Please help me!!
    Thank you.
    Shawn Stopper

    Look at these options:
    Credit Kappy.
    Ciao

  • I need help with iPhoto slideshow.  I can't "save" changes. Particularly the rotate feature.  I rotate a photo 90 degrees... and the next time I play it...it's back to original.  Sideways!  Very frustrating.

    How do I save changes on iPhoto slideshow.  I rotate a photo... then it reverts back to original (sideways) next time it plays.

    With the amount of information you've provided it's impossible to offer a solution.  We can't see your computer so we need to know the details of your problem and setup, i.e.:
    what version of iPhoto are you using?
    what system version are you running?
    is your slideshow from an album or from the slideshow mode?
    what theme are you using?
    what fixes have you tried?
    where is your library located?
    did you apply any updates or upgrades just prior to the problem occurring?
    are you running a "managed" or "referenced" library?
    what type of Mac?
    how much free space on your boot drive?

  • Need help turning off find my phone

    I Purchased an iphone4 from a couple and later found out that in order to install apps that I need their account password. I texted them and they said they didn't remember it. They said to contact apple and give them the info they used when they purchased and registered the phone. They gave me the info but where/how do I use the info to turn it off so I can delete the account. I have the phone activated and  am using it but want certain apps and want to add my music library but can't. Thanks in advance for your help

    You will not be able to use this iPhone if you don't get them to sign out of their Apple ID with the appropriate Password.  If they forgot their Apple ID and Password they can go online and correct things but they will need to answer their Security Questions and also may need to receive information on their Recovery email Address.  This can all be done relatively quickly, but they will need to cooperate. 

  • Need help getting off beta channel

    I....Like so many other people I've been reading about, somehow ended up on the beta channel with an update I do not want. I was running version 16 (my choice) and ended up with version 20. I want to get off the beta channel and stay off so that I can update when I choose to do so and not when Mozilla wants me to. So any instructions on how to go about doing that would be greatly appreciated. I do see other posts with the same issue and I guess I can follow those instructions but I figured maybe the instructions for my specific situation or OS I'm running or whatever the case may be might make the steps required to do this different from other posts I've been reading.
    Part of the solution I see others posting about is to uninstall and do a clean reinstall of a release version. My big concern in doing this is add-ons. I have a ton. Ad-Block, Auto Pager, milewideback, Stylish, etc., etc., etc. Are these going to all be there and still be installed and configured the same way after I uninstall and reinstall? I'm hoping that because they reside in the profiles folder as opposed to the program folder that the answer is "yes". Any help on this would be greatly appreciated.
    I'm running Windows Vista SP2

    Just want to echo these sentiments!
    I'm a longtime FF fan but it's getting so I spend more time trying to make it act the way I want than just browsing!
    If I didn't hate Chrome so much I'd be gone too :-(

  • Need help for off topic question...please.

    First off, I want to appologize for posting this here...but it seems that the forum it belongs too it not accepting any new postings. At least I don't see a post button at the top. So anyone who is knowledgeable and patient with me would be most appreaciative.
    I use both Safari and Netscape. Im not sure which app. is doing this but it is quite annoying. It seems as I browse using both apps., when I finally do get to my desktop...I see a bookmark file. For example (bookmarks-23.html). If I just ignore it, they accumulate. As you can see, this is bookmark number 23. I am not sure what app. is doing this and why it is doing it. What could even happen to cause this.
    Any help would be appreaciated.
    Thanks in advance.
    Eddy

    Hi Eddy
    I guess you mean the safari forum, right?
    The reason you're not seeing a post button, is cuz you're not actually viewing the forum itself, but a list of recent topics.
    Just above that list - look for the actual link to the Safari forum.
    now you mention it.... I guess it could seem like there's no post button, if you're not already familiar with the discussions site.
    continuing OT - Quit either one of your browsers & use the other; if you get a #24 & 25 bookmarks file, you'll know it's the browser you're using now that creates them.
    When you know that - I'd suggest a new question in the Safari forum

Maybe you are looking for

  • Firefox failing to stay logged in/ recognise certain websites

    Downloaded Firefox 4 the other day and have been having consistent issues with it not keeping me logged into Facebook, emails or news sites when I close the browser window. Additionally, it is failing to communicate properly with my bank and since it

  • Analyze Wizard in Oracle 10.2.0.1.0

    Where can I find **Analyze Wizard** in my Oracle 10.2.0.1.0 ? ORACLE has been installed successfully on my PC and it is up and running. I am logged on to ORACLE ENTERPRISE MANAGER, but I don't see anywhere Analyze Wizard. I am supposed to run Analyze

  • Need to add customer fields in CRM_DNO_MONITOR

    Hi Experts , Using EEWB i created few customer fields in CRMD_ORDER. Now same fields i am adding in CRM_DNO_MONITOR. I enhanced standard program "CRM_DNO_SERVICE_MONITOR" for CRM_DNO_MONITOR. Added new selection screen for customer fields. Now i can

  • Clearing intercompany g/l accounts

    Hi, If I post on 2 company codes in FB01. I have maintained OBYA, so the posting results in 2 documents in CC A and in CC B. But how can I clear this documents on the clearing account? Thank you, please advice. Eric.

  • Email text overlapping pdf image

    Our company sends out order confirmations which are getting scrambled when viewed on an iPad. The text of the email and the one page pdf attachment overlap in the viewing screen. Everything looks fine on a computer or the phone, it's just the pdf pre