Making a GameMenu (not JMenu)

I'm writing a small game in AFS-mode to get some feeling with the 2D-api (and in developping some own algorithms). Now I want to know what's the best way to make a menu like you see in games (so not a drop-down JMenu), in the middle of the screen there are some JButtons (adapted ofcourse, not the normal ones, but that doesn't really matter). These buttons should lead the person to another screen, so for example, when you push the Options-button, the first menu-panel should be replaced by a new one with all sorts of options. I tried to do it with JPanels, I added the first panel (with some buttons) to a JFrame and when you clicked one of the buttons, a new JPanel opened (the other one was removed by the method removeAll()). But this strategy gave some problems. The new panel didn't draw, only after a minimize and maximize, it was drawn, I couldn't go back properely,.... I tried invoking repaint() and some other things, but they didn't work.
I hope you understand my problem and explanation. Any ideas on how to make a proper menu?
Example code:
import java.awt.*;
import javax.swing.*;
public class Menu extends JFrame{
     private int height=250;
                private int width=500;
     private MenuPanel mp;
     public Menu(){
          setSize(width,height);
          mp=new MenuPanel(width,height);
          add(mp);
          setResizable(false);
          setVisible(true);
     public static void main(String[] args){
          SwingUtilities.invokeLater(new Runnable(){
               public void run(){
                    new Menu();
class MenuPanel extends JPanel{
     private int width, height;
     private JButton play,options,credits,quit;
     public MenuPanel(int w, int h){
          width=w;
          height=h;
          setSize((int) width,(int) height);
          initializeButtons();
          setLayout(new GridLayout(4,1));
          add(play);
          add(options);
          add(credits);
          add(quit);
     public void initializeButtons(){
          play=new JButton("Play");
          play.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent e){
                    //Open a new screen (JPanel?)
          options=new JButton("Options");
          options.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent e){
                    //Open a new screen (JPanel?)
          credits=new JButton("Credits");
          credits.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent e){
                              //Open a new screen (JPanel?)     
          quit=new JButton("Quit");
          quit.addActionListener(new ActionListener(){
               public void actionPerformed(ActionEvent e){
                    System.exit(0);
}I hope this is a good example.
Thanks in advance,
Sam

i.e.,
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class Menu090907a {
  public static final String MENU_PANEL = "Menu Panel";
  public static final String PLAY_PANEL = "Play Panel";
  public static final String CREDITS_PANEL = "Credit Panel";
  private CardLayout cardlayout = new CardLayout();
  private JPanel cardHolder = new  JPanel(cardlayout);
  private MenuPanel mp;
  private PlayPanel pp;
  private CreditsPanel cp;
  public Menu090907a(int w, int h) {
    mp = new MenuPanel(w, h, cardHolder, cardlayout);
    pp = new PlayPanel(w, h, cardHolder, cardlayout, MENU_PANEL);
    cp = new CreditsPanel(cardHolder, cardlayout, MENU_PANEL);
    cardHolder.add(mp, MENU_PANEL);
    cardHolder.add(pp, PLAY_PANEL);
    cardHolder.add(cp, CREDITS_PANEL);
  public JPanel getPanel() {
    return cardHolder;
  public static void main(String[] args) {
    SwingUtilities.invokeLater(new Runnable() {
      public void run() {
        JFrame frame = new JFrame("Menu Example");
        frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
        frame.getContentPane().add(new Menu090907a(500, 400).getPanel());
        frame.pack();
        frame.setLocationRelativeTo(null);
        frame.setVisible(true);
        frame.setResizable(false);
@SuppressWarnings("serial")
class MenuPanel extends JPanel {
  private JButton play, options, credits, quit;
  private JPanel cardHolder;
  private CardLayout cardlayout;
  public MenuPanel(int w, int h, JPanel cardHolder, CardLayout cardlayout) {
    this.cardHolder = cardHolder;
    this.cardlayout = cardlayout;
    setPreferredSize(new Dimension(w, h));
    initializeButtons();
    setBorder(BorderFactory.createEmptyBorder(30, 30, 30, 30));
    setLayout(new GridLayout(0, 1, 30, 30));
    add(play);
    add(options);
    add(credits);
    add(quit);
  public void initializeButtons() {
    play = new JButton("Play");
    play.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        cardlayout.show(cardHolder, Menu090907a.PLAY_PANEL);
    options = new JButton("Options");
    options.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
    credits = new JButton("Credits");
    credits.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        cardlayout.show(cardHolder, Menu090907a.CREDITS_PANEL);
    quit = new JButton("Quit");
    quit.addActionListener(new ActionListener() {
      public void actionPerformed(ActionEvent e) {
        System.exit(0);
@SuppressWarnings("serial")
class PlayPanel extends JPanel {
  public PlayPanel(int w, int h, JPanel cardHolder, CardLayout cardlayout, String menuPanel) {
    setLayout(new BorderLayout());
    setPreferredSize(new Dimension(w, h));
    add(new JLabel("PlayPanel", SwingConstants.CENTER));
    JButton returnBtn =new JButton(new ReturnToMenuAction(cardHolder, cardlayout, menuPanel));
    JPanel returnPanel = new JPanel();
    returnPanel.add(returnBtn);
    add(returnPanel, BorderLayout.SOUTH);
@SuppressWarnings("serial")
class CreditsPanel extends JPanel {
  public CreditsPanel(JPanel cardHolder, CardLayout cardlayout, String menuPanel) {
    setLayout(new BorderLayout());
    add(new JLabel("Credits", SwingConstants.CENTER));
    JButton returnBtn =new JButton(new ReturnToMenuAction(cardHolder, cardlayout, menuPanel));
    JPanel returnPanel = new JPanel();
    returnPanel.add(returnBtn);
    add(returnPanel, BorderLayout.SOUTH);
@SuppressWarnings("serial")
class ReturnToMenuAction extends AbstractAction {
  private JPanel cardHolder;
  private CardLayout cardlayout;
  private String menuPanel;
  public ReturnToMenuAction(JPanel cardHolder, CardLayout cardlayout, String menuPanel)
    super("Return to Main Menu");
    this.cardHolder = cardHolder;
    this.cardlayout = cardlayout;
    this.menuPanel = menuPanel;
  public void actionPerformed(ActionEvent e)
    cardlayout.show(cardHolder, menuPanel);
}

Similar Messages

  • Mac is making a double note ( sound) on its own?

    My mac makes an intermittent double note sound on its own without any keys being pressed? Is there something open that needs closing or erasing?

    Hello
    I know this is an old thread - but did you ever find the solution to this.
    My colleagues come into the office this morning and said my iMac was making a sound similar to a drill. The iMac was not hot or vibrating.
    Worried as I am now sat in front of it and not wanting it to blow up!
    Many thanks
    Lewis

  • Making Garageband songs not sound like Garageband songs

    Is there a trick to making GBand songs sound like 'normal' songs? When I play songs I've created in GBand on my car stereo, it sounds awful compared to 'real' music. I've played around with the Master Tracks, but nothing seems to work well. I want my music to envelope/surround me, not sound like I'm tinkering around with a cheap keyboard. Thanks.

    Well....
    This isn't what you want to hear, but GB is only as good as the person using it. I have some friends that are trained audio engineers and they can make GB sound as good as anything. I do a pretty good job too. LOL!
    What I would like to emphasize if you are looking for pro sounding recordings:
    -get decent monitors,
    -learn to use your microphones AND the space/room you are recording in,
    -read up on the art of mixing,
    -learn what a compressor does and familiarize yourself with them,
    -practice mixing other's songs (Nine Inch Nails has 2 of their songs as free GB downloads for mixing)
    -read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice, read and practice,
    and that about covers it. Garageband is just a tool. You have to make it work.
    Good luck and welcome to the forum! If you have any questions, feel free to ask. Lots of smart people here.
    X

  • IPhone deletes notes after editing or making a new note?

    Hello everyone.  I've googled this to death and cannot find even so much as a hint.  My iPhone (iOS 6.0) today began doing the strangest thing regarding the Notes app.  I'll attempt to explain it as best I can.  I will add that my iPhone is set to not sync notes to iCloud.
    I have dozens of notes in the Notes app.  The phone is deleting any edited notes or new notes.  If I am in Airplane Mode (with wi-fi + cellular off), all is kosher.  If I edit an old note or create a new note while NOT in Airplane mode, the phone will delete the note as soon as I hit the "Notes" button in the top left hand corner that returns me to the list.  I have rebooted the phone multiple times, closed all apps out of the multitasking bar, tried with connecting to wi-fi only, cell + wi-fi, cell only.  Same issue.  The new or edited note will remain in the list for a moment, and then with no observable event, just be gone.  The list will update itself to go from 76 to 75, for example.  I have free space on the phone, it is not full.  It will allow me to store photos, videos, and create new alarms.  The issue appears to be isolated to Notes.
    I realize I could upgrade iOS, restore the phone, etc. but problems such as this should not arise out of nowhere, especially on something as stable as iOS.  Can someone give me a clue as to what is happening, and how to resolve it?  As you can guess by having dozens of notes on my phone, it's my main note taking apparatus.  I'm fairly crippled without it.

    I've resolved my issue through Apple technical support.  I'd like to provide the resolution for the issue so that if anyone happens to have the same problem in the future, he/she may refer to my post here for a solution.
    Apple Support had me delete the Yahoo! email account, readd it as "other", and since I could not get the account to authenticate under POP settings, we added the account under IMAP settings.  Upon doing this, all notes (even the ones I wrote when the issue was occurring) "magically" reappeared.
    Issue resolved; mods feel free to lock.

  • Making sql faster not in pl.sql but in sql

    this sql takes a long time running from Application to oracle database
    11.2.0.3.0 on win 2008 r2
    in Toad it runs much faster
    any suggestions to make it faster in SQL, this is dynamic code where 1500000 is bind variable passed from application side. this can be 10million 20million ...etc
    there are enough indexes, constraints on the related tables below. thought of using /*+APPEND*/
    cant use BULK COLLECT as its part of PL/SQL
    any suggestions
    INSERT INTO pds.dlg_participant
    (dp_id, dp_dg_id, dp_dlg_id, dp_customer_id, dp_context, dp_inserted_timestamp, dp_moved_timestamp, dp_active, dp_internal_id)
    (SELECT
    pds.DLG_PARTICIPANT_SEQ.NEXTVAL,
    1224,
    1074,
    mh_customer_id,
    mh_context,
    SYSDATE,
    SYSDATE,
    0,
    7820
    FROM
    SELECT
    Relations.MARE_ID as mh_customer_id,
    '0' as mh_context,
    null as mh_participant_id
    FROM
    (select *
    from Testuser.RelationsEnriched_10M
    ) Relations
    WHERE
    ((1500000 >= Relations.MARE_ID)))
    AND
    NOT EXISTS (SELECT
    dp_id
    FROM
    pds.dlg_participant,
    pds.dlg_group
    WHERE
    (dp_dg_id = dg_id) AND
    (dg_dlg_id = 1074) AND
    (dp_active = 0) AND
    (dp_customer_id = Relations.MARE_ID)) ) mh_container
    )

    912919 wrote:
    this sql takes a long time running from Application to oracle database
    11.2.0.3.0 on win 2008 r2
    in Toad it runs much fasterYou did not post timings of the execution. So, how can we see or you prove that it actually runs faster in Toad than on SQL Prompt.
    I will suggest you to do the following and post the details here:
    @SQL Prompt
    ALTER session SET TIMED_STATISTICS = TRUE;
    Execute your Insert Statement;
    @Toad
    ALTER session SET TIMED_STATISTICS = TRUE;
    Execute your Insert Statement;Post the timing details here. Also it will be highly appreciable if you can post the Explain plan or the TKPROF output.
    Just in case you are not aware of getting TKPROF, read here.
    any suggestions to make it faster in SQL, this is dynamic code where 1500000 is bind variable passed from application side. this can be 10million 20million ...etc
    there are enough indexes, constraints on the related tables below. thought of using /*+APPEND*/
    cant use BULK COLLECT as its part of PL/SQL
    any suggestionsIn order to speed us the Insert Select Operations, the key for improvement in performance lies, mostly, in the Select statement. So, if you can optimize the select statment you would have achieved most of the job.
    If this is a One time or A Data Load performed during an Outage or Low activity period, you can alter the table to NOLOGGING and perform INSERT APPEND and then alter table back to LOGGING.

  • Making DVD's not DVD-R's

    so netflix and a few other places require DVD's not DVD-R's. What's the difference? Thanks!

    Pardon me, David,
    When you said in your first reply:
    "DVD-R is a type of blank media. If authored properly, it will be a DVD-Video when you're done."
    It would be more accurate to say that a DVD-R is it's own format, as Eric stated, and certainly can never be a DVD-Video - even if authored properly. The DVD Forum is very clear that the DVD-Video logo cannot be placed on a DVD-R format disc, because they are not the same format (you can put the DVD-R logo on a DVD-R disc). Mainly this is because these two optical formats are completely different in structure, and because only replicated discs can achieve the reliability in players (which you mentioned) required of a product bearing the DVD-Video logo - the main mass distribution format targeting consumers. That's the short of the story.
    And when you said in your second reply:
    "A DVD-Video is a DVD disc that contains data that conforms to the DVD-Video standard. Otherwise is wouldn't play in a DVD player. It does not matter whether the disc is burned or replicated."
    Again, if the disc was burned, it's not a DVD-Video. It's one of the recordable formats (DVD+R/W is an optical format not recognized by the DVD Forum, but with similar characteristics. It's leadin can contain the DVD_ROM book type bit setting, that can trick players into thinking a replicated disc has been stuck in it, however).
    And a DVD-Video disc is a replicated / manufactured disc that has certain lead-in data which a DVD-R can never emulate, because it's lead-in area is glossed over in manufacturing (to prevent bit for bit copying of manufactured DVDs) with set data in its lead-in area. So it's crucial, whether or not a disc has been burned or replicated. Again, only replicated discs can bear the DVD-Video logo.
    And when you said:
    "DVD-R and DVD+R are types of optical media. They are not a format."
    As I (and Eric) mentioned, DVD-R is a format, with books specified for it by the DVD Forum. DVD+RW is also a format, but not specified by the DVD Forum. But yes, DVD-R and DVD+RW and one you forgot - DVD-ROM (replicated DVD-Video) are also all optical media.
    There's more to it. You might get on the DVD Forum's website and check on some of these questions.
    Take care,
    Trai
    Trai Forrester
    New Constellation Technologies
    DVD Verification, Proofing, DLT Pre-mastering

  • Making a credit note

    hi,
    there are two line items in the final invoice and the client now wants to make a credit note in such a way that for the first line item in the invoice she wants to give complete credit and for the second line item she wants to give partial credit, (ex; line item1-$700, line item2-$4000, now client wants to makea credit note where in they give complete credit for the first line item and $25 for
    the second line item.how can get this thing done.
    thanks

    hi,
    this is to inform you that,
    this comes under pure development.
    in this Module pool SAPLV60A, program RV60AFZZ - find enhance spots to capture and hard code line item 10 should go with 100% credit note and line item 20 goes with - partial credit.
    if it is not going as expected then it has to throw an error with a message in it.
    hope this clears
    balajia

  • Time Machine making full backups--not incremental

    Hi,
    I just installed Snow Leopard on my Mac Pro a couple of days ago, and have been using Time Machine to make backups (never used it before now). I have TimeMachineEditor installed, and have it set to make a backup daily at 3:30am. It backs up data from my 500GB main hard drive to another internal 500GB hard drive.
    The first backup went without a hitch, and did a full backup as expected (everything). But the second, third, and fourth backups all were full backups as well....not incremental as they should've been. The fourth one was actually a manual backup I did to test it...I chose "Back Up Now" to see if it did full or incremental. It did a full backup.
    So, after four backups, each a little over 100GB, I'm already running out of space Has anyone else run into this behaviour? Is this a consequence of TimeMachineEditor having screwed it up somehow? Even if it has, shouldn't a manual backup still do an incremental backup?
    Very strange....

    canadavenyc wrote:
    V.K. wrote:
    yes, well, if Toronto ever gets a team in any sport worth rooting for, I might stop posting on apple forums and start watching them.
    lol...well, seeing as how you'll clearly be here a while then... ...perhaps I can prevail upon you to answer one last question that just occurred to me.
    Let's say I have tons of TM snapshots on my backup drive, and at some point I want to delete a few to clear some space. I know TM automatically goes after the earliest ones when the drive fills up,
    You should know that TM also constantly thins recent backups. It keeps hourly backups for 24 hours and then deletes all but one for every day; it keeps daily backups for 30 days and then deletes all but one for every week. it keeps all weekly backups till the TM drive gets full at which point it starts deleting the oldest ones.
    but let's say I manually want to delete a few snapshots that contain, say, a massive cache file or something totally useless to keep around, which I could afford to delete and would gain me a lot more drive space.
    When I go into the TM interface to do the removal, how can I figure out which snapshots to get rid of? How would you do it?
    TM offers two options. you can delete an entire backup corresponding to a time point or it can delete all backups of a given file/folder. to do that enter TM and scroll back in time to some time point. select something and click on the "gears" action button in Finder toolbar. you'll see options "delete backup" (deletes the entire backup for that time point), and 'delete all backups of this item". deletes all backups of the selected item from all time points. I use the latter sometimes to get rid of backups of very large files.

  • Making the Vendor Note or Internal note field default CAPS

    Hi all,
    We have to make the "Vendor Text" or "Internal note" text field as default CAPS. As when a user enters any text in this feild after clicking out of that box, the text should become by default as CAPS.
    We have done the same thing for " Notes for Buyer" field.
    But now I am not getting the source, the internet template that defines this "note" field. I have done a left click on that screen & got the source filed but the coding is not visible, when i have checked in SM80.
    Pls help me find the source template.
    Is it possible that many templates are looped inside one another?

    Dear Pradeep,
    Thanks alot for your reply. That has almost solved my problem.
    The only one more help i require is that, how we we change the text to CAPS now.
    When we had changed in previous one, it was already having some other PAI defiened, but this template has no PAI defined.
    Pls help.
    Thanks,
    Bhakti

  • Making POP email not authenticate outbound

    I'm trying to get my iPhone to work with my company's POP email server. I can get email fine; can't send. When I try to send I get this error:
    'Cannot Send Mail
    The SMTP server 'mymailservername.com' doesn't support authentication. Please check your account settings and try again.'
    When I set up the account, under Advanced, iPhone defaults to Authenicating by Password, which is the third option in the list below:
    MD5 Challenge-Response,
    NTLM, and
    Password (checked)
    I looked at the email setup for the same account on my Treo 650 and the box re authenticating for (Incoming) Use Authentication (APOP) is unchecked, as is the (Outgoing) Use Authentication (ESMTP).
    I've tried to set Advanced>Authentication to both of the other options, but when I do I get the same error but when I go look at the settings, it has Password selected, not either of the other two options I tried changing it to...
    Any ideas on how to make this work???
    Thanks

    Don't think the company POP server is the issue; it works fine with my Treo... I also can check mail via a browser-based webmail URL.
    Re EDGE or WiFi, I think it depends on whether there is Wifi where I am, and also (based on posts I've seen) whether iPhone 'tries' EDGE or WiFi first (the posts I'm referring to say that iPhone uses EDGE sometimes even when there is an available WiFi connection, which makes no sense since WiFi is much faster. I've been at home a number of times where I have WiFi that iPhone is set up to use and I've seen it connecting and running very slow via EDGE--makes no sense but it seems to happen to others too).
    Will the cwcx.com approach just work via EDGE? Seems like we'd all really prefer to use WiFi when available assuming the issue above gets worked out. That's the only reason I'm hesitant to use this approach...
    My treo has port 25 for the Outgoing mail server--is that a standard port? I just tried putting ':25' at the end of the Outbound server address and that didn't fix anything...
    Thanks
      Windows XP Pro  

  • Making my external not able to spin-down

    Hey all,
    I've got a portable hard drive that's kinda screwed up, and won't spin up correctly 95% of times I try to start it (I've sat there for hours trying to get it to start powering on and off). I need to get it replaced, but until then...
    Anyways, I use it to run live media to a projector for events, and if I leave it alone, it spins down and I can't get it back online when I need it. Is there something I can do that will specify that disk not to spin down? (even if I have to redo it if it changes the mounting drive spec.) It's currently usually set as /dev/disk1s2, so use that to reference the command (I'll probably have to change it as it changes with my setup).
    Sorry if this is all horribly confusing. I saw some other forums, but nothing specified which disk shouldn't spin down.

    Nah, the energy saver options only specify to internal drives. Does anyone know any UNIX commands that would help? I've seen tons of message boards of UNIX commands to keep a drive spinning, but never one for an external drive.

  • QT Pro: Making audio recordings not in .mov format

    Why does the recording feature in QT Pro just make audio recordings in .mov format? I then have to extract the soundtrack ( flatten is what is says during this procedure ) and even though it was recorded in AAC, it needs to be converted to AAC in iTunes a redundant second time.
    Is there a simpler way to make AAC recordings in QT Pro and then just import them into iTunes?
    My audio recording setting in QT Pro is set to H.264. I am picking "new audio recording" not video recording.
    Thanks

    Perhaps an alternative program...
    http://www.versiontracker.com/php/search.php?mode=basic&action=search&str=record +audio&plt%5B%5D=macosx&x=0&y=0

  • Phone making noise when not in use

    Hi. I currently have one phone downstairs, and two upstairs. However, during different intervals throughout the day, the two phones upstairs will make a noise, even though no-one is using any of the phones. It is one beep, then followed by another beep about 5 seconds later. It is the same 'beep' that can be heard when someone IS using the phone downstairs, and then hangup the phone. What could be the cause of this noise?
    To make matters worse, whenever this noise occurs, it will invariably disconnect my broadband connection. How can two phones make a noise, when no-one is using any of the phones in the house? Thanks for any answers.

    - if you havve extension sockets then they should be wired to terminals 2 & 5 of the detachable bottom half - your last picture.  I think from your first picture that someone has wired the extension to tyhe same terminals A & B on the backplate of the master socket your first picture.  the incoming BT wires are normally blue/white and white/blue
    I have a socket upstairs, but that is connected like the following. It is actually the wire at the very bottom of the splitter, and not one of the ones that has a filter. One filter goes to the main phone, the other filter for the Sky. Is this classed as an extension socket?
    This is what it looks like upstairs (Ive added a filter, but its pretty much the same):
    - I can see whay DS and Imjolly are getting at with reference to the extension being wired to the back of the NTE itself but it may be the case that the engineer who has installed it has just used an internal 4 wire (which they also use for extensions) from the block terminal, that's the little white box in the second picture down to the NTE5a. If that is the case there is really nowt wrong with that at all.
    Do DS or Imjolly agree or disagree with this? When I put the master socket front back on, I get a reception on the phone, so it must work fine, even without any wires connected, right?
    -You really shouldn't and I can't suggest this, but may be have the rear of the main part looked at, by BT of course, and possibly provide an image of this too. there should only be 2 wires (1 pair) connected to terminals A&B on the rear of this main part.
    Looking at the picture of the master socket from earlier, to do this, would I only have to unscrew the screw that is most central (and not the left and right ones)?
    Firstly have you checked the batteries in your smoke alarm?
    Yup. Its definately the phones.
    Do the phones upstairs plug into telephone sockets or are they just slave handsets that connect to the main base station?
    I think the pictures in this post answer that. The blue and white wire coming out of the splitter are two phones.

  • Making a dvd, not seeing imovie

    So, I had this quicktime movie, I put it on imovie and saved it, now I'm trying to add it to Idvd, but Idvd doensn't see the imovie in the folder that I put it in. I am running imovie 6 HD, not 08

    Hi Compsavvy - try dragging the entire iMovie project 'package' (the one with the Star on it), onto the open iDVD window.

  • Iphone making weird noise (not from speakers)?

    It sounds like it's steaming. I've had problems with charging it, and the volume would go up randomly. I took it to get it looked at and they said it was a problem with the board. So basically I'd just have to buy a new phone. Today I was playing on an app and it randomly started making this weird steaming noise, and I think it was coming from the charging dock. I turned it off and the noise stopped. I haven't tried plugging it in yet. I don't know what to do. Help?

    Ok, final update for anyone who comes across this thread with the same issue.
    I sent it to the apple for a service who, unexpectedly, repaired it and sent it back the day it arrived!
    It turns out it was a faulty camera, as that got replaced and I have had no problem since.
    - Ozzy

Maybe you are looking for

  • How to Print two layouts into one page

    Hi, I have developed a report by blocked ALV.In this report i have created two blocks. But when i give print out the two blocks are not printing continuously.It is displaying one block in one page and another block in anther page. And i need page num

  • Problem with creation of dbadapter in jdeveloper using only jndi

    Hi, I´m new in this forum and first would like thank for the opportunity. My problem is that have an application where i need to create a dbadapter for to connect a database. I´m using bpel. Would like known if there is a way of to make this without

  • Don't Know what's wrong ?

    I have had my macbook pro for about 2 years right now, and I haven't had any major problems with it so far. I had some battery issues but that was because I updated to the new OS and it is not as bad anymore. I also had to get my sata cable replaced

  • Video quality of Flash animation in iWeb

    I'm inserting a flash movie (html snippet) into my iweb 08 site, but the resolution of the video is not as high as the original .swf file. This is my workflow: -Go to LiveType and create a scrolling banner. -Export the movie, then open it in Compress

  • Open a view in a new window

    Is it possible to open a view (or a Web Dynpro Window) (from another one, both under the same controller) in a new browser window? If it is, how to do it? If it isn't, how can I accomplish my target, Openning a Web Dynpro Window (View) in a new brows