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)

Similar Messages

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

  • Get rows where the last row finish off

    Hi, i have two tables AND would LIKE TO get data BY combining both.
    here IS my data
    WITH hist AS
      SELECT To_Date('4/23/2010','mm/dd/yyyy') dt, 999 alias, 'PROC' dom FROM dual UNION ALL
      SELECT To_Date('4/27/2010','mm/dd/yyyy') dt, 999 alias, 'LON' dom FROM dual UNION all
      SELECT To_Date('4/1/2010','mm/dd/yyyy') dt, 111 alias, 'SOC' dom FROM dual UNION all
      SELECT To_Date('4/10/2010','mm/dd/yyyy') dt, 111 alias, 'NAO' dom FROM dual UNION ALL
      SELECT To_Date('3/23/2010','mm/dd/yyyy') dt, 222 alias, 'PSE' dom FROM dual
    final AS
      SELECT To_Date('2/26/2010','mm/dd/yyyy') dt, 999 alias FROM dual UNION ALL
      SELECT To_Date('4/22/2010','mm/dd/yyyy') dt, 999 alias FROM dual UNION all
      SELECT To_Date('4/26/2010','mm/dd/yyyy') dt, 999 alias FROM dual UNION ALL
      SELECT To_Date('4/30/2010','mm/dd/yyyy') dt, 999 alias FROM dual UNION ALL
      SELECT To_Date('2/25/2010','mm/dd/yyyy') dt, 111 alias FROM dual UNION ALL
      SELECT To_Date('2/26/2010','mm/dd/yyyy') dt, 222 alias FROM dual UNION ALL
      SELECT To_Date('4/22/2010','mm/dd/yyyy') dt, 222 alias FROM dual UNION all
      SELECT To_Date('4/26/2010','mm/dd/yyyy') dt, 222 alias FROM dual
    the output should be as follow(without the extra blank line of course)
    DT           ALIAS   DOM
    2/26/2010     999     PROC
    4/22/2010     999     PROC
    4/26/2010     999     LON
    4/30/2010     999     LON
    4/27/2010     999     LON
    4/23/2010     999     PROC
    2/25/2010     111     SOC
    4/1/2010     222     SOC
    4/10/2010     222     NAO
    2/26/2010     222     PSE
    4/22/2010     222     PSE
    4/26/2010     222     PSEso what i am doing here is as follow, take one row in hist table (4/23) and join with final table and give me all rows in final table
    where dt <= to the row in hist table and include the row from hist table.
    this logic will give me rows 2/26/2010,4/22/10 4/23/2010
    then the second row in hist table (4/27/2010) wiill get all rows
    in final table that is <= to the current row and pick up the rows starting from the row > than the last row where the 4/23/2010 finished off
    in this case the output will be 4/26/10, 4/27/2010(we need to include row from hist)
    since there is no row in hist that is greater than 4/30/2010, this date will still be display and dom column value should be taking from the max date in hist
    which is 4/27/2010. see output above
    this sound a little confusing to explain but look at output of what to expect as output. the other ids should follow the same logic
    can someone help write a query for this? thanks

    Hi,
    Devx wrote:
    Frank, thanks again, i ran the query in oracle 11g and oracle 9i. 11g runs ok but 9i doesnt. it looks like the ignore null option is not supported in 9i. That's right: IGNORE NULLS was new in Oracle 10. You should always mention your Oracle version whenever you ask a quiestion, especially if it's as old as Oracle 9.
    i will be running this query in 9i. is there any alternative to re-write this query without using last value since ignore null is not supported and the output is not as i expected when i take that keyword out.
    i really appreciate your help. please let me know how would i re-write the query. thanksOne work-around is to use LEAD or LAG instead of LAST_VALUE. This means you have to know exactly where (how many rows away) the most recent non-NULL value is, which in turn requires other analytuic funtions, such as ROW_NUMBER, and more sub-queries:
    WITH     combined_tables        AS
         SELECT     dt, alias, NVL (dom, '_?_') AS dom     FROM hist
         UNION
         SELECT     dt, alias, NULL          AS dom      FROM final
    ,     got_r_num     AS
         SELECT     dt, alias, dom
         ,     ROW_NUMBER () OVER ( PARTITION BY  alias
                                   ORDER BY          dt
                           )               AS r_num
         ,     COUNT (*)     OVER ( PARTITION BY  alias
                           )               AS alias_cnt
         FROM    combined_tables
    ,     got_skip_cnts     AS
         SELECT     dt, alias, dom, r_num
         ,     r_num - MAX (CASE WHEN dom IS NOT NULL THEN r_num END)
                                 OVER ( PARTITION BY  alias
                               ORDER BY          r_num
                             )                    AS skip_before
         ,     MIN (CASE WHEN dom IS NOT NULL THEN r_num END)
                                 OVER ( PARTITION BY  alias
                               ORDER BY          r_num     DESC
                             ) - r_num               AS skip_after
         FROM    got_r_num
    ,     got_next_dom     AS
         SELECT     dt, alias, dom, r_num, skip_before
         ,     LEAD (dom, skip_after) OVER ( PARTITION BY  alias
                                                ORDER BY      r_num
                                 ) AS next_dom
         FROM    got_skip_cnts
    SELECT       dt
    ,       alias
    ,       NULLIF ( COALESCE ( next_dom
                            , LAG (dom, skip_before) OVER ( PARTITION BY  alias
                                                         ORDER BY         r_num
               )     AS dom
    FROM       got_next_dom
    ORDER BY  alias
    ,            dt
    ;You should be able to calculate bot LEAD and LAG in the same query, but there seems to be a bug that only calculates one of them correctly in this case. The sub-query got_next_dom gets around that, by doing the LEAD in a separate sub-query.

  • [svn] 1183: compiler: Finished off generics warnings in graph, they' re bulletproof now (as long as they're not rounds of depleted uranium).

    Revision: 1183
    Author: [email protected]
    Date: 2008-04-10 14:10:12 -0700 (Thu, 10 Apr 2008)
    Log Message:
    compiler: Finished off generics warnings in graph, they're bulletproof now (as long as they're not rounds of depleted uranium).
    * Improved the generics in other places and took advantage of enhanced for loops in some nasty iterators
    Bugs: n/a
    QA: Yes, I'm done with the cleanup so it's a good time to run the suite and see what damage I have done!
    Doc: No
    Modified Paths:
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/Assets.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/CompilerAPI.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Algorithms.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/DependencyGraph.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Edge.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Graph.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Vertex.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/compiler/util/graph/Visitor.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/linker/ConsoleApplication.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/linker/SimpleMovie.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/CompcPreLink.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/Mxmlc.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/PreLink.java
    flex/sdk/trunk/modules/compiler/src/java/flex2/tools/oem/Project.java

    Did you read the comments, either on the AUR page or in the output that you posted? They explain it.

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

  • Help turning off info-box pane when hovering mouse over photo

    I am looking to turn-off this info pane, it appears when I have my mouse over a photo in any preview. It is really distracting and I cannot locate the menu to switch it off... any help is much appreciated!
    Screenshot found here: vhttp://img545.imageshack.us/img545/1622/screenshot20101116at101.png

    Thank you so much, very embarrassing

  • 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 :-(

  • Help turn off iMessage without my phone...

    I recently switched from iPhone to Android and no longer have my iPhone.  However, texts from my wife still go to iMessage because she is on iPhone... help!

    Put your sim in her phone & turn iMessage off. If you registered your phone with Apple, you can login to your support profile & remove the phone. Those are the only two ways I know to fix this.

  • Help - Broke Off A Key

    Whilst cleaning my keyboard today I knocked off the M key and now it wont sit on very well. I think one off the plastic clips is broken.
    Anyone got any suggestions? Is there a knack to fitting these keys and can you buy new individual keys?
    Thanks in advance.

    If you go to the local Apple Care Center, you will get a free working key.
    At all the Apple Center's they do have a lot off replaced keyboard's. They will get a working key from one of those and place it on your Powerbook for free. Your Powerbook will look and word perfect again.
    When you ask it nice they are always willing to help you!
    Hopefully this is helpfull or solved your problem. Consider rewarding some points!
    Please see the "helpfull" and "solved" button's on top off this message! Apple: Why reward points?

  • Help turning off feature that opens all pages and numbers docs.

    How can I turn off feature that opens all numbers and pages documents each time I open the respective program?

    What version of OS X are you using? That information will help in providing a specific solution.
    If you close all documents before quitting Numbers or Pages, you won't have them reopening when you launch the app again. You can quickly close all open windows in an application by typing ⌘ ⌥ W (Command + Option + W) or hold down the Option/alt key while clicking the red close button.
    Other things you can do to turn off this resume feature:
    In Lion, Mountain Lion & Mavericks you can set System Preferences > General to close windows when quitting an application.
    Try Mountain Tweaks The option to turn off resume is at the bottom of the left-hand column under Lion. This solution does not work in Mavericks.

  • Help turning off email notification please

    Can someone please help me turn off email notification.
    I have checked and unchecked the email notification to the right of the posts numerable times. It does not seem to matter whether that says stop email notification or receive email notification. I have also turned them off in my user profile and I continue to get email notifications constantly.
    Thank you,
    Leslie

    Hi,
    I don't get any. Here is my forum setup.
    I turned it off in the forum sidebar...stop e-mail notifications... and in "Your Stuff"...Preferences.
    My forum sidebar currently looks like this:
    e-mail notification preferences currently look like this...be sure to hit "save" to update the change.

  • 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

  • Help - Finished downloading photoshop trial, was prompted to restart comp, now can't resume install!

    Hey all,
    I have just finished downloading the photoshop trial version which was almost 1 gig, and when it started to install it told me that my computer was due for a restart so i quit the install and restarted my computer, and now when I start up the download manager again I can't find any way to access my previous download so I can install it. It seems that it is going to make me download it all over again which is not really an option for me. Is there any way to resume that initial installation again so I do not have to download the entire thing all over again?? Just because it said I was "due for a restart"...  I shouldve ignored it and continued with the installation  @_@  but I was just trying to do the right thing.
    Please help, thanks so much.

    Copying information from this doc: Adobe Download Assistant FAQ
    Where are my downloaded products?
    When you start the download, the Adobe Download Assistant prompts you to select a destination folder for the trial products. To locate products downloaded using the Adobe Download Assistant, navigate to the folder you selected when you started the download.
    Note: Trial products that have only partially completed their download have the filename extension .adadownload. If you see such files, restart Adobe Download Assistant and resume/complete the download and installation. (See How do I pause and resume interrupted downloads?) If you remove products from the Adobe Download Assistant queue, any partially downloaded products are removed from your system.

  • How do I finish off the scratching?

    So, the screen is already this way, should I finish the job off?  How? Alcohol?

    I suggest an appointment at an Apple store genius bar for an evaluation.  I suspect that the only option is a replacement.
    Ciao.

Maybe you are looking for

  • My mouse pointer disappears when at rest--only in firefox. (Logitech M305)

    Only since upgrading to 3.6.15, the pointer disappears at rest. When I move the mouse, it reappears, with a one-second delay, so that I am only sure where the pointer is when I am moving it! I'm using Windows Vista Home Premium

  • [ADF BC] error in using ajax4jsf with jdeveloper 10.1.3

    I want to use ajax4jsf with jdeveloper 10.1.3 but foolowing error is appearing when i run my application oracle.classloader.util.AnnotatedNoClassDefFoundError:      Missing class: org.apache.commons.collections.map.LRUMap      Dependent class: org.aj

  • File adapter query

    Hi, A custom XML document containing vendor information is picked from the file system by file adapter. The message is mapped to XML-IDOC format and then routed to the IDOC adapter While generating the IDOC in the receiver system the IDOC goes in err

  • Main screen is sideways

    For some reason the main screen on an All-In-One pc has switched to sideways with the icons at the top which makes it difficult to view the screen or any programs. Any advice on how to correct the settings will be appreciated. This question was solve

  • Gradual Choppy Audio Failure in Mainstage

    Hi, today I purchased and downloaded Mainstage 2.2.2 for my Macbook Pro (Early 2011, 8GB Ram). I also have a similar issue with Mainstage 2.0 on my 2009 iMac, I hoped the problem would've been solved with the new version, but the exact same one exist