Help with Applescript to find cell

I'm attempting to convert some Excel Applescripts over to Numbers and can't find a method to "find".
In Excel for example, I have:
set foundCell to (find keyColumn what searchSymbol look at whole look in values search order by rows after (get last cell of keyColumn) search direction search previous without match case)
The applescript dictionary seems feature rich but no find? Unimaginable, so there must be something I'm over-thinking.

I'm guessing you're looking for something like this...
Working with a table something like this:
Symbol
ABC
DEF
JKL
DEF
XYZ
Then a script like this should do what you what you want:
property keyColumn : "A"
property searchSymbol : "DEF"
property targSht : "Sheet 1"
property targTbl : "Table 1"
tell application "Numbers"
  set foundCell to my findLastVal(targSht, targTbl, keyColumn, searchSymbol)'s properties
  --in line above, depending on what you want, substitute name, row, etc for properties
end tell
to findLastVal(tSht, tTbl, kCol, sVal)
  tell application "Numbers" to tell front document's sheet tSht's table tTbl
  repeat with i from row count to 1 by -1
  tell column kCol's cell i
  if its value is sVal then return it
  end tell
  end repeat
  end tell
end findLastVal
To find the first match in a column you would simply remove the negative decrement, something like this:
repeat with i from 1 to row count
If you're working with very long columns it can be more efficient to first read the values into an AppleScript list and look for a match in the list rather than asking Numbers to read a cell and look for a match on each iteration. But the above approach should work well with moderately sized data sets.
SG

