Playback Bar suddenly gets too big after 15 slides

I'm publishing my first project in Captivate5, after using Captivate3 for several years.
I publish to SWF without HTML, because the published file gets incorporated into a Flash-based environment on my client's server.
In the Skin Editor, I specified "Show Playback Control" "Playbar Overlay" and position "Top" and Layout "Top Right"
The results that I want are the ones I always got in Captivate3, where the Playback Control overlaid the top right portion of the displayed screens.
In Cap5, this only works for 15 slides, then suddenly the Playbar goes crazy and adds some unwanted vertical space to all the rest of my screens, forcing some of my desired content to disappear off the bottom of the screen. There is now a whole lot of wasted, blank space to the left of the Playback Control.
Is this a known bug, and/or is there a workaround?

Published again with same settings -- this time with different results.
This time, it worked the way it's supposed to.
Mildly disconcerting...

Similar Messages

  • My screen suddenly zooms too big w/o me touching anything.  Please help. I recently "upgraded" to Mountain Lion on my iMac

    My screen suddenly zooms too big without me touching anything (i.e. mouse or keyboard).  I can't reduce it.  Part of the menu reappears when I click at the very top, but I can't even get the red-yellow-green buttons to show.  I recently "upgraded" to mountain lion.  Did not have this problem in the past.  My settings appear to be correct.  Any suggestions?

    Hi, have you tried setting a different rez in thje Disply Pref Pane of System Prefs?
    Do those things show if you Safe Boot from the HD, (holding Shift key down at bootup)?

  • Display unaccountably gets too big for the screen

    This has happened maybe a dozen times, and I don't know what I did to make it happen. Suddenly, the desktop display gets too large for the screen, and I have to scroll around to find the dock or the menu bar. Whatever else I'm working on, e-mail, etc., gets outsized, too. Does anyone know how to correct this? So far, restarting has worked, but that's a pretty time-consuming way to do it.

    Cindy,
    Hold down the CNTL key and scroll down with the mouse or trackpad. That should change it back to size. This is called screen zoom.
    Cheers
    You can also deactivate it in System Preferences for the Mouse and/or trackpad.
    Message was edited by: captfred

  • Can a file get too big to load?

    I have a file that is HD and I've been editing it for about two weeks. Its about 2 hours long and I just started adding livetype titles as its nearly complete.
    But this afternoon, I had to reboot my computer and now the file wont reload (gets to 47% then says "file cannot be loaded.")
    Did it go corrupt? Or is it more likely that I've just pushed the file's requirements past my system's memory allotment?
    Even today's autosaved files wont load (so I had to go back to a saved version from earlier this week).
    I have 3gb of memory installed. Is FCE trying to tell me I have to install memory?
    Either way, if the file get's too big for the machine, why wouldn't FCE have crashed? The file closed down with no problems and this is the second time its happened.

    I'm using 3.5 HD and the project file is 4.5MB
    I'm starting to fear the problem has to do with the livetype movie inserts. The application didn't even hiccup until I started adding my title-ing sequences -- especially one particular psd import that uses a transparent background.
    I'm going to give your suggestion a true and report back, though...
    thanks.

  • Suddenly getting "Too Many Open File" error

    Dear All,
    I have listener program which have been working well for the past few months. Suddenly I start to get "Too Many Open File" error. What can be solution? Is it I need to increase the file descriptors or any other solution? Thank you.

    Dear Ejp,
    Attached below is my codes. I have remove some of the fields for db just to make the code a bit more easier to read. Where do you think is leaking?
    public class commServer {
    public static void main(String[] args) {
    try {
                   final ServerSocket serverSocketConn = new ServerSocket(8888);
                        while (true)
                                  try
                             Socket socketConn1 = serverSocketConn.accept();
    new Thread(new ConnectionHandler(socketConn1)).start();               
                                  catch(Exception e)
                                                 System.out.println(e.toString());
    catch (Exception e)
    System.out.println(e.toString());
    //System.exit(0);
    class ConnectionHandler implements Runnable {
    private Socket receivedSocketConn1;
    DateFormat dateFormat = new SimpleDateFormat("dd/MM/yyyy HH:mm:ss");
    DateFormat formatter = new SimpleDateFormat("EEE, dd MMM yyyy");
    DateFormat inDf=new SimpleDateFormat("ddMMyyHHmmss");
    DateFormat outDf=new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    ConnectionHandler(Socket receivedSocketConn1) {
    this.receivedSocketConn1=receivedSocketConn1;
    //@Override
    public void run() {
    Connection dbconn = null;
    BufferedWriter w = null;
    BufferedReader r = null;
    try {
    PrintStream out = System.out;
         BufferedWriter fout = null;
    w = new BufferedWriter(new OutputStreamWriter(receivedSocketConn1.getOutputStream()));
    r = new BufferedReader(new InputStreamReader(receivedSocketConn1.getInputStream()));
    int m = 0, count=0;
    String line="";
    String n="";
    w.write("$PA\n");
    w.flush();
    while ((m=r.read()) != -1)
    Date dateIn = new Date();
         n = n + (char) m;
         int i = n.indexOf("GET");
                                  if(i != -1) {
                                       break;
         if (m==35)
         String ori = n;
         String noCheckSum = n.substring(0,(n.length()-4));
                   int addExist = n.indexOf("@");
    String[] slave = null;
    if(addExist!=-1)
         slave = noCheckSum.split("@");
              n = slave[0];
              //System.out.println(" slave : "+slave.length);
                   else
                        n = noCheckSum;
         String[] result = n.split(",");
         Statement stmt = null;
         w.write("$PA\n");
    w.flush();
                   int count1 = 0;
    Date date = Calendar.getInstance().getTime();
    String today = formatter.format(date);
                        String filename= "MyDataFile"+today+".txt";
    boolean append = true;
    FileWriter fw = null;
    try
    fw = new FileWriter(filename,append);
         fw.write(ori+" "+dateFormat.format(dateIn)+"\n");//appends the string to the file
         Date dateOut = new Date();
         fw.write("$PA"+" "+dateFormat.format(dateOut)+"\n");//appends the string to the file
    catch (IOException ex)
                        //ex.printStackTrace(new PrintWriter(sWriter));
                        System.out.println("MyError:IOException has been caught in in the file operation");
                        ex.printStackTrace();
                        finally
                   try
         if ( fw != null )
              fw.close();
         else
              System.out.println("MyError:fw is null in finally close");
                        catch(IOException ex){
                        System.out.println("MyError:IOException has been caught in fw is null in finally close");
                        ex.printStackTrace();
         try
                             String deviceID=result[3].trim();      
                             String dateTime=result[4].trim();                          
                             String[] result2 = result[10].split("'");                          
                             String gpsDate = result2[1].trim().substring(0,6);                    
                             String gpsTime = result2[1].trim().substring(6,12);                         
                             String gpsLat = result2[1].trim().substring(13,20);
                             String latitude = result2[1].trim().substring(13,20).substring(0,2)+"."+result2[1].trim().substring(13,20).substring(2,7);
                             String gpsLong = result2[1].trim().substring(21,29);
                             String longitude = result2[1].trim().substring(21,29).substring(0,3)+"."+result2[1].trim().substring(21,29).substring(3,8);
                             String speed = result2[1].trim().substring(30,33);                         
                             String course = result2[1].trim().substring(33,36);
                   String dateTimer = null;
                             try
                             Date inDate=null;
                             inDf.setTimeZone(TimeZone.getTimeZone("UTC"));
                             inDate=inDf.parse(dateTime);
                             outDf.setTimeZone(TimeZone.getTimeZone("Asia/Kuala_Lumpur"));
                                       dateTimer=outDf.format(inDate);
                             catch(ParseException ex)
                             System.out.println("MyError:Parse Error has been caught for date parse close");
              ex.printStackTrace();
                        dbconn = DriverManager.getConnection("jdbc:mysql://192.168.1.155:3306/db1?"+"user=db1&password=test1");
                   stmt = dbconn.createStatement();
                   String selectQuery2 = "Select * from tripData Where deviceID='"+ deviceID +"' and dateTimer>'"+dateTimer+"' Order By dateTimer Desc Limit 1";
                   ResultSet rs2 = stmt.executeQuery(selectQuery2);
                   String updateQuery = "";
                   if(rs2.next())
                        String previousLatitude="";
                        String previousLongitude="";
                        String previousSpeed="";
                        previousLatitude = rs2.getString("latitude");
                        previousLongitude = rs2.getString("longitude");
                        previousSpeed = rs2.getString("speed");
                        updateQuery = "UPDATE device SET " +
                                       "latitude='" + previousLatitude +
                                       "',longitude='" + previousLongitude +
                                       "',speed='" + previousSpeed +
                                       "' WHERE serialNumber='" + deviceID + "'";
                   else
                   updateQuery = "UPDATE device SET " +
                                       "latitude='" + latitude +
                                       "',longitude='" + longitude +
                                       "',speed='" + speed +
                                       "',course='" + course +
                                       "',dateTimer='" + dateTimer +
                                       "' WHERE serialNumber='" + deviceID + "'";
                        count = stmt.executeUpdate(updateQuery);                    
                   String insertQuery = "INSERT INTO tripData" +
                                       "(latitude,longitude,speed,course,dateTimer,deviceID)" + " VALUES ('" +
                                       latitude + "','" + longitude + "','" + speed + "','" + course + "','" + dateTimer + "','" + deviceID + "' )";
         count = stmt.executeUpdate(insertQuery);
              if(addExist!=-1)
              for(int iSlave=1; iSlave<slave.length ; iSlave++)
                                            String[] slaveDetails = slave[iSlave].split(",",-1);
                                            String slaveEventType = slaveDetails[0];
                                            String slaveGroup = slaveDetails[1];
                                            String slaveUnitID = slaveDetails[2];
                                            String slaveBattLevel = slaveDetails[3];
                                            String slaveSwitchStat = slaveDetails[4];
                                            String slaveTempHumid = slaveDetails[5];
                                       String slaveTemp="",slaveHumid="";                                   
                                       if(slaveTempHumid.length()>0)
                                       slaveHumid = slaveTempHumid.substring(5,7);
                                                 if(slaveTempHumid.charAt(0)=='P')
                                                 slaveTemp = "+"+slaveTempHumid.substring(1,3)+"."+slaveTempHumid.substring(3,5);                                                  
                                                 else if(slaveTempHumid.charAt(0)=='M')
                                                 slaveTemp = "-"+slaveTempHumid.substring(1,3)+"."+slaveTempHumid.substring(3,5);
                                       slaveBattLevel = slaveBattLevel.trim().substring(0,2)+"."+slaveBattLevel.trim().substring(2,3);
                                            String insertQuery2 = "INSERT INTO tripDataSlave" +
                                            "(dateTimer,deviceID,slaveUnitID,slaveEventType,slaveGroup,slaveBattLevel,slaveSwitchStat,slaveTemp,slaveHumidity)" + " VALUES ('" +
                                            dateTimer + "','" + deviceID + "','" + slaveUnitID + "','" + slaveEventType + "','" + slaveGroup + "','" + slaveBattLevel + "','" + slaveSwitchStat + "','" + slaveTemp + "','" + slaveHumid + "')";
              count = stmt.executeUpdate(insertQuery2);
                   catch (SQLException ex)
    System.out.println("MyError:Error : "+ex);
                        finally
                        try
                             if ( stmt != null )
                             stmt.close();
                             else
                                  System.out.println("MyError:stmt is null in finally close");
                        catch(SQLException ex){
                        System.out.println("MyError:SQLException has been caught for stmt close");
    ex.printStackTrace();
                        try
                             if ( dbconn != null )
                             dbconn.close();
                             else
                             System.out.println("MyError:dbconn is null in finally close");
                        catch(SQLException ex){
                        System.out.println("MyError:SQLException has been caught for dbconn close");
    ex.printStackTrace();
         n="";
    catch (IOException ex)
    System.out.println("MyError:IOException has been caught in in the main first try");
    ex.printStackTrace();
    finally
    try
         if ( w != null )
              w.close();
         else
              System.out.println("MyError:w is null in finally close");
    catch(IOException ex){
    System.out.println("MyError:IOException has been caught in w in finally close");
    ex.printStackTrace();
    }

  • If my screen gets too big to use what do i do?

    Hi
    I would like to know how to fix my phone the screen has got too big for me to access it

    ok this is simple all you have to do is double tap it tap twice quite quickly in the same place hope this helps

  • Kernel Panic - what's a catalog key offset and how does it get too big??

    Can anyone shed any light on this mess?
    Tue Aug 12 14:09:09 2008
    panic(cpu 0 caller 0x00248F0C): "hfsswapHFSPlusBTInternalNode: catalog key #48 offset too big (0x0000)\n"@/SourceCache/xnu/xnu-1228.5.20/bsd/hfs/hfs_endian.c:455
    Latest stack backtrace for cpu 0:
    Backtrace:
    0x0009B498 0x0009BE3C 0x00029DD8 0x00248F0C 0x0023F140 0x0010F750 0x00110038 0x00259B90
    0x00107218 0x000F5F70 0x000F1364 0x000F5FBC 0x0030AC5C 0x000B2C48 0x00000000
    Proceeding back via exception chain:
    Exception state (sv=0x2c126280)
    PC=0x903896D8; MSR=0x0000D030; DAR=0xE0027000; DSISR=0x42000000; LR=0x00001F7C; R1=0xBFFFFE80; XCP=0x00000030 (0xC00 - System call)
    BSD process name corresponding to current thread: update
    Mac OS version:
    9E17
    Kernel version:
    Darwin Kernel Version 9.4.0: Mon Jun 9 19:36:17 PDT 2008; root:xnu-1228.5.20~1/RELEASE_PPC
    System model name: PowerMac8,1

    My latest crash, below. I can't figure this out. I've actually ordered new RAM in case that's part of the problem what's up with the coreservices.framework??
    Jon
    Process: mds [36]
    Path: /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
    Identifier: mds
    Version: ??? (???)
    Code Type: PPC (Native)
    Parent Process: launchd [1]
    Date/Time: 2008-08-16 04:20:02.278 -0700
    OS Version: Mac OS X 10.5.4 (9E17)
    Report Version: 6
    Exception Type: EXCBADACCESS (SIGBUS)
    Exception Codes: KERNPROTECTIONFAILURE at 0x0000000000000000
    Crashed Thread: 17
    Application Specific Information:
    /SourceCache/Spotlight/Spotlight-398.18/index/ContentIndex/FlatStore.c:188: failed assertion 'pageSize >= pageEnd && pageSize && (_builtinpopcount(pageSize+sizeof(*page)) == 1)' /.Spotlight-V100/Store-V1/Stores/68FEB038-1559-4E12-AE27-CC5332024A80/live.1.in dexArrays ps:0, pe:0, pk:1, po:54780, ss:100000 se:7e780
    (Error) IndexStore in SIStoreDirytySDBChunks:Error storing dirty sdb pages: 30
    Thread 0:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0000d6fc 0x1000 + 50940
    5 mds 0x00005540 0x1000 + 17728
    Thread 1:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 2:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 3:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 4:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 5:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 6:
    0 libSystem.B.dylib 0x90323e48 _semwaitsignal + 8
    1 libSystem.B.dylib 0x90360a00 pthread_condwait + 1580
    2 mds 0x00009c64 0x1000 + 35940
    3 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 7:
    0 libSystem.B.dylib 0x9032a900 read$UNIX2003 + 12
    1 mds 0x00009908 0x1000 + 35080
    Thread 8:
    0 libSystem.B.dylib 0x9035ee98 kevent + 12
    1 mds 0x0007f464 0x1000 + 517220
    Thread 9:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 10:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 11:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 12:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 13:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.spotlight.index 0x0020d874 _handleExceptions + 208
    3 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 14:
    0 libSystem.B.dylib 0x9031d438 machmsgtrap + 8
    1 libSystem.B.dylib 0x9032435c mach_msg + 56
    2 com.apple.CoreFoundation 0x9168a568 CFRunLoopRunSpecific + 1812
    3 mds 0x0005a7a4 0x1000 + 366500
    4 mds 0x0005a568 0x1000 + 365928
    5 com.apple.Foundation 0x93f16dec _NSThread__main_ + 1004
    6 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 15:
    0 libSystem.B.dylib 0x9031d4b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x903608fc pthread_condwait + 1320
    2 com.apple.spotlight.index 0x0017d3c4 sischeduler_run_waitingtimeout + 188
    3 com.apple.spotlight.index 0x00168e90 runLoop + 72
    4 com.apple.spotlight.index 0x001690f4 flush_runLoop + 72
    5 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 16:
    0 libSystem.B.dylib 0x9031d4b8 semaphoretimedwait_signaltrap + 8
    1 libSystem.B.dylib 0x903608fc pthread_condwait + 1320
    2 com.apple.spotlight.index 0x0017d3c4 sischeduler_run_waitingtimeout + 188
    3 com.apple.spotlight.index 0x00168e90 runLoop + 72
    4 com.apple.spotlight.index 0x00168fa4 setattr_runLoop + 72
    5 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 17 Crashed:
    0 com.apple.spotlight.index 0x0021947c deadbeef + 32
    1 com.apple.spotlight.index 0x00198d64 mergeEntryFlat + 1028
    2 com.apple.spotlight.index 0x0018c988 mergeEntryFat + 600
    3 com.apple.spotlight.index 0x0018d918 bt_mergeEntry + 152
    4 com.apple.spotlight.index 0x0018dbb0 mergeCallback + 368
    5 com.apple.spotlight.index 0x001db8a8 TermUpdateSetIterateCompressed + 3752
    6 com.apple.spotlight.index 0x00183400 bt_mergeSet + 320
    7 com.apple.spotlight.index 0x001a63f0 index_FlushCache + 1168
    8 com.apple.spotlight.index 0x001a6660 indexPrepareForSync + 112
    9 com.apple.spotlight.index 0x00190b5c _ContentIndexSyncIndexBulk + 1152
    10 com.apple.spotlight.index 0x00191858 ContentIndexSyncIndexBulk + 92
    11 com.apple.spotlight.index 0x0016ecf4 syncIndex + 580
    12 com.apple.spotlight.index 0x0017cf10 siwork_queueprocess + 760
    13 com.apple.spotlight.index 0x0017d1ac sischeduleronce + 356
    14 com.apple.spotlight.index 0x0017d1fc sischeduleronce + 436
    15 com.apple.spotlight.index 0x0017d588 sischeduler_run_waitingtimeout + 640
    16 com.apple.spotlight.index 0x00168e90 runLoop + 72
    17 com.apple.spotlight.index 0x001690f4 flush_runLoop + 72
    18 libSystem.B.dylib 0x9035f658 pthreadstart + 316
    Thread 17 crashed with PPC Thread State 32:
    srr0: 0x0021947c srr1: 0x0200f030 dar: 0x00000000 dsisr: 0x42000000
    r0: 0xdeadbeef r1: 0xf081c4d0 r2: 0x00000000 r3: 0x00000000
    r4: 0x003b2c94 r5: 0x00000464 r6: 0x00003aa8 r7: 0x00000015
    r8: 0x003fc080 r9: 0x003b2c00 r10: 0x90549a3c r11: 0x003b2c00
    r12: 0x90557108 r13: 0x01017d12 r14: 0x0000000b r15: 0xf081d804
    r16: 0xf081dad0 r17: 0x00841a40 r18: 0xf081d6f4 r19: 0x00000000
    r20: 0x00000000 r21: 0xf081c638 r22: 0x0000151e r23: 0x00000001
    r24: 0x00841ab4 r25: 0x00000000 r26: 0x00000000 r27: 0x00054780
    r28: 0x00000000 r29: 0x0007e780 r30: 0xf081c4d0 r31: 0x00198974
    cr: 0x28002442 xer: 0x00000000 lr: 0x00198d68 ctr: 0x90557108
    vrsave: 0x80000000
    Binary Images:
    0x1000 - 0xc2ffb mds ??? (???) <7657e54dbfa8f682caa400531caa5844> /System/Library/Frameworks/CoreServices.framework/Frameworks/Metadata.framework /Support/mds
    0xdf000 - 0xe1ffd com.apple.MDSChannel 1.0 (1.0) /System/Library/PrivateFrameworks/MDSChannel.framework/Versions/A/MDSChannel
    0x13c000 - 0x245ff3 com.apple.spotlight.index 10.5.2 (398.18) <7f439b312096dfbe0358c698270ac8ca> /System/Library/PrivateFrameworks/SpotlightIndex.framework/Versions/A/Spotlight Index
    0x1189000 - 0x118affc liblangid.dylib ??? (???) <5f078ac1f623f5ce432ea53fc29338c0> /usr/lib/liblangid.dylib
    0x20be000 - 0x21e3ffb libmecab.1.0.0.dylib ??? (???) <cd875e74974e4ec3a0b13eeeb236fa53> /usr/lib/libmecab.1.0.0.dylib
    0x67c6000 - 0x67caff7 libgermantok.dylib ??? (???) <4d20f26bdd859d4ee54109a0d4cd699c> /usr/lib/libgermantok.dylib
    0x8fe00000 - 0x8fe30b23 dyld 96.2 (???) <ef2061020a88c4fe1f40b8d9cb1a6101> /usr/lib/dyld
    0x9031c000 - 0x904b5fe3 libSystem.B.dylib ??? (???) <79cf3ef34f92361dc6263d884c723c24> /usr/lib/libSystem.B.dylib
    0x9053f000 - 0x90622feb libobjc.A.dylib ??? (???) <23a407d7dac6090562827e97bac3cb86> /usr/lib/libobjc.A.dylib
    0x90623000 - 0x906f6fff com.apple.CoreServices.OSServices 226.5 (226.5) <50a4f7fe2d6078971f9ef6fc88cc5d2b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServi ces.framework/Versions/A/OSServices
    0x907fa000 - 0x90821fff libxslt.1.dylib ??? (???) <3700d04090629deddb436aa2d516c56d> /usr/lib/libxslt.1.dylib
    0x9085b000 - 0x90876ff3 com.apple.DirectoryService.Framework 3.5.4 (3.5.4) <d69161954145cf745b51ae31e0961077> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryServi ce
    0x90a1b000 - 0x90a66ffb com.apple.Metadata 10.5.2 (398.18) <0899c93992af8d2e36e4dd2ad21ba475> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadat a.framework/Versions/A/Metadata
    0x90c23000 - 0x90c9efff com.apple.SearchKit 1.2.0 (1.2.0) <1b448fbae02460eae76ee1c6883f45d6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchK it.framework/Versions/A/SearchKit
    0x91621000 - 0x91746ffb com.apple.CoreFoundation 6.5.3 (476.14) <56add4656a227fa699f8aa1427b369d9> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
    0x91747000 - 0x917ddfff com.apple.LaunchServices 289.2 (289.2) <67191ba4de2d3d14be9b4bbddd4fe0a6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchS ervices.framework/Versions/A/LaunchServices
    0x91ed9000 - 0x91f0efff com.apple.AE 402.2 (402.2) <0b15a08da8ec38b74fb9dd6e579ed25f> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.fram ework/Versions/A/AE
    0x9312d000 - 0x931b2fff libsqlite3.0.dylib ??? (???) <f2a33fe2663eab9c7f4806d2cf05b4ee> /usr/lib/libsqlite3.0.dylib
    0x9320b000 - 0x93244fff com.apple.SystemConfiguration 1.9.2 (1.9.2) <1a39075165bf7447fe8be1e93db49346> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfi guration
    0x93245000 - 0x9324aff6 libmathCommon.A.dylib ??? (???) /usr/lib/system/libmathCommon.A.dylib
    0x9324b000 - 0x932cfffd com.apple.CFNetwork 330.4 (330.4) <6e1a01b50c14cf720e067ea018c4e4ad> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CFNetwo rk.framework/Versions/A/CFNetwork
    0x93732000 - 0x93799ffb libstdc++.6.dylib ??? (???) <a4e9b10268b3ffac26d0296499b24e8e> /usr/lib/libstdc++.6.dylib
    0x9379b000 - 0x937c6ff7 libauto.dylib ??? (???) <b3a3a4b0f09653bd6d58f1847922b533> /usr/lib/libauto.dylib
    0x93830000 - 0x93839fff com.apple.DiskArbitration 2.2.1 (2.2.1) <a389b4c2badce39540f24402f7df35e7> /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
    0x9390c000 - 0x93af2ffb com.apple.security 5.0.4 (34102) <9a5739b5b522f963b320fd71581b9cf5> /System/Library/Frameworks/Security.framework/Versions/A/Security
    0x93f0d000 - 0x94152ffb com.apple.Foundation 6.5.5 (677.19) <1667218c075b6e69728c5c2dd9ff6065> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
    0x948df000 - 0x94973ff7 com.apple.framework.IOKit 1.5.1 (???) <c1d6fa5eb7372b90ca4fea8910170152> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
    0x94ca8000 - 0x94cb0fff libbsm.dylib ??? (???) <c1fca3cbe3b1c21e9b31bc89b920f34c> /usr/lib/libbsm.dylib
    0x94fec000 - 0x95004ffb com.apple.DictionaryServices 1.0.0 (1.0.0) <fe37191e732eeb66189185cd000a210b> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Diction aryServices.framework/Versions/A/DictionaryServices
    0x950e8000 - 0x951deffc libiconv.2.dylib ??? (???) <05ae1fcc97404173b2f9caef8f8be797> /usr/lib/libiconv.2.dylib
    0x951df000 - 0x951eaffb libgcc_s.1.dylib ??? (???) <ea47fd375407f162c76d14d64ba246cd> /usr/lib/libgcc_s.1.dylib
    0x95358000 - 0x95659ffb com.apple.CoreServices.CarbonCore 786.6 (786.6) <d2ae460a0de15ca950ac723616666507> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonC ore.framework/Versions/A/CarbonCore
    0x9565a000 - 0x95668fff libz.1.dylib ??? (???) <1a70dd3594a8c5ad39d785af5da23237> /usr/lib/libz.1.dylib
    0x9648c000 - 0x96575fff libxml2.2.dylib ??? (???) <6bf1a24e68615e0edf843988f5a0a1f4> /usr/lib/libxml2.2.dylib
    0x96590000 - 0x9659ffff com.apple.DSObjCWrappers.Framework 1.3 (1.3) <897487778bd1c0429fcd88c99c293583> /System/Library/PrivateFrameworks/DSObjCWrappers.framework/Versions/A/DSObjCWra ppers
    0x9681d000 - 0x96965ffb libicucore.A.dylib ??? (???) <dd2fd169aa328f6e97a1d700e5846866> /usr/lib/libicucore.A.dylib
    0x96c09000 - 0x96c09ffa com.apple.CoreServices 32 (32) <42b6dda539f7411606187335d9eae0c5> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
    0xfffec000 - 0xfffeffff libobjc.A.dylib ??? (???) /usr/lib/libobjc.A.dylib
    0xffff8000 - 0xffff9703 libSystem.B.dylib ??? (???) /usr/lib/libSystem.B.dylib

  • All fonts in the toolbars are way too big after unplugging my laptop from a projector

    When I plugged in a projector to my laptop (2010 MacBook Pro) all icons & fonts on my laptop went huge! I was able to mostly restore the size of the icons & fonts on my desktop after I unplugged the projector, but I can't get the font size in my toolbars back to the normal, standard size. I've tried to reset to default settings, but it makes no difference.

    Although the guide is a little dated, a lot of the information there is really great and helps you track down a lot of files that are just taking up way too much space on your hard drive.
    http://pondini.org/OSX/DiskSpace.html
    I just did this the other day on my Air running 10.9 and recovered around 50GB of disk space, so there is potentially a lot you can do. I suggest following the steps on this guide (to the T, don't want to mess anything up) and go from there. Don't delete ANYTHING that you are not aware of the function, and remember that searching for names of files is a great way to determine whether or not you need it. Some files that SEEM like junk and take up a considerable amount of space are system files that will either be replaced the next time you boot up or render you computer useless entirely.
    For example, there is a file that saves the state of your computer just before it goes to sleep so that it can return quickly when you start up again, and that file is normally the size of the amount of RAM you have (I have 4GB of RAM, so the file was 4GB). After doing some research, this file will either be recreated if deleted, or your sleep mode will not be able to function properly if the file is deleted. So again, just tread lightly.
    Also, there is an application I used to get rid of a bunch of duplicate files that I had on my drive called Gemini (http://macpaw.com/gemini), which I recommend using to clean up documents. Again, be careful, you don't want to go deleting files that you are using that the application mistook for a duplicate.
    Hope this helps!

  • NIDAQ is getting too big!

    NI is becoming like Microsoft! I realize that you manufacture many products but the time for device specific NIDAQ packages has come. I use one of your devices but I am forced to download and distribute a driver package that is almost 1GB and takes nearly an hour to install. Please, please, please change this. Let us get packages for just what we want! Small, simple and quick is good. Big, complex and slow is bad.
    Thanks,
    Adam

    Hello Sunil,
    It was decided by our R&D department to use the same driver for a
    majority of our hardware and make it as easy to use as possible.  This
    way, as Alex said, using similar devices would not require major (or in
    some case any) changes in code, and new applications would be easy to
    program by someone familiar with any of our other devices.  It also
    simplifies troubleshooting, reduces the time to configure new devices
    (after the first), and makes sure that all hardware is supported to the
    same high level our customers expect.
    A side effect of this decision (and the major issue with this approach)
    is that the initial install is large and takes significant time.  I
    agree that this can be annoying, however after completed once, it should
    not have to be done again when installing new devices.  Upgrading,
    although it is a large file, should not take nearly as long since it
    only changes the parts that it needs to, or installs parts that are not
    there.  You can also unselect the drivers you do not use from the
    Driver CD installer to shorten the time further.
    The main reason that we cannot have a simple anti virus-like update is
    due to the changes we are making for the upgrade.  It is not just
    updating settings or libraries, it is changing parts of the actual
    driver code deep within the program.  It is more comparable to a new
    version release of the anti-virus software than an update to the virus
    definitions.
    Since the DAQmx driver is used for most of our hardware (or the driver
    that is used is based off of it), the install/upgrades we have are as
    device specific as they can be.  The driver CD contains all of our
    drivers, but allows you to choose which it installs/modifies.
    If you are deploying the driver to a target computer, you can
    drastically reduce the size of the installation by choosing a smaller
    runtime of the DAQmx driver.  The link that Alex provided, as well as this Developer Zone article discribes how to do that.
    This being said, we are always looking for feedback on how we can improve.  I would strongly encourage you to make a Product Suggestion about this.
    R&D looks at all of these and uses them in their decision making
    processes.  I hope this explanation shows that we are not just giving
    you a large download because its easy for us, but we believe the pros
    of this method we use outweigh the cons (including the installer).
    Neal M.Applications Engineering       National Instruments        www.ni.com/support

  • Image size too big after drag and drop from iphoto

    I capture around 30 images/day with a point and shoot digital camera (5 MB/image). These images are used as content for about 10 documents/day that I create in Pages. After importing them into the computer I convert to grayscale and resize (via batch processing) in photoshop, so that each image is about 2x2.67 inches, 300ppi, and drop into iphoto. This is the size/resolution that i want them to be when i import them into the pages documents I am creating. When i drag them into pages though they resize to 72 ppi, as if the default is that the document will be seen on the screen and not printed. I then have to resize them again from within pages, which is a pain. Does anybody know what I am doing wrong?
    Thank you.

    You'll get best help on a question like that on Adobe's InDesign forum.

  • Some iPad apps getting so big after update

    Hi everyone,
    Few days ago I have updated several apps on my iPad 3 after updating it to iOS 6. A couple of days later I've realized that three particular apps have grown in size, Asphalt7 growed from 1.01 to 1.50 Gb (but it perhaps is normal after the update), BUT iBook have increased for ~40 Mb to 1 Gb!!! Also, the Simpsons Tapped out game is now taking 890 Mb while the same app on my iPhone takes only 394 Mb. What is happening? How can I claim all those missing Mb? I tried deleting iBooks and reinstalling it, but I cannot get my space back, even then I delete the app, only 40 Mb are freed.
    Any thoughts will be appreciated

    Try some basic troubleshooting:
    (A) Try reset iPad
    Hold down the Sleep/Wake button and the Home button at the same time for at least ten seconds, until the Apple logo appears
    (B) Try reset all settings
    Settings>General>Reset>Reset All Settings
    (C) Setup as new (data will be lost)
    Settings>General>Reset>Erase all content and settings

  • Image size is too big after "Smart Build Grid"

    The Smart Build Grid feature is awesome. Unfortunately, I have one issue with it- it sometimes zooms the images too much when using the grid feature.
    Specifically, I have a 4 x 3 matrix of rectangular images. With each Zoom from the grid, Keynote zooms too much, so that the center of the image is nicely displayed, but cuz it zooms too much, important info on the sides of the image is cropped out in the magnified image.
    How can I set Keynote to zoom so that the zoomed image is only as big as the longest axis relative to the slide (thereby displaying all information)?
    Keynote 4.01, OS 10.4.11, PPC G4 867 MHz.
    Thank you very much!

    But the image is in
    <mx:DataGridColumn headerText="Input Status" ...
    How can it be fixed?  Please provide your advise.  Thanks.

  • In MS Word, it is possible to prevent tables from breaking at page breaks.  So, if a table, when populated with data gets too big for the spae allotted on one page, the table will move in its entirety, to the next page. Can this be done in "Pages"?

    I am trying to figure out ow to prevent tables from breaking along a row when there is a page break in "Pages".  This is done in MS Word by going under Table properties under "Rows".   I have a document with small three row tables and I want to keep the tables together and move to the next page in its entirety when there is a page break.  Help!

    The table that I don't want to break between rows looks like this, except it fits the width of the page:
    quilt name
    picture of quilt      
    source
    Size: XX; Difficulty Level: 3
    I inserted a Inline Text box into the document, copied the table inside the text box, then pasted it through the document (which lists quilting projects).  When the table spans a page break, even when in an inline text box, the picture which is in the right hand column splits, as well as the information pertaining to the particular quilt.
    Jerry - thank you for your help.  I tried to give you a "solved my problem" rating, but I am adjusting to the Mac slowly after 20+ years on a PC.

  • Small file get extremely big after saving with Excel 2013

    A file who is only 666Kb big with Excel 2007 is opened with Excel 2013. When I direct safe that file, the size increases to more than 6GB. Opening that file takes more than one minute. And Excel seems to crasch.(Not responding) The problem seems to be one
    (1) sheet. when I delete rows the size of that file is increasing up to 16 GB. This means a less filed excel sheet, makes a bigger file.

    Hi,
    The issue seems happened in the special file and it may be caused by the conditional formatting, cell format, formula calculation automatic or macros,ect. Please see the thread which some communicators discussed:
    http://answers.microsoft.com/en-us/office/forum/office_2007-excel/why-do-my-excel-files-become-huge/8235dc08-aa70-4a65-9892-b776790d79c5?page=1
    Then, we may try the Mr. Ashish's suggestion:
    =====
    1. Identify the last filled up row of data and click on any cell in one row below that
    2. Select from that row till the end and delete all rows
    3. Do the same for columns
    4. Save and close the file
    5. Shut down MS Excel
    6. Reopen the file
    =====
    If the issue still exists, please copy all the content to new/blank Excel 2013 file to test.
    Regards,
    George Zhao
    TechNet Community Support

  • RCD table getting too big

    Hello,
    Our rcd table is getting bigger (21 M records) and querying from that table takes up a lot of time.
    What is the recommended way to keep the size of that table within control?
    We can always create a materialized view to get a subset of that table so we can work with more recent records. However, this doesn't solve the problem of it getting bigger and bigger.
    Do you get it purged or archived somehow?
    Thanks
    Khanh

    Will do.
    Thank you Martin.
    Found this document on metalink:
    https://support.oracle.com/CSP/ui/flash.html#tab=KBHome(page=KBHome&id=()),(page=KBNavigator&id=(bmDocType=HOWTO&bmDocDsrc=DOCUMENT&bmDocTitle=Question%20on%20Switching%20to%20Noarchivelog%20Before%20Running%20Recon%20Archival%20Utility%20in%20OIM?&from=BOOKMARK&bmDocID=759373.1&viewingMode=1143))
    Question on Switching to Noarchivelog Before Running Recon Archival Utility in OIM? [ID 759373.1]
    Khanh
    Edited by: user12049102 on Dec 4, 2009 11:14 AM
    Edited by: user12049102 on Dec 4, 2009 11:18 AM

Maybe you are looking for

  • Airport express- no connection

    I have had an airport express for about a year and all of a sudden it will no longer provide wireless internet connection. I have access to internet connection when the modem is plugged directly into the computer, but not with the airport express. No

  • Relational database design

    i apologise in advance for the banality of this question, i have been designing basic sites for my business for years and am comfortable with html, and have recently designed a complex site havig susssed .css and coldfusion code written though dw. I

  • Copying VEDA (contract data)

    Hi,       I want to create a Scheduling Agreement with reference to another scheduling agreement (transaction VA31), and want to copy/modify some of the fields in the contract data. I've created a data transfer routine to copy VEDA at the header leve

  • AVCHD long & transfer - juddering in viewer screen

    I have no problems to get my AVCHD files in my Log & Transfer window in FCP 6, also I can preview them in the L&T viewer. However as soon as they are transferred and transcoded to ProRes the footage is juddering in the viewer screen. Any idea what is

  • Revision problem

    Dear Readers, I have a problem with the revision function in Adobe Acrobat 10.0. When i send a PDF document with revision thru e-mail, the person cant add a comment to the document. (dont have the rights) And when i sent a document thru revision\emai