Export Dimensions Have Gone Wrong

Hi All,
        I was exporting a load of music samplers, just a simple JPEGs at 1400x1400px against a wav file, as found here.
http://www.youtube.com/watch?v=oZdm5o7C7_0&feature=related
For the last 3 done, for some reason it made the image all small on the Quicktime export, as seen here:
http://www.youtube.com/watch?v=DWLlbadoGN4&feature=related
I've started several new projects DV-NTSC48kHz (which is what I used initially, but still the same thing.  The only thing I remember doing wrong was accidently exporting as 640x480, instead of 480x640, and then tested it again at the proper resolution.  It's a Quicktime Export, and because it keeps happening for every new project created any audio/JPEG image combination, is there a more global setting I'm missing here?
Much appreciated
Digiman9999

DV-NTSC is 720 x 480.

Similar Messages

  • ALV list with empty data - What could have gone wrong?

    Dear experts,
    I'm currently working on some codes to display data (the tables involved really do contain data), but when the codes are executed, the ALV list does not contain any data in it (only the column headers are fine).
    What could have gone wrong? I've been staring at the codes for hours now. Please help. Appreciate any help at all. 
    Displaying ALV data with REUSE_ALV_LIST_DISPLAY:
    form display_alv_data .
      CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'
        EXPORTING
    *     I_INTERFACE_CHECK              = ' '
    *     I_BYPASSING_BUFFER             =
    *     I_BUFFER_ACTIVE                = ' '
          I_CALLBACK_PROGRAM             = w_prog
    *     I_CALLBACK_PF_STATUS_SET       = ' '
    *     I_CALLBACK_USER_COMMAND        = ' '
    *     I_STRUCTURE_NAME               =
    *     IS_LAYOUT                      =
          IT_FIELDCAT                    = gt_field_cat[]
    *     IT_EXCLUDING                   =
    *     IT_SPECIAL_GROUPS              =
    *     IT_SORT                        =
    *     IT_FILTER                      =
    *     IS_SEL_HIDE                    =
    *     I_DEFAULT                      = 'X'
    *     I_SAVE                         = ' '
    *     IS_VARIANT                     =
    *     IT_EVENTS                      =
    *     IT_EVENT_EXIT                  =
    *     IS_PRINT                       =
    *     IS_REPREP_ID                   =
    *     I_SCREEN_START_COLUMN          = 0
    *     I_SCREEN_START_LINE            = 0
    *     I_SCREEN_END_COLUMN            = 0
    *     I_SCREEN_END_LINE              = 0
    *     IR_SALV_LIST_ADAPTER           =
    *     IT_EXCEPT_QINFO                =
    *     I_SUPPRESS_EMPTY_DATA          = ABAP_FALSE
    *   IMPORTING
    *     E_EXIT_CAUSED_BY_CALLER        =
    *     ES_EXIT_CAUSED_BY_USER         =
        TABLES
          T_OUTTAB                       = gt_final
        EXCEPTIONS
          PROGRAM_ERROR                  = 1
          OTHERS                         = 2.
      IF SY-SUBRC <> 0.
        MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
                WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    endform.                    " display_alv_data
    Retrieving data from the database tables into the internal table:
    form retrieve_data .
      " For internal table 1
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             lfa1~name1
      FROM ekbe INNER JOIN mseg ON ekbe~ebeln = mseg~ebeln
                INNER JOIN lfa1 ON mseg~lifnr = lfa1~lifnr
      INTO CORRESPONDING FIELDS OF TABLE gt_1
      WHERE mseg~bwart = '101' AND      " Movement type: Goods Receipt
            ekbe~vgabe = '2' AND        " Transaction / event type for Invoice Verification Number
            ekbe~matnr IN s_m_num AND
            mseg~lifnr IN s_v_num.
      " For internal table 2
      SELECT ekbe~ebeln
             makt~maktx
             eket~eindt                 
      FROM ekbe INNER JOIN makt ON ekbe~matnr = makt~matnr
                INNER JOIN eket ON ekbe~ebeln = eket~ebeln
      INTO CORRESPONDING FIELDS OF TABLE gt_2
      WHERE eket~eindt IN s_d_date.
      " For internal table 3
      SELECT ekbe~ebeln
             ekko~bedat
             ekko~ekorg
             ekko~ekgrp
             ekko~bukrs
      FROM ekbe INNER JOIN ekko ON ekbe~ebeln = ekko~ebeln
      INTO CORRESPONDING FIELDS OF TABLE gt_3
      WHERE ekko~bedat IN s_p_date AND
            ekko~ekorg IN s_p_org AND
            ekko~ekgrp IN s_p_grp.
      " For the final internal table
      SORT: gt_1, gt_2, gt_3.
      LOOP AT gt_1.
        MOVE-CORRESPONDING gt_1 TO gt_final.
        READ TABLE gt_2 WITH KEY gfs_ebeln = gt_1-gfs_ebeln BINARY SEARCH.
        MOVE-CORRESPONDING gt_2 TO gt_final.
        READ TABLE gt_3 WITH KEY gfs_ebeln = gt_1-gfs_ebeln BINARY SEARCH.
        MOVE-CORRESPONDING gt_3 TO gt_final.
        APPEND gt_final.
      ENDLOOP.
    endform.                    " retrieve_data

    Dear forumers,
    I apologize for the rather late reply. The SAP server that I've been working on was down since Thursday evening and I wasn't able to debug much into the codes. Nevertheless, I really do appreciate all of your inputs and help here.
    Rob,
    I've just debugged my codes again and found out that in the first place, there is no data contained in the internal table gt_1 at all. My rough guess is because I've misused the INNER JOIN wrongly here (see code comments below):-
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             lfa1~name1  " this line should probably be commented out
      FROM ekbe INNER JOIN mseg ON mseg~ebeln = ekbe~ebeln
                        INNER JOIN lfa1 ON lfa1~lifnr = mseg~lifnr   " this line should probably be commented out - the table join here is not based on table ekbe at all
      INTO CORRESPONDING FIELDS OF TABLE gt_1
      WHERE mseg~bwart = '101' AND     
            ekbe~vgabe = '2' AND 
            ekbe~matnr IN s_m_num AND
            mseg~lifnr IN s_v_num.
    Next, I commented out certain lines further and found that there is still no data contained in the internal table gt_1 again, as follows:-
      SELECT ekbe~ebeln
             mseg~mblnr
             ekbe~belnr
             ekbe~ebelp
             ekbe~matnr
             ekbe~menge
             ekbe~dmbtr
             ekbe~werks
             mseg~lgort
             mseg~lifnr
             " lfa1~name1
      FROM ekbe INNER JOIN mseg ON mseg~ebeln = ekbe~ebeln
                        " INNER JOIN lfa1 ON lfa1~lifnr = mseg~lifnr
      INTO CORRESPONDING FIELDS OF TABLE gt_1.
      " WHERE mseg~bwart = '101' AND     
            " ekbe~vgabe = '2' AND 
            " ekbe~matnr IN s_m_num AND
            " mseg~lifnr IN s_v_num.
    There should be data contained in table ekbe here. What could have really gone wrong now?

  • Upgraded to 10.8.3 on Mac mini and things have gone wrong

    Ok I am using a late 2009 mac mini 4 gig computer and been on Mountain Lion 10.8.2 for some time with nothing going wrong with my computer at all. I decided to update to the new 10.8.3 and have left it a few days but nothing is resolving. Things have slowed down and getting the spinning wheel happening alot, screen freezes for a few seconds and then everything is fine then freezes again. My itunes keeps stopping in songs and starting again, it is like the computer is doing catch up or its thinking about things. It is getting me down and dont know what to do.
    I have repaired disk permissions and ran clean my mac, everything was fine before I put this 10.8.3 on my mac. Can someone please tell me how do I put 10.8.2 back on ? I read where someone said on line that reinstall 10.8.3 but do not know how to do this.
    If someone can help I would really appreciate this

    Thank you very much Barney for your reply, I have got rid of my clean my mac as sometimes I thought it was more a hinderance than a cure and I went to disk utilities and clicked verify diak and within 5 minutes it says the following
    Incorrect number of file hard links
    Checking catalog hierarchy.
    Checking extended attributes file.
    Checking volume bitmap.
    Checking volume information.
    The volume Mac Mini 10.8.3 was found corrupt and needs to be repaired.
    Error: This disk needs to be repaired using the Recovery HD. Restart your computer, holding down the Command key and the R key until you see the Apple logo. When the OS X Utilities window appears, choose Disk Utility.
    I really feel like I am in the deep end here, please can you explain to me what I do to get this sorted out step by step pleas ? as never had any problem with this computer since I bought it and dont really know what I am doing.
    So I understand I need to press command and r key, once I have done that do I need to go back in to utilities and verify disk and repare permission, hope you can explain to me  like Im stupid please :-)

  • Printer problem and where Apple have gone wrong....

    Using a Canon ip100 printer with Lion now gives an error message every time I want to print - says printer is not connected. Have to disconnect usb then reconect and it works.
    Also occasionally getting error message telling me I've just shut my computer down and it will restart - when I haven't!
    I'm not used to things not working properly on my Mac!
    I love progress, but am really disappointed with Apple with this release. It has lost it's clean simplicity, it's lost it's intuiative use, it's got bugs, amateurish graphics, childlike icons and feels generally dumbed down. - perhaps Macs are no longer for the discerning creative user, with Apple now prefering the profits associated with appealing to the masses. Despite decades of excellence under Steve Job's leadership is possible for even Apple to get it wrong - just like Microsoft did with Vista!  A pity - I don't feel I can enthuse about my Mac anymore.....

    With regards to the iP100, check that you are using v10.42.3.0 of the printer driver. This information can be found in System Information > Hardware > Printers.

  • My reminders have gone wrong since uploading ios7

    Since uploading ios7 my reminders were all wrong. So I wiped them to reset them. However now I can't set anymore. It doesn't look like it should when I open reminders it doesn't have date or any other options. It's very annoying as I use them to remind me to take medication. Anyone know what to do? I can't see anyway out help!

    First thing to try is to reset your device. Press and hold the Home and Sleep buttons simultaneously until the Apple logo appears. Let go of the buttons and let the device restart. See if that fixes your problem.
    Did you tap on a blank line to create a new reminder?

  • Some things have gone wrong

    There seems to be a light purple spot on my iPod. It is not located on the screen but near the scroll wheel. It will not rub off. Also my back light is wigging out. I have it set on 2secs and have the brightness all the way down. This is to conserve battery life. Every time I take my iPod off of hold, the back light springs to life at full brightness then flickers for a while then going off. As I look at it now, the little lock icon does not show up when I put my iPod on lock. Can anyone help me?

    I agree with epsilon delta and the others. Forums do seem to be the place where people come to look for answers or to ask questions.
    I have had my 16GB 3GS for around 4-5 weeks now, when I first got it it had 3.0 on it, I was asked when I connected the iPhone to iTunes for the first time if I wanted to update the software to 3.1 which I did with no problems whatsoever. At a later date I updated to 3.1.2 and I have also had no problems whatsoever with this update too. I think you should update especially has 3.1.2 has been out a little bit now.
    A bit of advice I would give is perhaps not update to the latest software version in the future straight away. What I do is wait a little while and keep checking back on this forum to see if there is any problems reported etc. But bear in mind like epsilon delta said:
    'Taking into account the millions of iPhone users worldwide, the number of people reporting problems on this website is a very very small percentage'

  • What could have gone wrong?

    I installed PHP 4.4.6 + Oracle instant client 10g(win32) + Apache 2.0.59 (Win32) on my Windows XP Professional Version 2002 SP2.
    I enabled php_oci8.dll in my php.ini. Also put tnsname.ora under C:\instantclient_10_2.
    I loaded phpinfo.php and it shows "OCI8 Support      enabled"
    However when I use below script to test:
    <?php
    if ($c=OCILogon("user", "pw", "db")) {
    echo "Successfully connected to Oracle.\n";
    OCILogoff($c);
    } else {
    $err = OCIError();
    var_dump($err);
    print "\nError code = " . $err;
      print "\nError message = "  . $err[message];
      print "\nError position = " . $err[offset];
      print "\nSQL Statement = "  . $err[sqltext];
      echo "\nOracle Connect Error " . var_dump( OCIError() );
    ?>
    The output is:
    Interactive mode enabled
    bool(false)
    Error code =
    Error message =
    Error position =
    SQL Statement = bool(false)
    Oracle Connect Error
    Please help enlighten what I should do to move on.
    Many thanks,
    PHPNewbie                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    Thanks cj. I think I'm getting closer.
    After replaced php_oci8.dll, I retested a simplified script:
    if ($c=OCILogon("user", "pw", "kirin"))
    { echo "Successfully connected to Oracle.\n";
    OCILogoff($c); }
    else { $err = OCIError();
    var_dump($err);
    #echo "\nOracle Connect Error " . var_dump( OCIError() );
    ?>
    The the output is:
    Warning: ocilogon() [function.ocilogon]: OCIEnvInit() failed. There is something wrong with your system - please check that ORACLE_HOME is set and points to the right directory in C:\work\test.php on line 3
    Warning: ocierror() [function.ocierror]: OCIError: unable to find error handle in C:\work\test.php on line 6
    bool(false)
    I can't understand both warnings, isn't that ORACLE_HOME is not needed for instant client, For the second warning, isn't that OCIError does not need to pass any handle?

  • Quite suddenly several things have gone wrong with my itouch

    I have refurbished iTouch 8GB we bought from Applestore. I got it last X-mas and everything was fine until now.
    First, like others, my yahoo mail isn't working correctly in that it won't always send. I get a message that it doesn't recognize my password. I have to constantly manually re-enter my password to send. It is an intermittent problem. Probably Yahoo's fault from what I gather?
    Next, even though I have everything set to start up iTunes when I connect the iTouch to my computer (a MAC), iPhoto starts up.
    Next,  synching with iTouch and ical is no longer working. I tried the method described in another forum, of deleting the contents on my computer and starting over, etc., but now I have double events of everything, and am still missing some things that I was missing before.
    Also, my iTouch now defaults to my "work" calendar instead of "home" calendar when I enter an event. So I always have to manually enter "home" everytime I enter an event.
    This has all occurred one right after the other in the last few weeks. Could it be an updated iTunes that is causing this? I tried looking up iTunes help but just get an endless "searchiing" signal and the spinning beachball on my computer.
    Thanks!

    Although I cannot help solve all of your problems, I will do my best.
    Yahoo mail problem: can't really help you with that. Although when iCloud opens up this fall, it may be easier to use an @me.com email adress.
    iPhoto opens when you connect your iPod: Open iPhoto, then on the menu bar click "iPhoto", then click "preferences" when the windows appears, you will see "connected camera opens". Select "no application".
    If you want your home calender selected by default, go to settings>mail, contacts, calenders> scroll down to the default calender option.
    Good luck,
    Matt

  • Whenever I open itunes (not try and sync), I get a duplicate file name was specified error.  It also gives me the same error when I try and download music, saying it cant.  I just downloaded itunes so not much could have gone wrong so far.

    Before you ask, i tried going through the third-party add-on document and opening it up in safemode did not fix it.  Also, I am running it as administrator and that is not helping either.

    I DID IT! I FIXED IT, FINALLY!!! At least it worked for me. Here's what I did: from Control Panel/Programs/Programs and Features/Uninstall or Change Program, I right-clicked on iTunes and selected Repair. After that ran and completed, I went to Computer/Local Disk (C:)/Program Files. From the list, I right-clicked on iTunes and selected “Run as Administrator.” After that I tried to purchase music from iTunes, and it worked! I hope this makes sense and works for you. Good luck!

  • Where it could have gone wrong ?

    Hi ,
    i got the error :
    ORA-06550: line 4, column 1:
    PLS-00428: an INTO clause is expected in this SELECT statement
    when executing :
    declare
    begin
    select * from testing_timelogging where DESCRIPTION_LEVEL1 = 'ttttt' ;
    exception
    when no_data_found then
    dbms_output.put_line('No DATA');
    when others then
    dbms_output.put_line('OTHERS');
    end ;
    must i really declare a variable ?
    tks & rdgs

    What you are executing is a PL/SQL, and not just SQL. In PL/SQL (like any other language accessing database), you need to declare variable(s) to capture value(s) returned by a SELECT.

  • Logic gone wrong

    I am a beginner with Java and I have to make a TicTacToe game for a project. However the logic behind what I have done already seems to have gone wrong. The problem is I have created a File menu for my Frame, within that menu is an option to set the grid size for the Table 3x3 or 9x9 so when a user selects 9x9 I want the game to reset itself, the grid size is passed in through the constructor. But the problem is the Constructor is called in another Java file. So I cant get it to reset, what is the best way to tackle this. Sorry for such a long post.
    I have my main class
    import java.awt.*;
    import java.awt.event.*;
    class TicTacToe extends Frame implements ActionListener {
    //Define our constants
    private static final int FRAME_HEIGHT = 600;
    private static final int FRAME_WIDTH = 600;
    private static final int FRAME_X = 100;
    private static final int FRAME_Y = 100;
    //Create the menus and the items
    private Menu fileMenu;
    private Menu optionsMenu;
    public TicTacToe(int rows, int columns )
         //Set Frame properties
         setTitle ( "Tic Tac Toe" );
         setSize ( FRAME_WIDTH, FRAME_HEIGHT );
         setResizable ( false );
         setLocation ( FRAME_X, FRAME_Y );
         setLayout ( new GridLayout(rows,columns) );
         //Set the layout of our grid
         setGridLayout(rows, columns);
         //Set our menus and their items
         createFileMenu();
    createOptionsMenu();
         MenuBar menuBar = new MenuBar();
         setMenuBar (menuBar );
         menuBar.add (fileMenu);
         menuBar.add (optionsMenu);
         addWindowListener( new TicTacTerminator( ) );
    public void setGridLayout(int rows, int columns) {
         for(int i = 0; i < rows; i++)
    for(int j = 0; j < columns; j++)
    add(new Button("."));
    public void createFileMenu() {
         MenuItem item;
         //Menu Heading
         fileMenu = new Menu( "File ");
         // New Game option
         item = new MenuItem ( "New Game" );
         item.addActionListener( this );
         fileMenu.add ( item );
         //Quit Option
         item = new MenuItem ( "Quit" );
         item.addActionListener( this );
         fileMenu.add ( item );
         //Add line to divide menus
         fileMenu.addSeparator();
         public void createOptionsMenu() {
         MenuItem item;
         //Menu Heading
         optionsMenu = new Menu( "Options ");
         // New Game option
         item = new MenuItem ( "3 x 3" );
         item.addActionListener( this );
         optionsMenu.add ( item );
         //Quit Option
         item = new MenuItem ( "9 x 9" );
         item.addActionListener( this );
         optionsMenu.add ( item );
         public void actionPerformed (ActionEvent event)
              String menuevent;
              menuevent = event.getActionCommand( );
              if( menuevent.equals( "Quit" )){
              System.exit(0);     
    and I also have
    class TestTic {
         public static void main(String[] args) {
              TicTacToe frame = new TicTacToe(3,3);
              frame.setVisible( true );
    and
    import java.awt.event.*;
    class TicTacTerminator implements WindowListener
         public void windowClosing (WindowEvent event)
         System.exit(0);
         public void windowActivated ( WindowEvent event ) {  }
         public void windowClosed ( WindowEvent event ) {  }
         public void windowDeactivated ( WindowEvent event ) {  }
         public void windowDeiconified ( WindowEvent event ) {  }
         public void windowIconified ( WindowEvent event ) {  }
         public void windowOpened      ( WindowEvent event ) {  }
         }

    Take the parameters "new TicTacToe();" out of the main method constructor and try something like this. I think I counted 10 columns here, but thew logic structure is correct now and I'll leave you to have fun sorting that one out. Here you are;-import java.awt.*;
    import java.awt.event.*;
    class TicTacToe extends Frame implements ActionListener {
       private static final int FRAME_HEIGHT = 600;
       private static final int FRAME_WIDTH = 600;
       private static final int FRAME_X = 100;
       private static final int FRAME_Y = 100;
       private Menu fileMenu;
       private Menu optionsMenu;
       int rows = 3, columns = 3;
    public TicTacToe(){
       setTitle ( "Tic Tac Toe" );
       setSize ( FRAME_WIDTH, FRAME_HEIGHT );
       setResizable ( false );
       setLocation ( FRAME_X, FRAME_Y );
       setLayout ( new GridLayout(rows, columns) );
       setGridLayout(rows, columns);
       createFileMenu();
       createOptionsMenu();
       MenuBar menuBar = new MenuBar();
       setMenuBar (menuBar );
       menuBar.add (fileMenu);
       menuBar.add (optionsMenu);
       addWindowListener( new TicTacTerminator( ) );
    public void setGridLayout(int rows, int columns) {
       for(int i = 0; i < rows; i++){
          for(int j = 0; j < columns; j++)
             add(new Button("."));
    public void createFileMenu() {
       MenuItem item;
       fileMenu = new Menu( "File ");
       item = new MenuItem ( "New Game" );
       item.addActionListener( this );
       fileMenu.add ( item );
       item = new MenuItem ( "Quit" );
       item.addActionListener( this );
       fileMenu.add ( item );
       fileMenu.addSeparator();
    public void createOptionsMenu() {
       MenuItem item;
       optionsMenu = new Menu( "Options ");
       item = new MenuItem ( "3 x 3" );
       item.addActionListener( this );
       optionsMenu.add ( item );
       item = new MenuItem ( "9 x 9" );
       item.addActionListener( this );
       optionsMenu.add ( item );
    public void actionPerformed (ActionEvent event){
       String menuevent = event.getActionCommand( );
          if( menuevent.equals( "Quit" ))System.exit(0);
          if( menuevent.equals( "3 x 3" )){
             rows    = 3;
             columns = 3;
             setLayout ( new GridLayout(rows, columns) );
             setGridLayout(rows, columns);
             validate();
          if( menuevent.equals( "9 x 9" )) {
             rows    = 9;
             columns = 9;
             setLayout ( new GridLayout(rows, columns) );
             setGridLayout(rows, columns);
             validate();
    }

  • The screen gone wrong

    Dear Sir/Madam,
         I have found out that every time I plug in my lightning into my iPhone, I can see that the screen and the touch sensor of the phone have gone wrong. Sometime  I can see that it is like someone tap on an app and it load that app up without I even do it. If I leave the keyboard on the screen, without tapping any of those letters... the screen just tap on itself. Even worse, everytime I scroll from one page to another in home screen or scroll up and down in safari.... I can see that it lag and not smooth at all. It like the screen just gone not function well.
         Here is the trick. Everytime I remove lightning out, the device just work back fine. Is this charger issue or OS issue ? Please help!!
    Sincerely Yours,
    Justin P.

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.)
     Cheers, Tom

  • Upgrade: Tiger to Snow leopard gone wrong...

    Hi,
    I am trying to upgrade my iMac from Tiger (latest version) to Snow Leopard with the box set. The upgrade goes as far as completing the loading of Snow, but then the rainbow pinwheel of infinity starts spinning in a blank screen, and nothing further happens.
    I called the tech line and was told to erase my HD and start from scratch (the tech was obviously not very interested in trying to solve the problem rather than giving me a quick fix). I don't WANT to do that - defeats the purpose of an UPGRADE. If I did, I would have stayed with a PC. Where's the wonderful Apple superiority???
    I made a backup with the backup program in Tiger (the umbrella-icon program), but am not sure it has everything I need and want, and even if it does, will it load in Leopard? The tech said I could reload Tiger and yada yada yada, with no real intention of helping me through the process. He was NOT very helpful at all (my first bad experience with an Apple tech).
    So, currently my iMac is down for the count. Any ideas as to why SL wouldn't load completely or run? Would having a printer and an Airport hooked up mess things up? And any suggestions as to what I do now (other than track down someone at Apple to scream at and demand a refund)?
    Thanks for any ideas

    Rita, there are a bazillion things that could have gone wrong and maybe the AppleCare tech was just interested in getting you off the phone with the easiest and quickest solution. Then again, if/when we finally get this sorted out you may wish you had done exactly that Having performed hundreds of upgrades (no exaggeration, I'm a tech) I've not seen too many failures and those that have been brought to me typically involved outdated software that crashed the system, various hardware issues, and software still installed that should have been removed (so called haxies).
    Since I wasn't there to watch SL install I'm going to assume for the moment that it installed normally. Restart your computer and then immediately hold down the left shift key. This is a safe boot. The three main things that Safe Boot will do is to perform a directory check of your hard drive, erase some cache files (which might be the cause of your problem), and it will not load some drivers and non-Apple startup items (which also might be the cause). (If you don't have automatic log-in turned on, after you select your account and type in your password press the shift key again so the startup items won't load.) Safe Boot isn't a normal startup so don't be surprised that you cannot go online, print, or do some other things. This is for diagnostics only.
    If your computer successfully gets to the Finder, immediately restart as normal and see what happens. If it beachballs again, restart in safe mode and once it gets to the Finder, open the System Preferences and remove all the startup items from your account because one of them may be the problem. Then try restarting again.
    Your backup program is Backup (which version I don't know) and I think it was part of the MobileMe package. It isn't the best backup solution in the world but it does save the important data.

  • I am trying to use siri. It was working earlier. Now when I ask it to call name and number it say, Siri keeps saying( SORRY SOMETHINGS GONE WRONG CAN YOU TRY AGAIN) I HAVE TRIED SEVERAL NAMES AND NUMBERS IN MY CONTACTS.   What am I doing wrong or how can

    I am trying to use siri, Siri keeps saying( SORRY SOMETHINGS GONE WRONG CAN YOU TRY AGAIN)
    I HAVE TRIED SEVERAL NAMES AND NUMBERS IN MY CONTACTS.
    What am I doing wrong or how can I correct it.

    Siri Fix
    Turn OFF Siri
    Reset Network Settings
    Turn ON Siri
    Done
    Steps:
    Tap Settings App>General>Siri>Turn OFF
    General>Reset, near bottom>Reset Network Settings
    Tap Settings App>General>Siri>Turn ON
    Done

  • I am totally frustrated by the fact that now i have gone to iCloud and after a few synchs, my contacts are all mixed up with the wrong information.  For instance, my email and phone number comes up under someone else's name (a thousand contacts)

    I am totally frustrated by the fact that now i have gone to iCloud and after a few synchs, my contacts are all mixed up with the wrong information.  For instance, my email and phone number comes up under someone else's name (a thousand contacts).  I dont know how to repair this.  what a nightmare

    An icloud account is designed to be used by just one user.  If you have given your ID or set up your account on someone else's device, then their data will be mingled with your or worse.

Maybe you are looking for

  • AppIntegrator - Issue with Passing Application parameters

    Hi, I've created a WebApplication system using 'HowTos' (com.sap.portal.howtos.webapp.par) file and set the system parameters. I've created a generic iView with AppIntegrator par file (com.sap.portal.appintegrator.sap.par). Where I've passing the par

  • Image display QUALITY controll bar/change/modifi

    Hello the bridges display quality of jpegs and raw images is awfull!!! i see blockiness in all of my images, how can i watch my photos like this?? there is no crispness! u should made a picture display quality controll bar like speed-------quality so

  • Handle multiple connections on server side

    Hi, I am trying to enable many clients to connect to my server at the same time. So far what i have done is to create a serverSocket named theSocket and accept incomming connection : theSocket.accept(). Each time a connection is established my server

  • Integrated Planning : URGENT

    Hello I am having some problem with my budgets for the 12th period. I have posted ques but nobody has replied to it. Can someone please give me their email id so that i can explain what the issue is. I would be really thankful to you. It has been 2 d

  • Contingent Worker in HRMS

    We already have candidates, employees and applicants in Oracle HRMS. We want to store Contigent worker as well. we have setup person types, number generation method. What all other things we need to consider for this.