HT202879 I would like to have a spreadsheet editing software for my new Template Numbers Pro but my operating system is 10.7.  Are there other editing software programs (less the 10.9) that can work with this app?

Hi,
I am looking for some editing software for my new Template Numbers Pro.  Numbers is 10.9, my computer is only 10.7.  What do you suggest?
Thanks,
Billieoh

Billieoh wrote:
That is good to know.  Frankly I don't know what kind of machine I have.  I have a Mac OSX Lion 10.7.3 early 2008.
If it's the "Templates for Numbers Pro" on the Mac App Store then you need OSX 10.7 or later.  You'll need iWork '09 or later.
It looks as if you want to use the iOS version of the same templates then you will need the latest Numbers there.  And if you use the latest Numbers there and want to sync to the Mac, you'll need to have Mavericks and Numbers 3.
SG

Similar Messages

  • I've got a power cable from my 2011 macbook air which I would like to use as a spare cable for my new 2013 macbook pro, but the design has changed.  Is there an adapter available so that I can use it?

    I've got a power cable from my 2011 macbook air which I would like to use as a spare cable for my new 2013 macbook pro, but the design has changed.  Is there an adapter available so that I can use it?

    Welcome to the Apple Support Communities
    Use the MagSafe to MagSafe 2 Converter > http://store.apple.com/us/product/MD504ZM/A/magsafe-to-magsafe-2-converter?fnode =51 However, note that the MacBook Air doesn't provide enough energy to charge the MacBook Pro with Retina display, so it could not work

  • Can anybody help me to build an interface that can work with this code

    please help me to build an interface that can work with this code
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.FileReader;
    public class Translate
    public static void main(String [] args) throws IOException
    if (args.length != 2)
    System.err.println("usage: Translate wordmapfile textfile");
    System.exit(1);
    try
    HashMap words = ReadHashMapFromFile(args[0]);
    System.out.println(ProcessFile(words, args[1]));
    catch (Exception e)
    e.printStackTrace();
    // static helper methods
    * Reads a file into a HashMap. The file should contain lines of the format
    * "key\tvalue\n"
    * @returns a hashmap of the given file
    @SuppressWarnings("unchecked")
    private static HashMap ReadHashMapFromFile(String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    HashMap map = null;
    try
    in = new BufferedReader(new FileReader(filename));
    String line;
    map = new HashMap();
    while ((line = in.readLine()) != null)
    String[] fields = line.split("
    t", 2);
    if (fields.length != 2) continue; //just ignore "invalid" lines
    map.put(fields[0], fields[1]);
    finally
    if(in!=null) in.close(); //may throw IOException
    return(map); //returning a reference to local variable is safe in java (unlike C/C++)
    * Process the given file
    * @returns String contains the whole file.
    private static String ProcessFile(Map words, String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    StringBuffer out = null;
    try
    in = new BufferedReader(new FileReader(filename));
    out = new StringBuffer();
    String line = null;
    while( (line=in.readLine()) != null )
    out.append(SearchAndReplaceWordsInText(words, line)+"\n");
    finally
    if(in!=null) in.close(); //may throw IOException
    return out.toString();
    * Replaces all occurrences in text of each key in words with it's value.
    * @returns String
    private static String SearchAndReplaceWordsInText(Map words, String text)
    Iterator it = words.keySet().iterator();
    while( it.hasNext() )
    String key = (String)it.next();
    text = text.replaceAll("\\b"key"
    b", (String)words.get(key));
    return text;
    * @returns: s with the first letter capitalized
    String capitalize(String s)
    return s.substring(0,0).toUpperCase() + s.substring(1);
    }... here's the head of my pirate_words_map.txt
    hello               ahoy
    hi                    yo-ho-ho
    pardon me       avast
    excuse me       arrr
    yes                 aye
    my                 me
    friend             me bucko
    sir                  matey
    madam           proud beauty
    miss comely    wench
    where             whar
    is                    be
    are                  be
    am                  be
    the                  th'
    you                 ye
    your                yer
    tell                be tellin'

    please help me i don t know how to go about this.my teacher ask me to build an interface that work with the code .
    Here is the interface i just build
    import java.util.Map;
    import java.util.HashMap;
    import java.util.Iterator;
    import java.io.FileNotFoundException;
    import java.io.IOException;
    import java.io.BufferedReader;
    import java.io.FileReader;
    import java.awt.*;
    import javax.swing.*;
    public class boy extends JFrame
    JTextArea englishtxt;
    JLabel head,privatetxtwords;
    JButton translateengtoprivatewords;
    Container c1;
    public boy()
            super("HAKIMADE");
            setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
            setBackground(Color.white);
            setLocationRelativeTo(null);
            c1 = getContentPane();
             head = new JLabel(" English to private talk Translator");
             englishtxt = new JTextArea("Type your text here", 10,50);
             translateengtoprivatewords = new JButton("Translate");
             privatetxtwords = new JLabel();
            JPanel headlabel = new JPanel();
            headlabel.setLayout(new FlowLayout(FlowLayout.CENTER));
            headlabel.add(head);
            JPanel englishtxtpanel = new JPanel();
            englishtxtpanel.setLayout(new FlowLayout(FlowLayout.CENTER,10,40));
            englishtxtpanel.add(englishtxt);
             JPanel panel1 = new JPanel();
             panel1.setLayout(new BorderLayout());
             panel1.add(headlabel,BorderLayout.NORTH);
             panel1.add(englishtxtpanel,BorderLayout.CENTER);
            JPanel translateengtoprivatewordspanel = new JPanel();
            translateengtoprivatewordspanel.setLayout(new FlowLayout(FlowLayout.CENTER,10,40));
            translateengtoprivatewordspanel.add(translateengtoprivatewords);
             JPanel panel2 = new JPanel();
             panel2.setLayout(new BorderLayout());
             panel2.add(translateengtoprivatewordspanel,BorderLayout.NORTH);
             panel2.add(privatetxtwords,BorderLayout.CENTER);
             JPanel mainpanel = new JPanel();
             mainpanel.setLayout(new BorderLayout());
             mainpanel.add(panel1,BorderLayout.NORTH);
             mainpanel.add(panel2,BorderLayout.CENTER);
             c1.add(panel1, BorderLayout.NORTH);
             c1.add(panel2);
    public static void main(final String args[])
            boy  mp = new boy();
             mp.setVisible(true);
    }..............here is the code,please make this interface work with the code
    public class Translate
    public static void main(String [] args) throws IOException
    if (args.length != 2)
    System.err.println("usage: Translate wordmapfile textfile");
    System.exit(1);
    try
    HashMap words = ReadHashMapFromFile(args[0]);
    System.out.println(ProcessFile(words, args[1]));
    catch (Exception e)
    e.printStackTrace();
    // static helper methods
    * Reads a file into a HashMap. The file should contain lines of the format
    * "key\tvalue\n"
    * @returns a hashmap of the given file
    @SuppressWarnings("unchecked")
    private static HashMap ReadHashMapFromFile(String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    HashMap map = null;
    try
    in = new BufferedReader(new FileReader(filename));
    String line;
    map = new HashMap();
    while ((line = in.readLine()) != null)
    String[] fields = line.split("
    t", 2);
    if (fields.length != 2) continue; //just ignore "invalid" lines
    map.put(fields[0], fields[1]);
    finally
    if(in!=null) in.close(); //may throw IOException
    return(map); //returning a reference to local variable is safe in java (unlike C/C++)
    * Process the given file
    * @returns String contains the whole file.
    private static String ProcessFile(Map words, String filename) throws FileNotFoundException, IOException
    BufferedReader in = null;
    StringBuffer out = null;
    try
    in = new BufferedReader(new FileReader(filename));
    out = new StringBuffer();
    String line = null;
    while( (line=in.readLine()) != null )
    out.append(SearchAndReplaceWordsInText(words, line)+"\n");
    finally
    if(in!=null) in.close(); //may throw IOException
    return out.toString();
    * Replaces all occurrences in text of each key in words with it's value.
    * @returns String
    private static String SearchAndReplaceWordsInText(Map words, String text)
    Iterator it = words.keySet().iterator();
    while( it.hasNext() )
    String key = (String)it.next();
    text = text.replaceAll("\\b"key"
    b", (String)words.get(key));
    return text;
    * @returns: s with the first letter capitalized
    String capitalize(String s)
    return s.substring(0,0).toUpperCase() + s.substring(1);
    }... here's the head of my pirate_words_map.txt
    hello               ahoy
    hi                    yo-ho-ho
    pardon me       avast
    excuse me       arrr
    yes                 aye
    my                 me
    friend             me bucko
    sir                  matey
    madam           proud beauty
    miss comely    wench
    where             whar
    is                    be
    are                  be
    am                  be
    the                  th'
    you                 ye
    your                yer
    tell                be tellin'

  • I need to get 2 decimal places when using a formula for a quotient and Numbers will only give me whole integers which is useless since most items will be less than 1. How can I change this?

    How do I get 2 decimal places when using a formula for a quotient? It only gives me whole integers. Most of the results will be less than 1 so I need 2 decimal places

    the quotient function returns only whole number portion of the dividing two numbers.  If you want the actual decimal value use the divide operator.  you enter this as:
    A/B
    if the numerator is in A1 and the denominator is in B1 you can enter the formula like this:
    =A1/B1

  • I want to place an image in my InDesign document that can work with an address like this (\Resources\Thumb) rather than this (C:\Users\JSmith\Desktop\InDesign thumbnail Test\001\Resources\Thumb) is this possible?

    I want to place an image in my InDesign document that can work with an address like this (\Resources\Thumb) rather than this (C:\Users\JSmith\Desktop\InDesign thumbnail Test\001\Resources\Thumb) is this possible? In a nutshell I want to point the link to an image in a directory that uses just part of the address.

    I know this is something you can do in Maya with linked files. I guess InDesign just isn't there yet.
    MW Design -  Yeah I think "Relative paths" is the right term! I want to create a Layout with an image in the center of the page - and then duplicate my folder structure with that file. With that, I want to replace the Linked image file with a diferent image file of the same name. In effect having multiple files of the same layout with different images.  I hope that made sense.  

  • I have created my site with Muse and have uploaded to an external ftp hosting, now my secure log in will not work because I am not using BC. Is there a way to create a secure log in that will work with out being forced to use BC?

    I have created my site with Muse and have uploaded to an external ftp hosting, now my secure log in will not work because I am not using BC. Is there a way to create a secure log in that will work with out being forced to use BC?

    Hi
    Secure Zone login feature will only work if you host your website with Business catalyst.
    Please take a look to this as an alternative
    Password Protect Pages Widget for Adobe Muse
    Also, check this thread,
    Re: Can I create a login/password protection in Muse for a HTML5 page or two?

  • I would like to convert my LPs to digital on my new mac book pro with retinal display . How can i do this?

    would like to convert my LPs to digital on my new mac book pro with retinal display
    . How can i do this?

    The new Mac's do not have analog audio in so you will have to go with a USB audio in device or else if you do not yet own a turntable (or are looking to upgrade) you could get a turntable that has USB out.
    The Griffin Technology iMic USB Audio Device is a low cost consumer grade solution if you already have a turntable.
    For recording I use Audacity: Free Audio Editor and Recorder which does a good job and has the ability to run the audio signal through various filters.

  • It says that "there was a problem connecting to the server". What's wrong with this, and how can I deal with this problem?

    I just got my new iPad Mini2, and when I choose "sign in with your apple ID", it says that "there was a problem connecting to the server". What's wrong with this, and how can I deal with this problem?

    1. Turn router off for 30 seconds and on again
    2. Settings>General>Reset>Reset Network Settings

  • I want to buy iPad Air online, how do I know the one that can work with Nigeria gsm network.

    I want to buy iPad Air online, how do I know the one that can work with Nigeria gsm network.

    Take a look at HeadRoom (headphone.com). It's a fabulous resource for all types of headphones, with great guides and useful reviews.
    http://www.headphone.com/

  • Iphoto will not open I am asked to check with developer that iphoto works with this version of OS x I have followed all the steps recomended and reinstalle ILife but to no avail

    Iphoto will not open I am asked to check with developer that iphoto works with this version of OS x. I have Mountain Lion OS X I have followed all the steps recomended  by T Devlin in a previous discussionand reinstalle ILife but to no avail

    To reinstall iPhoto you'll have to delete the current application and all files with "iPhoto" in the file name with either a .PKG or .BOM extension that reside in the:
    HD/Library/Receipts folder (10.5 and earlier)
    or from the /var/db/receipts/  folder (10.6) .
    or from the /private/var/db/receipts folder (10.7 or later)
    Then install iPhoto from the source it came from originally.

  • DKA790GX Platinum - What's the best card that will work with hybrid crossfire?

    Hi everyone. I know this board is a bit old now but I've set it up for my kids to play oldish games and it occurred to me that video cards from that era might be inexpensive these days. What's the best possible card to use with the on-board card for its hybrid crossfire? Would it be better to just get a separate standalone card? If so what's the best that will work with this board? I'm completely out of the loop these days on tech and have no idea what will even be compatible anymore.

    Quote from: KrisWood on 12-June-12, 00:27:34
    Good news! I resolved my graphics issues without buying a new card. It all came down to a little logic. It used to work just fine. The game it's installed off the same disc as before, and there us no noticeable change in the install media. The hardware has not changed unless there has been some sort of electrical damage I cannot see. I had however updated my drivers many times over the last few years, and always from the AMD website.
    I installed the latest MSI drivers for my onboard graphics and voila, it works!
    All graphical glitches are now gone, though it runs a but slower.
    I may still buy a new card. I'm favouring the HD4870x2 as the top of my motherboard's era or the slightly newer HD5770 which some reviews say is equivalent in performance. The latter uses the same GPU and shaders as the 6770 and is considerably cheaper.
    If I go with NVidia it seems the best card in my price range is the 440GT.
    Thanks, everyone, for all the advice!
    i'd say the 790GX chipset would run a saphire radeon HD5770 card fine i have 1 of them on a different maufactures board that uses the AMD 690GX chipset and i have put both my HD5770's in that with crossfire on and had no issues at all just to try it out!
    and the AMD 690GX is a lower more old chipset then the one your board has so i wouldnt see any issues with the board not accepting the HD 5770 cards at all!
    i like the saphire branded ones better as they run much cooler and quieter then a stock card!

  • HT1977 I downloaded an app on my PC, signed into my iTunes account, but when I connect my iPhone and click sync, it won't copy to my phone. How can I get this app to install on my phone?

    I downloaded an app on my PC, signed into my iTunes account, but when I connect my iPhone and click sync, it won't copy to my phone. How can I get this app to install on my phone?

    Your phone connected, iTunes running, under the "Apps" tab, you've selected this app to install on your phone, correct? Hit the "Apply/Sync" button, lower right on the Apps tab, what happens?

  • When filling out a form, some fields copy to others when I tab to the next. How can I make this stop?

    When filling out a form, some fields copy to others when I tab to the next. How can I make this stop?

    You can't using Adobe Reader. It looks like whomever created the form used the same identifiers (names) for various fields. Each field with the same name will populate with the information used in another field of the same name. This is intentional.
    Normally when I see this, it tells me that someone created an initial field then copy/pasted it to make additional fields but forgot to change the names.

  • I have an old MAC using OS 10.5 (does not have Intel processor). I need a new printer, but i cannot find one that will work with such an old operating system. Is there a new printer that will work with this old system?

    I have an old IMAC using 10.5, and it cannot use any newer operating system. I need a new printer, but I cannot find one that is compatible with this old system.
    Is there a new printer out there that will work with 10.5?
    Thanks,
    Niles Stroh

    Canon Pixma iP4950 works great with my PPC G5 iMac on Leopard. Maybe other of their models do as well.

  • HT4623 Could not activate cellular data network. You are not subscribed to a cellular data service" "Cellular Data Plan Usage-There is no data remaining on your current plan. Would you like to add more data now?"what is the best thing i can do with this p

    Could not activate cellular data network. You are not subscribed to a cellular data service"
    "Cellular Data Plan Usage…There is no data remaining on your current plan. Would you like to add more data now?"what im going to do whit this problem??

    I have done that and it is definitely on.  My husband has the exact same phone and I upgraded his IOS at the same time, but this problem is not happening to his phone (we are also on the same plan, so our service should be the same).  Our settings appear to be identical and my phone is showing the 3G symbol at the top, so I can't understand why it won't access the network.
    I've turned it on and off twice and have reset all settings with my iTunes account, but it still isn't working.
    I'm not a complete idiot with this sort of stuff - I have tried all the obvious things.

Maybe you are looking for

  • It wont let me download apps it says i have to verified my id but i did

    I made a apple id account for my apps and music and it wont let me download it says that I need to verified which I did cause I checked my email it say previously verified and im pretty sure that it is verified. Thank you and let me know what I can d

  • Add value to Lead Status

    Hi All, How can I add new value's to Lead Status. Status field on the Lead Screen is a read only Pick list. Thanks

  • ReCreate Business System (ABAP AS) with the same name ?  is this safe ?

    Hi All, Recently, I got problem with the business system (ABAP AS) in SLD suddently the BS type changed to Third Party after did some migration on the respective System. The original ABAP system has been deleted and replace by new installed system wi

  • Frozen Screen will not reset

    I recently tried to reset my Iphone. i went to settings, reset, erase all content and settings. and when i did it cut off and came back on with the apple icon.. i just stays on that screen and then a loading symbol comes up. my computer does not reco

  • SF 200-24P does not see the MGBSX1

    I have a SF 200-24P and plugged in a MGBSX1.  I am logged into the web interface and see that nowhere does the switch acknoledge the mini-GBIC.  I can see that the GBIC is powered on.  If I plug the fiber in, the transceiver on the other end shows a