Get number out of String

Hi,
I have several emptyMCs on my page, created with a for loop;
Each MC has now a different name, like
"Roll_mcT0","Roll_mcT1","Roll_mcT2", and so on....
How could I get the number property out of this MC name?
var depthT:Number = 1000+d;
this.createEmptyMovieClip("Roll_mcT"+ d, depthT);
this["Roll_mcT" + d].onRollOver = function(){
myno = this.d;
best regards,
Luciewong

you could use the movieclip _name property along with the
flash string methods to extract d but it would be easier to store d
as a property of your movieclip:

Similar Messages

  • Regexp substr to select the max number out an string

    Hi all,
    I need a solution for a query.
    I,ve a query to select the lowest number in a string.
    select regexp_substr('9 - 10','\d+')
    from dual;
    9
    So this is the query I need to select the min number in he string.
    but now I need it to give me the highest nr in the string .
    the output that I need =10
    Can someone help me pleasse?
    My regards

    Caroline wrote:
    select regexp_substr('9 - 10','\d+')
    from dual;
    9
    So this is the query I need to select the min number in he string.Actually it only gives you the first number in the string, not the minimum number.
    SQL> select regexp_substr('9 - 10','\d+')
      2  from dual;
    R
    9If your string is the other way around it will give you 10 instead of 9.
    SQL> ed
    Wrote file afiedt.buf
      1  select regexp_substr('10 - 9','\d+')
      2* from dual
    SQL> /
    RE
    10You probably want something like...
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select '9 - 10' as txt from dual)
      2  -- end of sample data
      3  select min(num) as min_num, max(num) as max_num
      4  from (
      5        select to_number(trim(REGEXP_SUBSTR (txt, '[^-]+', 1, level))) as num
      6        from t
      7        connect by level <= length(regexp_replace(txt,'[^-]*'))+1
      8*      )
    SQL> /
       MIN_NUM    MAX_NUM
             9         10
    SQL> ed
    Wrote file afiedt.buf
      1  with t as (select '10 - 9' as txt from dual)
      2  -- end of sample data
      3  select min(num) as min_num, max(num) as max_num
      4  from (
      5        select to_number(trim(REGEXP_SUBSTR (txt, '[^-]+', 1, level))) as num
      6        from t
      7        connect by level <= length(regexp_replace(txt,'[^-]*'))+1
      8*      )
    SQL> /
       MIN_NUM    MAX_NUM
             9         10
    SQL>

  • My friends number is in my i message along with mine how do i get it out???

    i have a i phone 4 8 g when i downladed ios 7 on my phone my frend that has used my i tunes account his phone number is now in my i message and all his contacts are in my phone how do i get his number out of my i message?????

    See:
    *http://kb.mozillazine.org/Browser_will_not_start_up
    A possible cause is security software (firewall,anti-virus) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox and the plugin-container from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.org/kb/Server+not+found
    *https://support.mozilla.org/kb/Firewalls

  • I just purchased Photoshop 11.  The serial number is not valid to get me out of the trial.

    I just purchased Photoshop 11.  The serial number is not valid to get me out of the trial.

    You need to contact Adobe Support either by chat or via phone when you have serial number and activation issues.
    Here are some links to help make contact:
    http://www.adobe.com/support/chat/ivrchat.html
    http://www.adobe.com/support/download-install/supportinfo/

  • Get number from string

    Hi,
    I have a problem with an select.
    I need to compare two string columns. First column includes only a number with 9 characters:
    '001234567'
    Second column includes text where somewhere inside this text is the number 001234567.
    'Hallo1 001234567'
    I need to extract the 9 character big number out of the string. I thought using the regular expression feature could help me.
    SELECT
      REPLACE(REGEXP_REPLACE('hallo 001122334', '[a-z]', ''),' ') "REGEXP_REPLACE"
    FROM dual;But this would exclude the number 1 after Hallo:
    Result: '1001234567'
    The number I look for is always 9 character long.
    Thanks ahead,
    Tobias

    You have many variants:
    with your_table as
         (select
                'hallo1001122334' first_column,
                '001122334' second_column
          from dual
    select *
    from your_table
    where
    --1) regexp_like(first_column,'.*'||second_column||'$')
    --2) first_column like '%'||second_column
    --3) regexp_substr(first_column,'\d{9}$')=second_column
    --4) regexp_replace(first_column,'\D','') like '%'||second_columnFourth variant - includes case when chars can be between numbers in first column (for example 'hallo100a1a1a2a2a3a3a4').

  • Find out varchar2 string NULL columns and Empty columns

    Hi dev's ,
    my requiremnt is to find out the string columns Names of whose storing NULL values and EMPTY strings. for that i had written below code. it's getting some error.
    SET ECHO OFF;
    SET FEEDBACK OFF;
    SET SERVEROUTPUT ON;
    SET VERIFY OFF;
    SET PAGES 0;
    SET HEAD OFF;
    spool D:\stringnull.csv
    DECLARE
      v_tab_indent NUMBER(5);
      v_col_indent NUMBER(5);
      v_val1       VARCHAR2(20);
      v_val2       VARCHAR2(20);
      v_query1     VARCHAR(500);
      v_query2     VARCHAR(500);
    BEGIN
      --DBMS_OUTPUT.ENABLE(100000);
      SELECT MAX(LENGTH(table_name))+1,MAX(LENGTH(column_name))    +1
      INTO v_tab_indent,v_col_indent
      FROM user_tab_columns
      WHERE data_type='VARCHAR2';
    FOR i IN
      (SELECT table_name,
        column_name
      FROM user_tab_columns
      WHERE data_type IN ('NVARCHAR2', 'CHAR', 'NCHAR', 'VARCHAR2')
      ORDER BY table_name,
        column_name
      LOOP
        v_query1:='SELECT NVL('||i.column_name||',0) AS VAL    
                  FROM '||i.table_name||' where '||i.column_name||' IS NULL';
        v_query2:='SELECT '||i.column_name||' AS VAL    
                  FROM '||i.table_name||' where '||i.column_name||'=''''';
        --dbms_output.put_line(v_query1);
       -- dbms_output.put_line(v_query2);
        EXECUTE immediate v_query1 INTO v_val1;
        EXECUTE immediate v_query2 INTO v_val2;
        dbms_output.put_line (rpad(i.table_name,v_tab_indent,' ')||','||rpad(i.column_name,v_col_indent,' ')||' ,'||v_val1||','||v_val2);
      END LOOP;
    END;
    Spool OFF
    Set echo on
    Set feedback onERROR:
    Error report:
    ORA-01403: no data found
    ORA-06512: at line 31
    01403. 00000 -  "no data found"
    *Cause:   
    *Action:
    set feedback onpls help me on this issue..
    Thanks,

    Example:
    SQL> DECLARE
      2    v_val       VARCHAR2(20);
      3    v_query1     VARCHAR(32767);
      4  BEGIN
      5   FOR i IN (SELECT table_name, column_name FROM user_tab_columns
      6             WHERE data_type IN ('NVARCHAR2', 'CHAR', 'NCHAR', 'VARCHAR2')
      7             ORDER BY table_name, column_name
      8            )
      9   LOOP
    10     v_query1 := 'SELECT count(*) FROM '||i.table_name||' where '||i.column_name||' IS NULL';
    11     EXECUTE immediate v_query1 INTO v_val;
    12     dbms_output.put_line(rpad(i.table_name,30,' ')||' : '||rpad(i.column_name,30,' ')||' : '||v_val);
    13   END LOOP;
    14  END;
    15  /
    CHILD_TAB                      : DESCRIPTION                    : 0
    DEPT                           : DNAME                          : 0
    DEPT                           : LOC                            : 0
    EMP                            : ENAME                          : 0
    EMP                            : JOB                            : 0
    MYEMP_OLD                      : ENAME                          : 0
    MYEMP_OLD                      : JOB                            : 0
    MYNULLS                        : ENAME                          : 0
    MYNULLS                        : JOB                            : 4
    PARENT_TAB                     : DESCRIPTION                    : 0
    T                              : CHAR_VALUE                     : 0
    TABLE1                         : COL1_DESC                      : 0
    PL/SQL procedure successfully completed.

  • How to get number of rows return in SELECT query

    i'm very new in java, i have a question:
    - How to get number of rows return in SELECT query?
    (i use SQL Server 2000 Driver for JDBC and everything are done, i only want to know problems above)
    Thanks.

    make the result set scroll insensitve, do rs.last(), get the row num, and call rs.beforeFirst(), then you can process the result set like you currently do.
             String sql = "select * from testing";
             PreparedStatement ps =
              con.prepareStatement(sql,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
             ResultSet rs = ps.executeQuery();
             rs.last();
             System.out.println("Row count = " + rs.getRow());
             rs.beforeFirst();~Tim
    NOTE: Ugly, but does the trick.

  • Getting items out of arrayList

    Hi everyone
    I have the following scenario:
    Have two java class files which gets used to extract data from database and a jsp which display data.
    I get the data out of the database, but my problem is displaying it correctly using the jsp which uses JSTL.
    The ContactsData.class file extracts the data out of the database and puts it in the Contacts.class class which then gets written to an arraylist which stores the Contacts.class and then returns the ArrayList to the requester.
    Here is the code, can someone please help me to manipulate the arraylist to display the right info.
    Contacts.class which holds the contacts.
    package contacts;
    import java.io.Serializable;
    import java.util.*;
    public class Contacts implements Serializable
         //String varialbes to store the details about the contact
         private String contactName,company, workNumber, cellNumber, faxNumber, email,country;
         //contacts constructor
         public Contacts()
         //method to set the company
         public void setCompany(String company)
              this.company = company;
         //method to set the Contact name
         public void setContactName(String contactName)
              this.contactName = contactName;
         //method to set the work teletphone number
         public void setWorkNumber(String workNumber)
              this.workNumber = workNumber;
         //method to set the cellphone number
         public void setCellNumber(String cellNumber)
              this.cellNumber = cellNumber;
         //method to set the fax number
         public void setFaxNumber(String faxNumber)
              this.faxNumber = faxNumber;
         //method to set the email
         public void setEmail(String email)
              this.email = email;
         //method to set the country
         public void setCountry(String country)
              this.country = country;
         //method to get the company
         public String getCompany()
              return company;
         //method to get the contact name
         public String getContactName()
              return contactName;
         //method to get the work telephone number
         public String getWorkNumber()
              return workNumber;
         //method to get the cellphone number
         public String getCellNumber()
              return cellNumber;
         //method to get the fax number
         public String getFaxNumber()
              return faxNumber;
         //method to get the email
         public String getEmail()
              return email;
         //method to get the country
         public String getCountry()
              return country;
    }piece of the contactsData.class class which retrieves the data out of the database and stores it in Contacts.class class and then store the Contacts class in the arrayList which gets returned to the requester.
         public ArrayList getContactList()
              //arrayList to hold the contacts
              contactList = new ArrayList<Contacts>();
              try
                   ResultSet rs = stmt.executeQuery("SELECT * FROM Contacts");     //selecting from the database
                   while(rs.next())
                        //creating contacts object
                        contact = new Contacts();
                        //adding details to the Contacts object
                        contact.setContactName(rs.getString(1));
                        contact.setCompany(rs.getString(2));
                        contact.setWorkNumber(rs.getString(3));
                        contact.setCellNumber(rs.getString(4));
                        contact.setFaxNumber(rs.getString(5));
                        contact.setEmail(rs.getString(6));
                        contact.setCountry(rs.getString(7));
                        //adding Contacts object to the Arraylist
                        contactList.add(contact);
              catch(SQLException se)
                   System.out.println("Could not retrieve contacts");
              return contactList;     //returning the arraylist
         }The jsp that need to display the contacts within the arraylist, which I don't get right.
    <?xml version="1.0"?>
    <%@ page import="contacts.Contacts"%>
    <%@ page import="java.util.*"%>
    <%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core"%>
    <jsp:useBean id = "contactsData" scope = "page" class ="contacts.ContactsData"/>
    <html>
         <head>
              <title>Contact List</title>
              <meta http-equiv="cache-control" content="max-age=0, must-revalidate, no-cache, no-store, private">
              <meta http-equiv="expires" content="-1">
              <meta http-equiv="pragma" content="no-cache">
              <script language=JavaScript>
              <!--
                   function clicked(clickedValue)
                        if(clickedValue == "add")
                             window.location = "AddContact.jsp";
              -->
              </script>
         </head>
              <body>
              <h1>Contacts</h1>
              <form>
                   <table cellpadding="5">
                   <c:forEach var="contacts" items="${contactsData.contactList}"> //getting the list from the ContactData class
                        <tr>
                        <td><input type="radio" name="deleteContact" value="${contacts.company}"></td> //want to display the company name from the contacts
                        </tr>
                   </c:forEach>
                   </table>
                        <br>
                        <input type="button" value="Add" onClick="clicked('add')"/>
                        <input type="submit" value="Delete" onClick="clicked('del')"/>
              </form>
         </body>
    </html>

    HI, we need to specify the scope we used,In my Ex its request
    so my forEach tag ..
    <c:forEach var="stud" items="${requestScope.studli}">
    <c:out value="${stud.SID}"></c:out>
    <c:out value="${stud.SNAME}"></c:out>
    </c:forEach>

  • How to get data out of Vector of vector ???

    All,
    I have a vector v1 which is getting populated by the resultset of the database. This vector has another two vectors vrow & vcol .
    Code as follows ---
    v1 = new Vector();
    while(rs1.next()) {
         Vector vrow = new Vector();
         for (int i=intstartday ; i <= intendday ; i++)
         {     // here I am getting the new result set for each i //
              ResultSet rs2 = getResultSet();
              while(rs2.next()) {
                   Vector vcol = new Vector();
                   vcol.addElement(rs2.getString("day"));
                   vcol.addElement(rs2.getString("reg_hr"));
                   vcol.addElement(rs2.getString("dateday"));
                   vrow.addElement(vcol);
              rs2.close();                              
         } // for loop end
         vrow.addElement(strChargeNmbr);
         v1.addElement(vrow);                    
    } // end of rs1 resultset while loop
    I need to get the data out of this vector v1. If anyone has any insight on this - how to get the data from vectors which has differnt type of objects in it , please send me the code example asap.
    thanx

    Thanks for your suggestion. It is working now except that I am having problems in getting the charge NUmber out....Charge NUmber is nothing but a String.
    So my row Vector has two values
    1. Check the code where I am populating the Vectors
    while(rs1.next()) {
    strsubmittime = rs1.getString("SUBMIT_TS");
    strapprovetime = rs1.getString("APP_DIS_TS");
    strapprempid = rs1.getString("APP_DIS_EMP_ID");
    strChargeNmbr = rs1.getString("entered_cn");               
    Vector vLaborrow = new Vector();
    for (int i=intstartday ; i <= intendday ; i++)
    // here execute the query and get the result set for every i //                         ResultSet rs2 = getResultSet();
         while(rs2.next()) {
         Vector vLaborcol = new Vector();
         vLaborcol.addElement(rs2.getString("day"));
         vLaborcol.addElement(rs2.getString("reg_hr"));
         vLaborcol.addElement(rs2.getString("dateday"));
         vLaborrow.addElement(vLaborcol);
    } // for loop end
    vLaborrow.addElement(strChargeNmbr);
    vLabor.addElement(vLaborrow);
    } // end of rs1 resultset while loop
    2. check out the following code where I am trying to get the Charge NUmber values out.--
    for(int i=0;i<vLabor.size() ;i++)
    Vector rowVec = (Vector)vLabor.elementAt(i);
    for(int j=0; j< rowVec.size() -1 ; j++)
    try
         if (j==0) {
    String strChargeNmbr = (String)rowVec.elementAt(j) ;
    Vector laborcol = (Vector)rowVec.elementAt(j);
    String day = (String)laborcol.elementAt(0);
    String reg_hr = (String)laborcol.elementAt(1);
    String dateday = (String)laborcol.elementAt(2);
    strChargeNmbr = strChargeNmbr + " " + reg_hr ;
    }catch(ClassCastException e){
         System.out.println("Reading in vector2");
    } // end of j for loop
    System.out.println(strChargeNmbr);
    } // end of i for loop
    I am getting the following Exception --
    "Reading in vector2"
    Please send me the code -- how to get the Charge NUmber out. I am confused where to get the value - is it in the first for loop or second for loop ??

  • Try-catch blocks.  How do you get variables out?

    Hey guys,
    I have several try-catch blocks around potential NumberFormatException's. Well the variables and values given inside the try-catch block can not be used outisde, so how do i get them out or use them outside this block.
    Is there a way to kind of pass it out, or to take the variable outside the try-catch block?
    Gary.

    Declare the variable before the try block:
    public void foo(String number) {
    int i; // Unknown
    try {
    i = Integer.parseInt(number);
    } catch( NumberFormatException e ) {
    e.printStackTrace();
    System.out.println(i);
    variable i might not have been initialized
                   System.out.println(i);
                                      ^
    Or declare the method as throwing the exception so
    that you don't have to handle it directly
    public void foo(String number)
    throws NumberFormatException
    i = Integer.parseInt(number);
    System.out.println(i);
    }Not the best example, in this case. But it works for some things.
    Or make use of the variable within the try block so
    that you limit its scope to the degree possible
    public void foo(String number) {
    try {
    i = Integer.parseInt(number);
    System.out.println(i);
    } catch( NumberFormatException e ) {
    e.printStackTraceException();
    }Definitely missed declaring i, but I like this one best ;~)
    Each has its benefits. Depends what sort of method
    you're writing - if failure of the try block causes
    the whole method to fail, don't try to handle the
    exception locally, put the throws in the signature. ~Cheers

  • Unity Connection - Users with system default password getting locked out

    Hi all, hope everyone is well !!
    I am experiencing a strange problem and hope someone can give me some direction on where to start digging on this issue.
    I am getting a good number of users reporting they are getting locked out of their voice mail and they all claim that they have not changed their password and some user even got their greeting recorded by someone else. One thing in common for the users who reported the issue is that they all using the system default password. I am trying to trace to find out who/what has access to these users' mailbox but so far I have not had any luck.
    Thanks in advance !!
    Danny

    Thanks, yes am doing that now and cant really find any new/unique pattern. Plus the trace is pretty hard to follow. Cant really figure out any times stamps in the trace also. The current trace file is defaultTrace.18.trc and it has very simiiar content as some of the older ones before the problem. Right now the ESS portal is working and the slddsuser password is not locked. It seems the problem takes place on start up?
    /usr/sap/ESS/JC77/j2ee/cluster/server0/log
    Tough thing to test in production.
    I wonder what takes place at startup that would kick this problem off?
    brad

  • What do I do if I get "Running out of Application Memory" when no applications are open except finder and just copying pictures to Seagate?

    I cannot copy pictures to a Seagate as I get the out of memory notice with the only option to restart finder,repeatedly.  I looked at older discussions and did not see a definitive fix, but many posted this, so I will as well:
    Many discussions were too advanced for me.  I have OS X 10.9.3
    EtreCheck version: 1.9.12 (48)
    Report generated July 23, 2014 at 11:57:23 AM EDT
    Hardware Information:
      MacBook Pro (13-inch, Mid 2010) (Verified)
      MacBook Pro - model: MacBookPro7,1
      1 2.66 GHz Intel Core 2 Duo CPU: 2 cores
      8 GB RAM
    Video Information:
      NVIDIA GeForce 320M - VRAM: 256 MB
      Color LCD 1280 x 800
    System Software:
      OS X 10.9.3 (13D65) - Uptime: 0 days 0:23:21
    Disk Information:
      APPLE SSD TS512B disk0 : (500.28 GB)
      EFI (disk0s1) <not mounted>: 209.7 MB
      Mac (disk0s2) / [Startup]: 399 GB (99.03 GB free)
      Recovery HD (disk0s3) <not mounted>: 650 MB
      BOOTCAMP (disk0s4) /Volumes/BOOTCAMP: 100.42 GB (70.82 GB free)
      MATSHITADVD-R   UJ-898
    USB Information:
      Apple Inc. Built-in iSight
      Apple Internal Memory Card Reader
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
    Gatekeeper:
      Mac App Store and identified developers
    Kernel Extensions:
      [not loaded] com.Belcarra.iokit.USBLAN_netpart (2.0.2) Support
      [not loaded] com.Belcarra.iokit.USBLAN_usbpart (2.0.2) Support
      [not loaded] com.RemoteControl.USBLAN.panther (1.6.1) Support
      [not loaded] com.RemoteControl.USBLAN.usbpart (2.0.6) Support
      [not loaded] com.belcarra.iokit.netpart.panther (1.6.1) Support
      [not loaded] com.belcarra.iokit.usbpart.panther (1.6.1) Support
      [loaded] com.logmein.driver.LogMeInSoundDriver (1.0.3 - SDK 10.5) Support
      [not loaded] com.seagate.driver.PowSecDriverCore (5.2.6 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_4 (5.2.6 - SDK 10.4) Support
      [not loaded] com.seagate.driver.PowSecLeafDriver_10_5 (5.2.6 - SDK 10.5) Support
      [not loaded] com.seagate.driver.SeagateDriveIcons (5.2.6 - SDK 10.4) Support
      [loaded] com.squirrels.airparrot.framebuffer (3 - SDK 10.7) Support
      [loaded] com.squirrels.driver.AirParrotSpeakers (1.7 - SDK 10.7) Support
    Problem System Launch Daemons:
      [running] com.seagate.TBDecorator.plist Support
    Launch Daemons:
      [loaded] com.adobe.fpsaud.plist Support
      [loaded] com.adobe.SwitchBoard.plist Support
      [running] com.fitbit.galileod.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [not loaded] com.logmein.logmeinblanker.plist Support
      [running] com.logmein.logmeinserver.plist Support
      [loaded] com.logmein.raupdate.plist Support
      [loaded] com.microsoft.office.licensing.helper.plist Support
      [running] com.wyse.PocketCloud.plist Support
    Launch Agents:
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [failed] com.logmein.LMILaunchAgentFixer.plist Support
      [running] com.logmein.logmeingui.plist Support
      [running] com.logmein.logmeinguiagent.plist Support
      [not loaded] com.logmein.logmeinguiagentatlogin.plist Support
      [running] com.wyse.MacCompanion.plist Support
    User Launch Agents:
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [running] com.google.Chrome.framework.plist Support
    User Login Items:
      Dropbox
    Internet Plug-ins:
      LogitechHarmony: Version: 1.0.0.1 Support
      LogMeInSafari64: Version: 1.0.660 Support
      Default Browser: Version: 537 - SDK 10.9
      AdobeExManDetect: Version: AdobeExManDetect 1.1.0.0 - SDK 10.7 Support
      Flip4Mac WMV Plugin: Version: 2.3.6.5 Support
      AdobePDFViewerNPAPI: Version: 10.1.10 Support
      FlashPlayer-10.6: Version: 14.0.0.145 - SDK 10.6 Support
      LogMeIn: Version: 1.0.660 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      Flash Player: Version: 14.0.0.145 - SDK 10.6 Support
      iPhotoPhotocast: Version: 7.0 - SDK 10.8
      LogMeInSafari32: Version: 1.0.660 Support
      QuickTime Plugin: Version: 7.7.3
      AdobePDFViewer: Version: 10.1.10 Support
      CANONiMAGEGATEWAYDL: Version: 3.1.0.2 Support
      SharePointBrowserPlugin: Version: 14.1.4 - SDK 10.6 Support
      JavaAppletPlugin: Version: 14.9.0 - SDK 10.7 Check version
    Audio Plug-ins:
      BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
      AirPlay: Version: 2.0 - SDK 10.9
      AppleAVBAudio: Version: 203.2 - SDK 10.9
      iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
      Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    3rd Party Preference Panes:
      Flash Player  Support
      Flip4Mac WMV  Support
      Paragon NTFS for Mac ® OS X  Support
    Time Machine:
      Skip System Files: NO
      Mobile backups: ON
      Auto backup: YES
      Volumes being backed up:
      Mac: Disk size: 371.60 GB Disk used: 279.37 GB
      Destinations:
      Untitled [Local]
      Total size: 931.19 GB
      Total number of backups: 30
      Oldest backup: 2012-05-18 05:12:38 +0000
      Last backup: 2014-07-14 18:51:50 +0000
      Size of backup disk: Adequate
      Backup size 931.19 GB > (Disk used 279.37 GB X 3)
      Time Machine Backups [Local]
      Total size: 2
      Total number of backups: 26
      Oldest backup: 2010-11-21 17:58:03 +0000
      Last backup: 2014-07-14 19:53:01 +0000
      Size of backup disk: Excellent
      Backup size 2  > (Disk size 371.60 GB X 3)
      Backups.backupdb [Network] (Last used)
      Total size: 930.87 GB
      Total number of backups: 32
      Oldest backup: 2013-11-19 00:45:22 +0000
      Last backup: 2014-07-15 15:36:23 +0000
      Size of backup disk: Adequate
      Backup size 930.87 GB > (Disk used 279.37 GB X 3)
      Time Machine details may not be accurate.
      All volumes being backed up may not be listed.
    Top Processes by CPU:
          5% WindowServer
          0% fontd
          0% LogMeIn
          0% configd
          0% aosnotifyd
    Top Processes by Memory:
      115 MB mds_stores
      98 MB Google Chrome
      82 MB Finder
      74 MB Dropbox
      49 MB WindowServer
    Virtual Memory Information:
      4.65 GB Free RAM
      1.43 GB Active RAM
      1.00 GB Inactive RAM
      675 MB Wired RAM
      999 MB Page-ins
      0 B Page-outs

    Your problem is excessive swapping of data between physical memory and virtual memory.
    That can happen for two reasons:
    (1) You have a long-running process with a memory leak (i.e., a bug), or
    (2) You don't have enough memory installed for your usage pattern.
    Tracking down a memory leak can be difficult, and it may come down to a process of elimination. In Activity Monitor, select All Processes from the menu in the toolbar, if not already selected. Click the heading of the Real Mem column in the process table once or twice to sort the table with the highest value at the top. Repeat with the Virtual Mem column. If one process (not including "kernel_task") is using much more memory than all the others, that could be an indication of a leak. A better indication would be a process that continually grabs more and more memory over time without ever releasing it.
    If you don't have an obvious memory leak, your options are to install more memory (if possible) or to run fewer programs simultaneously.

  • Since I upgraded my Ipad2 with IOS6, i keep getting kicked out of Safari after I am in the middle of looking for something and on Ebay it continually kicks me back to the first item if I click to see a picture, say after I am 150 items down.  Even CNN too

    Since I upgraded my Ipad2 to IOS6, I keep getting kicked out of Safari after I am in the middle of searching for something.  Also, Ebay kicks me back to first item if I click on an item, say number 153 or 642!  Very annoying.  Even CNN kicked me out back to Ipad home screen last night!  How do I make it stop???

    My question is this:
    What is the best way of getting the pictures out of the iPhoto Library? I
    Select the photos you want out and export them as JPGEs - kind = current for the current edited version - kind = original for the original
    f I get access to the original folders within the library by right-clicking any photo and then being able to browse inside the library, am I going to have any problems if I copy or move those original pictures directly to a folder outside of the iPhoto Library?
    Copying photos out will not be a problem if you make no errors - for me that is not a good bet - it is best to stay out of yoru iPhoto library
    Would it be better to export the pictures?
    Yes
    Does exporting using "current" under "Kind" give you the original more safely?
    No - it gives you the current version which may be the original if no changes have been made or will be the current edited version if edits ahve been made
    Also, any suggestions on how to best have photos OUTSIDE of an iPhoto library organized so that iPhoto can reference them, but your backup is also organized?
    In the iPhoto preferences un check the advanced preference to "copy imported items to the iPhoto library"
    HOWEVER - this is not recommended - it makes importing more complicated, deleting more complicated and makes replacing a hard drive or going to a new computer much more difficult - and it puts you totally in charge of your original photos - being sure that they are there and do not get moved
    I'd like to have my photos organized by date in the backup as well, so that I don't have to backup all my pictures every time I add new ones, just add the latest to the backup drive.
    Finally, any suggestions on what to do with pictures that you scan so that they appear by the date they were taken as opposed to the date they were scanned? Is there a way to modify the date of the photo info?
    Select the photos in iPhoto and use the batch change command under the photos menu - the tiem and date option
    LN

  • Why Can't I get Video Out to TV?

    I purchased an MSI Machine from a local distributor and they failed to give me any doocumentation. I've spent much time and anguish gathering the info. (Specs Below)
    I'm trying to get video out to TV and hopefully Video in also. But I don't know what I'm doing. I was able to get ahold of the proper drivers and some MSI Software such as the NVIDIA nView Desktop Manager that I think was supplied with the MSI Driver. I can Use two Monitors in any array such as Clone, Span, Dual View and Single but I cant output to my TV using Clone and the TV-out + DVI. Do I need special software. I'm using Windows Media Player and some videos and my svideo cable connected to TV on Video 1. Please Help. Please Please. Thanks In Advance. Gregg
    Operation System WinXP
    Mainboard Manufacturer MSI
    Mainboard Model Name MS-6728
    Mainboard BIOS Vendor AMIBIOS
    Mainboard BIOS Version 3.70
    VGA Card Information
    VGA Card Model Number FX5700LE-TD128
    VGA Card Manufacturer MSI
    VGA Card Model Name MS-8959
    VGA Card Driver Version 6121
    VGA Card BIOS Vendor NVIDIA
    VGA Card BIOS Version 4.36.20.30.10
    (1) OSD Model Name MS-8216S (ATAPI DVD-ROM 16XMax )
    (1) OSD Chipset Vendor MediaTek
    (1) OSD Firmware Version 1.30
    (2) OSD Model Name MS-8408A (ATAPI DVD RW 8XMax )
    (2) OSD Chipset Vendor SANYO
    (2) OSD Firmware Version 1.50
    gobanion

    Navigate on your iPod to Videos > Video Settings.
    Select TV Out to set it to Off or Ask.

  • Error "number out of range" in pdf sent through mail using smartform outpu

    Hi Experts,
    We have a program which sends mail using smartform output in 'PDF' format. We are able to preview smartform correctely in SAP and mail is also getting sent fine with attachment of form as PDF document. But, when we try to open the document, it gives error saying 'Number out of range'. Also, not all of the windows of smartform are appearing in document and some are coming only half.
    We are not able to find out the reason for this. Any help would be appriciated.

    Hi Soumya,
    Have you got the solution as we are facing the same issue.
    Cheers,
    Bharath

Maybe you are looking for