Similar Messages

  • Need help with photoshop to find TGA

    Need help with photoshop to find TGA on same as because I cant find it there or is it a download you need to get it. And its for photoshop element 12.

    Yeah, I thought it was dumb to remove it, too. See:
    Save as TGA File ? [Photoshop Elements 12]
    for the workaround.

  • Help with Applescript - filenames

    Hi!
    I hope there is someone who can help me. I have very little experience with Applescript, and have spent a couple of days scouring these forums amongst others without any luck...
    I have a folder (titled XLS) with about 1000 excel files in it. They are numbered basen on some parametric calculations (1111.xls, 1112.xls, 1113.xls, etc). I have constructed an Automator rutine which, one at a time, can open each excel file, copy some cells and then paste the data into an empty xml-file in TextWrangler. The empty xml-file is also in the XLS folder.
    What I am looking for is an applescript which can rename the open xml-file with the same filename as the xls-file. So, when 1111.xls is open, the xml-file gets renamed 1111-xml; when 1112.xls is open, the xml-file gets renamed 1112-xml, etc. Each new xlm-file is to be saved into a folder XLM, whivh is also in the XLS folder.
    Thanks in advance....
    Rob

    Se below; there are two folders on the desktop; "xls" (with xls-files in) and "xml", as well as the empty Template.xml file. Here it is!:
      --3 XLS to XML
              tell application "Finder"
                        set fileList to every file of entire contents of ("YourHD:Users:You:Desktop:xls" as alias)
              end tell
              repeat with i from 1 to number of items in fileList
                        set currentFile to (item i of fileList)
                        tell application "Microsoft Excel"
                                  set screen updating to false
      open currentFile
      activate currentFile
      activate object worksheet 1
                                  copy range range ("YourRange")
                        end tell
                        tell application "Finder"
                                  copy file "YourHD:Users:You:Desktop:Template.xml" to folder "YourHD:Users:You:Desktop:xml"
                        end tell
                        tell application "Microsoft Excel"
                                  set docName to name of window 1
                        end tell
                        tell application "Finder"
                                  set docName2 to text 1 thru ((offset of "." in docName) - 1) of docName
                                  set theFile to "YourHD:Users:You:Desktop:xml:Template.xml" as alias
                                  set the name of theFile to docName2 & ".xml"
      open file theFile
                        end tell
                        tell application "TextWrangler"
      activate
      paste
      close text document 1 saving yes
                        end tell
                        tell application "Microsoft Excel"
      activate
      close active workbook saving no
                        end tell
              end repeat
              tell application "Microsoft Excel"
                        set screen updating to true
      quit
              end tell
              tell application "TextWrangler"
      quit
              end tell

  • Help with applescript to quit certain processes by name?

    Hey, for anyone who knows how to program applescripts well, I could use some help with the script below.
    I'm very new to applescripting and I'm trying to write a script that would automatically quit up to 100 instances of the Google Chrome Renderer process.
    Thanks to google, I found a script similar to what I wanted, and after some tinkering I thought I had it just right. The thing is, if I only set the app_name to Google Chrome, it quits Chrome just fine, but when I try it like this, it doesn't receive any data from grep or awk.
    If anyone can help I'd really appreciate it.
    repeat 100 times
              set app_name to "Google Chrome Renderer"
              set the_pid to (do shell script "ps ax | grep " & (quoted form of app_name) & " | grep -v grep | awk '{print $1}'")
              set new_pid to first word of the_pid
              try
                        if new_pid is not "0" or "1" then do shell script ("kill -9 " & new_pid)
              end try
    end repeat

    try this:
    tell application "System Events"
              set procs to (every process whose name is "Google Chrome Renderer")
              if (count of procs) > 100 then
                        set max to 100
              else
                        set max to count of procs
              end if
              repeat with i from 1 to max
                        tell (item i of procs) to quit
              end repeat
    end tell

  • Help with Applescript: very basic functions

    Hi guys, my first post. I'd very much like to switch from Excel to Numbers but not until I find an Applescript replacement for my stuff.
    I wrote basic Excel Applescript just fine but I'm tearing my hair out just to perform simple scripts in Numbers!!!
    Basically I need to do:
    PART 1: Import External Data
    - I think I got this covered, using a GUI copy script via the "System Events" application
    - but since you guys are the experts: how do I make this process 'invisible'? i.e. each time the script runs, a Safari window appears. I don't want that to happen.
    tell application "Safari"
    activate
    open location "http://www.whatever.htm"
    end tell
    tell application "System Events"
    tell process "Safari"
    keystroke "a" using command down
    keystroke "c" using command down
    end tell
    end tell
    PART 2: Paste It Into Numbers
    - How hard can it be, right? Apparently I have the mental IQ of Gump I need Numbers to:
    - clear data from an existing pre-defined/named table
    - paste the data (from clipboard) onto this table (paste starting on cell A1), using the "Paste and Match Style" function
    - hide certain columns <-- I realize if Numbers paste onto a table with hidden columns, it treats them as non-existent i.e. won't paste the same. Therefore I suppose before the paste script I'd need an unhide script
    ... and that's it!!
    Help please I really hate Excel but can't move on till I figure this out... it's crucial to my livelihood.
    Thank you all in advance!

    There is no paste function in the Numbers AppleScript's dictionary.
    We may mimic it as I did during one year and a half with Numbers '08.
    Go to my iDisk:
    <http://idisk.me.com/koenigyvan-Public?view=web>
    open the folder "For_iWork:iWork '08:for_Numbers:"
    and download one of the items whose name starts with "paste".
    This use of GUI scripting is interesting because it creates automatically rows/columns when required.
    One draw back is the resulting font.
    Yvan KOENIG (from FRANCE samedi 17 janvier 2009 21:12:52)

  • Help with AppleScript for Numbers - please!

    I posted a question on the AppleScript section, if anyone can help...
    https://discussions.apple.com/thread/3451760
    Thanks!
    (I'm trying to get an array into what I know of in Excel as a "range". How can this be done with numbers?)

    Does this help?  This would work if tagValues in your script is a single value.
    tell application "Numbers" to tell document 1 to tell sheet 1 to tell table 1
              set selection range to range "B2:D5"
              set tagvalues to 1
              set value of cell in selection range to tagvalues
    end tell
    If tagValues is a list, you may have to set each cell separately, indexing through each value in tagValues.

  • Help with AppleScript/ Automator Code

    I am an intern at an architecture firm, and I would like to know if there is any way to code a program (using AppleScript or Automator) to complete this task:
    Combine files that have similar file names into a folder and rename the file as the first file automatically. There are hundreds of files, and an expedient and efficient way of completing this task would be greatly appreciated.
    For example:
    I have files:
    07-480-1.jpg
    07-480-2.jpg
    07-480-3.jpg
    07-480-4.jpg
    07-481-1.jpg
    07-481-2.jpg
    07-481-3.jpg
    07-481-4.jpg
    07-481-5.jpg
    I want to select files names with similar characters (07-480 and 07-481) and place them into respective folders.
    So the folders would be called
    07-480-1
    07-481-1
    Any advice would be helpful.
    Thank You!
    OSX 10.9.5

    Almost anything is possible... the issue is the work-effort required to achieve the desired result.
    In this case there are a lot of variables that you haven't covered, which may make the job easier or harder.
    For example, you give a series of example file names, and appear to want to group them by the same initial 6 characters (although your example seems to create folder names based on the first 8 characters of the first match... is that true? Without knowing the background, I would expect '07-480-1.jpg' to go into the  '07-480' folder, not the '07-481-1' folder). Those kinds of details will make a difference.
    So if my theory is correct ('07-480' should be the folder name), do you want to create a folder every time? or only when there are two or more files (e.g. do you want an '07-490' folder when there's only one relevant file?
    Here's a starting point. I'm assuming that you want the '07-480' form of the folder. When the script runs it will ask for the folder to check, then (blindly) iterate through the files in that folder, moving them into folders based on the first 6 characters of the file name, making new folders as needed:
    tell application "Finder"
      set theFolder to (choose folder)
      repeat with eachfile in (get files of theFolder)
      -- assume the standard filename format
      -- may need error checking here to make sure the name matches what we expect
      -- for now we just skip over any errors through the use of a try statement
      try
      -- get the first 6 characters of the file name
      set basename to characters 1 through 6 of (get name of eachfile) as text
      -- check if we already have a folder of the desired name
      if (not (exists folder basename of theFolder)) then
      -- we don't, so make one
      make new folder at theFolder with properties {name:basename}
      end if
      -- now move the file into the folder
      move eachfile to folder basename of theFolder
      end try
      end repeat
    end tell

  • Help with AppleScript for outlook 2011

    I wonder if anyone can help me with what I think should be a simply script.
    I simply want to sweep(move) all of my incoming mail in Outlook to a specified IMAP folder.
    Is this possible - it seems like it should be an easy script - if you get me started with the outline (for select all in incoming box and the move to an imap folder command) I think I can sort it.
    Many thanks!
    Gordon    

    I wrote a script to perform email-merges using Outlook or Mail/Address Book: https://github.com/craibuc/applescript-email-merge.  Perhaps you will find it useful.

  • Help with AppleScript as Export Action

    I've been trying to get an AppleScript working as an Export Action in Lightroom 3 on OS X (10.5) without success.
    The script (modified from one I found):
    on open theObjects
        repeat with theObject in theObjects
            do shell script "/opt/local/bin/mogrify -colorspace Gray " & "'" & (POSIX path of theObject as string) & "'"
        end repeat
    end open
    I've also tried it as:
    do shell script "/opt/local/bin/mogrify -colorspace Gray " & (POSIX path of theObject as string)
    I've also tried some simpler things just to check if the script is getting called at all, and it doesn't appear to be.  Is there something special I need to do to use an AppleScript as an Export Action?  It's in the correct folder, and the script name comes up as a selection in the drop-down menu when using a custom Post-Processing option.
    Any help or insights appreciated!

    banacheq wrote:
    ... It didn't even occur to me to look in "File Format" for converting a script to an application.
    Apple sometimes makes things "too" easy. Its like trying to find the salt shaker when its right by your plate...
    (I had done it before but had forgotten how)
    Glad you got it working.
    Rob

  • Help with JTable - content of cell disappears when selected

    Hello,
    I have a jTable and I have created a custom cell renderer. It does what it's supposed to do (which is set the background color of all cells with null or "" value to red - as an indication to the user that b4 proceeding he/she has to fill in this cells). The problem is that when I select a red cell, it becomes white and the text value it contains disappears. When I double click I can start typing in a new value.
    I would appreciate any hint why this happens? Ideally I would like the cell to keep its color when clicked or double-clicked and its value, and only when i'm done editing its content and it's not null or empty string to become white.
    I'm including majority of my code (some automatically generated code from Netbeans is not included).
    Thank you very much,
    Laura
    public class DataNormalisation extends javax.swing.JFrame {   
        JTextArea txt=new JTextArea();
        public Object[][] DataSummary;
        public Vector<String> colName;
        MainF p;
        String[] ExpNames;
        /** Creates new form DataNormalisation */
        public DataNormalisation(String[] EN, MainF parent) {
            p=parent;
            ExpNames=EN;
            colName= new Vector<String>();
            colName.add("Sample Name");
            colName.add("Replicate Group");
            DataSummary=new Object[ExpNames.length][2];
            for (int i=0;i<ExpNames.length;i++){
                DataSummary[0]=ExpNames[i];
    initComponents();
    this.jTable1.getTableHeader().setReorderingAllowed(false);
    TableColumn column = jTable1.getColumnModel().getColumn(1);
    column.setCellRenderer(new CustomTableCellRenderer());
    private void initComponents() {
    jScrollPane1 = new javax.swing.JScrollPane();
    jTable1 = new JTable (new DataModel());
    jButton1 = new javax.swing.JButton();
    jButton2 = new javax.swing.JButton();
    jLabel1 = new javax.swing.JLabel();
    jLabel2 = new javax.swing.JLabel();
    jLabel3 = new javax.swing.JLabel();
    setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
    setTitle("Data Normalisation");
    jTable1.setAutoCreateRowSorter(true);
    jTable1.setCellSelectionEnabled(true);
    jScrollPane1.setViewportView(jTable1);
    // Variables declaration - do not modify
    private javax.swing.JButton jButton1;
    private javax.swing.JButton jButton2;
    private javax.swing.JLabel jLabel1;
    private javax.swing.JLabel jLabel2;
    private javax.swing.JLabel jLabel3;
    private javax.swing.JScrollPane jScrollPane1;
    private javax.swing.JTable jTable1;
    // End of variables declaration
    class DataModel extends AbstractTableModel {       
    class TML implements TableModelListener{
    public void tableChanged (TableModelEvent e){
    txt.setText(""); // Clear it
    for (int i=0;i<DataSummary.length; i++){
    for (int j=0; j<DataSummary[0].length;j++){
    txt.append(DataSummary[i][j] + " ");
    txt.append("\n");
    public DataModel(){
    addTableModelListener(new TML());
    @Override
    public void setValueAt(Object val, int row, int col){
    DataSummary[row][col]=val;
    fireTableDataChanged();
    @Override
    public boolean isCellEditable(int row, int col){
    return (col != 0);
    public int getRowCount(){
    return DataSummary.length;
    public int getColumnCount(){
    return colName.size();
    public Object getValueAt(int row, int column){   
    return DataSummary[row][column];
    public String getColumnName(int col) {           
    return colName.get(col);
    class CustomTableCellRenderer extends DefaultTableCellRenderer {       
    @Override
    public Component getTableCellRendererComponent(JTable table, Object value, boolean isSelected,
    boolean hasFocus, int row, int column) {
    Component cell = super.getTableCellRendererComponent(table, value, isSelected, hasFocus, row, column);
    if (value == null || value.equals("")) {
    cell.setBackground(Color.red);
    } else cell.setBackground(Color.white);
    return cell;

    Ideally I would like the cell to keep its color when clicked or double-clicked Not sure why is changes color when you click on the cell.
    But when you double click the editor is invoked, which is a JTextField and its background is white by default.
    The code you posted doesn't help because its not executable.
    If you need further help then you need to create a [Short, Self Contained, Compilable and Executable, Example Program (SSCCE)|http://homepage1.nifty.com/algafield/sscce.html], that demonstrates the incorrect behaviour.
    And don't post NetBeans generated code, because we don't use IDE to write GUI code.
    Also, why did you create a custom TableModel. The DefaultTableModel will store your data for you.

  • Help with Applescript and Admin Privelages

    I just started using Applestript a few months ago and I can't figure out how to give my script Admin rights. Basically, it turns on and off my internet sharing and file sharing through dialog boxes. I copied and pasted the whole code below if you want to test it, but this is the part that is giving me trouble. There are 4 lines similar to this, the actions that turn on or off the services.
    do shell script "/bin/launchctl load -w /System/Library/LaunchDaemons/com.apple.InternetSharing.plist" with administrator privileges
    I've tried adding "with password _____" and "password_____" but neither worked. Can anyone help me make this script authenticate itself so I don't need to keep typine in my password? I could easily make a keystroke in system events to type it in but it doesn't always ask for it so I don't know how I'd make the script know when it needs to enter the password. any help is much appreciated!
    Some things to clarify: The first shell script is there to invoke the "authentication" dialog so I can sign in once I launch the app and get right into the settings. However, I'd like to make it so the script doesn't even need admin permission to run, or make it somehow have my password built in to it. Security is not an issue, its my personal computer that nobody else has access to so I really don't care if my password is written in the code. Also, if you have any tips on how to streamline the Quit/Hide/Resume dialog I'd appreciate that too. Resume is there because there's a chance I won't have to sign in again if the app does not quit, however more often than not I have to sign in anyways. Thanks again in advance, sorry this post is so long but like I said, I'm pretty new to all this so I don't know exactly what you need to be able to help me.
    The Whole Script:
    -- Variables and Authentication
    set done to "n"
    set quitapp to "no"
    display dialog "Please enter your password to allow Sharing Manager to make changes to your settings." with icon caution
    do shell script "/bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.AppleFileServer.plist" with administrator privileges
    delay 0.2
    -- Repeats
    repeat while quitapp is "no"
              repeat while done is "n"
      -- Choose Setting
                        display dialog "Choose Setting to Edit" buttons {"Internet", "File Sharing", "Exit"} default button 3
                        set the button_pressed to the button returned of the result
                        if the button_pressed is "Internet" then
      -- Commands for Internet Settings
                                  display dialog "Internet Sharing" buttons {"On", "Off", "Cancel"} default button 3
                                  set the button_pressed to the button returned of the result
                                  if the button_pressed is "On" then
                                            do shell script "/bin/launchctl load -w /System/Library/LaunchDaemons/com.apple.InternetSharing.plist" with administrator privileges
                                  else if the button_pressed is "Off" then
                                            do shell script "/bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.InternetSharing.plist" with administrator privileges
                                  end if
                        else if the button_pressed is "File Sharing" then
      -- Commands for Sharing Settings
                                  display dialog "File Sharing" buttons {"On", "Off", "Cancel"} default button 3
                                  set the button_pressed to the button returned of the result
                                  if the button_pressed is "On" then
                                            do shell script "/bin/launchctl load -w /System/Library/LaunchDaemons/com.apple.AppleFileServer.plist" with administrator privileges
                                  else if the button_pressed is "Off" then
                                            do shell script "/bin/launchctl unload -w /System/Library/LaunchDaemons/com.apple.AppleFileServer.plist" with administrator privileges
                                  end if
                        else
                                  set done to ""
                        end if
              end repeat
      -- Confirm Quit/Hide
              display dialog "Really quit? You will have to reenter admin info next time." buttons {"Quit", "Hide", "Resume"} default button 1
              if the button returned of the result is "Quit" then
                        set quitapp to ""
              else if the button returned of the result is "Hide" then
                        tell application "System Events"
      keystroke "h" using command down
                        end tell
              else
                        set done to "n"
                        set quitapp to "no"
              end if
    end repeat

    with respect to general improvements, a couple of points:
    If I'm reading this script correctly, it looks like you're putting up an applescript alert and leaving it hanging until it's dismissed.  This is an atypical approach (applescripts aren't really meant to hang around indefinitely waiting for a respons).  If I were doing this I would either go whole-hog and create an applescript application in XCode with a proper interface, or remove the hanging dialog and create a set of toggle scripts that I could use from the script menu.  if you really want to keep the hanging dialog, though, you can streamline it by absorbing the secondary dialogs into the main dialog.  that's like so:
    set netSharingStatus to checkService("com.apple.InternetSharing")
    set fileSharingStatus to checkService("com.apple.AppleFileServer")
    display alert "Current Settings" message "Click to change settings" buttons {"Internet " & netSharingStatus, "File Sharing " & fileSharingStatus, "Exit"} default button 3
    -- choose next action based on the button clicked and the status vairable
    on checkService(service)
              do shell script "launchctl list"
              if the result contains service then
                        return "On"
              else
                        return "Off"
              end if
    end checkService
    using handlers like the above can also streamline the rest of your script.  the following construction means you only have to write the do shell script line once, rather than the four times you currently do, and makes for much cleaner reading.
    if the button_pressed starts with "Internet" then
              toggleService("com.apple.InternetSharing", netSharingStatus)
    else if the button_pressed starts with "File Sharing" then
              toggleService("com.apple.AppleFileServer", fileSharingStatus)
    else
      --exit routine
    end if
    on toggleService(service, currentState)
              if currentState in "On" then
                        set action to "unload"
              else
                        set action to "load"
              end if
              set command to "/bin/launchctl " & action & " -w /System/Library/LaunchDaemons/" & service & ".plist"
              do shell script command user name "adminusername" password "password" with administrator privileges
    end toggleService

  • Help with applescript...newbie...no idea what I'm doing...

    Apple Script: I got this applescript off of a forum for RapidCart for Rapidweaver.  It allows the user to upload multiple thumbnails to each e-commerce page with the code...I don't know how to make this work for my files tho...can anyone help...this is what the person said to put into applescript and then run it...please help...
    display dialog "Item número" default answer "" buttons {"OK"} default button 1
    set numitem to text returned of the result
    display dialog "Número de fotos" default answer "2" buttons {"OK"} default button 1
    set contador to text returned of the result
    tell application "TextEdit"
        activate
        make new document
        repeat with counter from 1 to contador
            if counter = 1 then
                make new word at end of text of document 1 with data "<a href=%resource(Labe/L" & numitem & ".jpg)% rel=\"remooz\" title=\"Ref. L" & numitem & " foto " & counter & "\"><img class=\"imageStyle\" alt=\"\" src=%resource(Labe/L" & numitem & ".jpg)% width=\"40\" height=\"40\"></a>" & return
            else
                make new word at end of text of document 1 with data "<a href=%resource(Labe/L" & numitem & "_0" & counter & ".jpg)% rel=\"remooz\" title=\"Ref. L" & numitem & " foto " & counter & "\"><img class=\"imageStyle\" alt=\"\" src=%resource(Labe/L" & numitem & "_0" & counter & ".jpg)% width=\"40\" height=\"40\"></a>" & return
            end if
            set counter to counter + 1
        end repeat
    end tell

    First of all, I know nothing about RapidCart, RapidWeaver
    I've cut and pasted the script into the Applescript editor, compiled it and ran it
    the first dialog prompts for "Item number" - so I typed "5"
    the second dialog prompts for "Number of Photos" - so I typed "2"
    Here's the output
    <a href=%resource(Labe/L5.jpg)% rel="remooz" title="Ref. L5 foto 1"><img class="imageStyle" alt="" src=%resource(Labe/L5.jpg)% width="40" height="40"></a>
    <a href=%resource(Labe/L5_02.jpg)% rel="remooz" title="Ref. L5 foto 2"><img class="imageStyle" alt="" src=%resource(Labe/L5_02.jpg)% width="40" height="40"></a>
    the generated HTML is meaningful to RapidCart.
    Now, the author should have explained that this script is specific to his needs and MUST be customized for your use.
    I don't know how familiar you are with HTML but the "resource" tag refers to a file - a jpg file in this case.

  • Help with Applescript

    Hi there, thanks in advance for any help on this ...
    I have an excel spreadsheet export from our back-office that exports product information from our shop. I want this to be reformatted slightly using AppleScript
    An example of our workbook is as follows
    A1     B1     C1     D1     E1     F1     G1     H1     I1
                                                                   text   text
    So essentially columns A1 to G1 are blank.
    What I would like is Applescript to add a row to the top of this workbook and pre-fill each column with a column heading. These are always the same regardless.
    Then I would like Applescript to pre-fill each blank row with pre-set information. For example (now) A2 until the last row would read "New". Each one of the blank columns has different data but its always text, never a formula. Ideally it should only fill the rows where H1 contains text, so it does not continue filling those empty columns with data when the rest of the sheet is blank.
    Then (if possible) it should save this as a comma delimited CSV.
    I know this is pretty harsh, but it would save me hours and hours and work.
    Thanks!

    applescript forum is under OS X technologies.
    http://discussions.apple.com/forum.jspa?forumID=724
    btw, was it you I had a long thread with about moving pictures around using applescript? I lost track of that...

  • Need help with choosing a 6 cell and 9 cell battery (mo06, mo09)

    Hey hi all,
    I have a pavilion m6 series notebook which comes with mo06(6 cell) battery by default.
    I need to replace the battery with a new one and I've come across a mo09 (9 cell) battery with the same price as that of mo06.
    I've no idea if mo09 batteries can be used instead of mo06.
    If anyone who knows anything about this please help me choose.
    Here's the link
    http://hpshopping.in/Accessories/Batteries
    Thanks a lot in advance

    Hi
    Sorry was the delay wanted to make sure the battery should work fine for your unit.
    672412-001  SPS-BATT 9C 100WHr 3.0AH LI MO09100-CL  
    Let us know how it goes!
    "I work for HP."
    ****Click the (purple thumbs up icon in the lower right corner of a post) to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    Regards
    Manjunath

  • Help with hugely difficult Finder difficulties?

    Okay, I need help, if anyone has it to offer. Here is my computer's history and symptoms:
    It's a MacBook, 18 months old, running 10.5.5. For a while it worked fine and there have been no recent significant installations. My wife uses it for writing and while she does connect to the internet, she does almost no downloading or even viewing of any unusual websites.
    Recently it began showing the spinning beachball far more often than usual, usually when browsing for a file from inside another application (that is, when attaching a document to an email or opening a document through Word). The beachball would interrupt for about 8-12 seconds, a very annoying difficulty. So far, though, livable.
    Last week the computer spontaneously started up to the prohibitary sign. It had not been shut down improperly nor had anyone made any changes to the system software. I tried some things that didn't work, then called tech support (for $50, of course) and they had me delete the user's caches folder in safe mode and restart. This seemed to work, only the beachball problem got worse; it started happening when regularly in the finder: opening folders, clicking on menus, etc. An 8-12 second delay.
    Today the prohibitary sign appeared again and I followed the same steps, with mixed results. It is now able to boot up, but has only minimal function. The beachball appears for 8-12 seconds at any click of the mouse, on a menu, a menu item, a folder, a file, etc. The desktop is not right; there is a desktop picture that's supposed to display but instead I see about the top 1/2 inch of that picture, then the rest of the screen is blue. This has happened the same way on multiple restarts. Furthermore, the dock will not show up and if I select "Turn hiding off" in the menu, nothing happens; that is, hiding is still turned on and moving the mouse down there does not work to unhide it. All applications I have tried are slow and prone to crashing.
    As an example of its current problems: I tried to look and see what was going on with the desktop, see if I could just tell it to put that picture up again and maybe it would work (a long shot, I know, but why not try?). I went to System Preferences (8-12 second beachball delay) and then Desktop/Screen Savers (another delay). It came up on "screen savers" so I clicked "desktop." This time, 20 second delay, then it crashed, you know, a "do you want to send an error report?" crash. This happened repeated times after repeated restarts.
    I know this is an insanely long post but I wanted to give as much info as possible. I am at a loss. Does anybody have any clear idea as to how to diagnose this problem and/or what steps might alleviate it? Much obliged. Thanks in advance!

    Hello jupiter:
    Welcome to Apple discussions.
    Your post was not +"insanely long!"+ I found it most thorough.
    You seem to have multiple issues - not just with the browser. I think I would do an archive and install to "eliminate" software as an issue:
    http://support.apple.com/kb/HT1710
    An A&I installs a fresh OS X while preserving your files, programs, and settings. It is ALWAYS a good practice to back up before software changes. You would, of course, need to run software update after the A&I to bring things to a current level.
    Barry

Maybe you are looking for

  • User Defined Characteristics not populating for Batch during GR of SC PO

    We have a requirement to populate the one characteristic ( Country of origin ) of batch during GR. After GR the characteristics value should be displayed in Classification Tab of MSC3N transaction. So that I have implemented the Enhancement MBCFC004

  • Can't read a DVD-RW I just burned successfully

    My search on this forum didn't get me the answer - Hope I didn't miss it... My knowledge in this area is zero having come from a beige G3 with little need to burn even a CD. A friend gave me a DVD-RW onto which he had burnt a short TV clip recorded d

  • IPhone 5s doesn't work with Mophie case on

    I bought Mophie last week at Verizon store. I am a caretaker and thought it would be great however I had to take Mophie off as when I have gone to recharge twice the screen zooms out of proportion AND worse phone will not work so off it came and phon

  • Acummulating a total using two files

    I have two files that I am working with. One file is a lsit of all our customer orders that contains basic data that has been estimated. The second file I have is sorted by order number (the same key as file one) and contains multiple records for eac

  • Again macosx 10.4.6 update for imac intel

    as i see im not the only one who has problems with it.. so, i have only a isdn connection (64 kbit) but it works fine.. so.. i couldnt download the update via macosx update service, so i downloaded it on the apple support site, with a download manage