How do I create a shortcut to fill cells with the same background colour

I have recently starting using Numbers, being an Excel user for years.
I often fill cells with a yellow background to highlight them.
In Excel you can do this from a simple colour menu in the toolbar at the top.
I have found no quick and easy way to do this in Numbers.
Any advice would be appreciated.
thank you

As far as I can tell there's no direct equivalent of the little paintbucket button in Excel that remembers the last colour you filled with.
One quick and relatively easy way to achieve it would be with an AppleScript:
tell application "Numbers" to tell front document to tell active sheet
  try
  set active_table to (first table whose class of selection range is range)
  on error
  display alert "No selection" buttons {"OK"} default button 1
  return
  end try
  tell active_table
  set background color of selection range to {62466, 65535, 28003}
  end tell
end tell
This could be run from Numbers' script menu (screen grab below) or saved as an Automator Service and run from a popup or keyboard shortcut (eg ctrl-y).
Post back if you'd like to follow up either of those ideas.

Similar Messages

  • How to apply different keyboard shortcuts to an actions with the same name but in different menus within one application?

    Hi,
    Hopefully someone can help. I have the application "djay" and in two different menus there is the action "Eject". I was wondering if it's possible to apply different keyboard shortcuts to those actions with the same name? I can't see how to do it as it seems you can only write the action but as there are two it doesn't seem to work for me.
    For example:
    djay>Table-1>Eject - ⌘⇧1
    djay>Table-2>Eject - ⌘⇧0
    Thanks in advance for any help!!

    A NodeList doesn't only contain 1 element. In your example it contains ALL <Data> elements inside the document.
    NodeList nodes = document.getElementsByTagName("Data");
    System.out.println(nodes.getLength() + " \"Data\"-elements found");
    for(int i=0; i<nodes.getLength(); i++) {
       Node node = nodes.item(i);
    }

  • How can I create a new game enter account with the same iTunes account

    I Created a separate gamec enter account for my two sons, I'd like to create one for my wife but I can't find a way to do it under ios8 can somebody help? Thanks

    Go to the System Preferences>Users.
    Click the lock if and enter your password, if necessary.
    Then click on the "+" symbol below the accounts list.
    From the "New Account" menu, select"Administrator" and fill in the rest of the information.
    And finally click the "Create Account" button.
    Done. A new Administrator user account.

  • How can I create multiple versions of a video within the same project?

    OK...this is a probably a very basic question but I'm not sure how to word it clearly.
    How can I create multiple versions of a video within the same project? What I mean is that I have a bout 50 minutes of video and I want to make two DVDs using different clips from this original 50 minutes of footage. It would be a real pain to have to re-import the video AGAIN for the second DVD. I suppose I could drop anything I don't want to burn to DVD back into the clips pane but that would wipe out all my transitions wouldn't it? I want to save each project in their “raw” form so I can burn additional DVDs later otherwise I would just do them one at a time and not care about one of them being destroyed.
    Wow...that was a mess. Does anyone understand what the heck I’m asking? I hope so.

    How can I create multiple versions of a video within the same project?
    You can't. You make separate projects using the same or different clips, segments, transitions, titles, etc. You can even duplicate the first project and then modify/make the desired changes in the duplicated project. Each project can then be burned as a different DVD or as different titles on the same DVD if there is enough room.

  • How do I create a calendar like I did with the Appleworks Assistant?

    How do I create a calendar like I do with the Appleworks Assistant under Starting Points? I don't see any calendar templates in Pages.

    Pages doesn't have any such features. Pages do lack a lot that AW has. Nor can Number do it.
    Go to iworkcommunity.com and search for a calendar template.

  • How do you create a flash in game popup on the same frame?

    How do you create a flash in game popup on the same frame?
    I need to make a popup in flash on the same frame. Basiclly like you reach the frame and randomly (I know how to do random stuff) a popup might appear saying like you got a prize; and I want the stuff in the back to stay the same.
    Please help me!
    Thankx in advance.

    Whatever frame you intend to make this movieclip appear in, you first set it to be invisible using...
    popupName._visible = false; // popupName is whatever instance name you use
    And for whatever random code you use to trigger it to appear you just set the _visible property to be true...
    popupName._visible = true;

  • I wanted to create a photo album on dreamweaver with the same style as the ones in iWeb, does anyone know a site to do this or a way to transfer the album to dreamweaver? thanks

    I wanted to create a photo album on dreamweaver with the same style as the ones in iWeb, does anyone know a site to do this or a way to transfer the album to dreamweaver?

    Excellent suggestion! I regularly post in those forums too, so I thought I might offer help here, but http://forums.adobe.com/community/dreamweaver?view=discussions would be the best place for a Dreamweaver question.
    Nancy O, Murray Summers or Mark Hollis there can be of plenty help.

  • How do I create a text field that automatically enters the same info on proceeding pages

    I know this is a basic question for Acrobat Pro, but I'm a newbie at it.  Basically, I work with pdf forms in education and I would like to figure out a way where if I enter for example someone's birthdate in page 1, and it automatically enters it in pages 2, 3, 4 and so on of the same document.
    Also, along the same lines, is there an easy way to be able to edit multiple pages of a document at once. Example: A lot of the people at my office that use the copy and paste feature in the pdf documents, and often overlook changing the "he" to a "she" and "his" to a "her" and as a result we end up with filled forms that use the incorrect sex.
    I apologize in advance if I'm not being very clear, but is the best way I can describe my problem.
    Thanks

    1. You can duplicate the field. Right-click it using the Select Object Tool and select Duplicate. You can then select the page range.
    Otherwise, you can copy&paste it, or create a new field and give it the same name as the original.
    2. No.

  • How do I make Applescript to compress 2 filez with the same name?

    Hello guys and thank you for reading this!
    I don't know a lot about programming, but i believe applescript can save my life. What I need is.
    Detecting 2 files with the same name, but differnt extension. (song 1.jpg, song 1.mp3)
    Compressing those 2 files into a single .zip (In the end I would have song 1.jpg, song 1.mp3 and song 1.zip
    And that's it! I know its pretty simple, and I've seen the "Create Archive" in automator, but I don't really know how to tell him which files to Compress.
    Thanks again!

    Hi,
    Try this script :
    set sourceFolder to choose folder
    tell application "System Events"
          {name, name extension} of (files of sourceFolder whose name extension is not "zip")
          my compress2FilesSameName(the result, sourceFolder as string)
          repeat with i in (get folders of sourceFolder) --check in subfolders
                {name, name extension} of (files of i whose name extension is not "zip")
                my compress2FilesSameName(the result, path of i)
          end repeat
    end tell
    on compress2FilesSameName(tList, tFolder)
          set tnames to item 1 of tList
          set tExtensions to item 2 of tList
          set tc to count tnames
          set j to 1
          repeat while j < tc
                tell (item j of tExtensions) to if it is not missing value or it is not "" then
                      set n1 to (count) + 2
                else
                      set n1 to 1
                end if
                tell (item (j + 1) of tExtensions) to if it is not missing value or it is not "" then
                      set n2 to (count) + 2
                else
                      set n2 to 1
                end if
                set name1 to item j of tnames
                set name2 to item (j + 1) of tnames
                if (text 1 thru -n1 of name1) = (text 1 thru -n2 of name2) then -- same name
                      set tFile1 to quoted form of POSIX path of (tFolder & name1)
                      set tFile2 to quoted form of POSIX path of (tFolder & name2)
                      set zipFile to quoted form of POSIX path of (tFolder & (text 1 thru -n1 of name1) & ".zip")
                      do shell script "/usr/bin/zip -j  " & zipFile & " " & tFile1 & " " & tFile2
                      set j to j + 2
                else
                      set j to j + 1
                end if
          end repeat
    end compress2FilesSameName
    if an archive already exists with the same name (in the parent folder of the files to compress) , the ZIP command overwrite this ".zip" file.
    Example  with "song 1.jpg", "song 1.mp3" and "song 1.zip" :
    If "song 1.zip" doesn't exist, the ZIP command create the "song 1.zip" file.
    If "song 1.zip" exist, the ZIP command overwrite the "song 1.zip" file (it will not create a new archive).

  • Bug with workflow that creates a folder and sub folder with the same name.

    Hi,
    I've found a possible bug in SharePoint 2010 workflows. I only have access to SharePoint 2010 and SharePoint Designer 2010 over my companies intranet, afaik I don't have access to to logs or anything server side so sorry for the any missing information.
    I had some problems with a workflow in one list that needed to create some folders and subfolders in a second list. The production version did a lot more so I setup a test area with 1 list and a workflow that only does the folder creation part and have managed
    to consistently replicate this problem.
    The test list has two columns, [title] and [sub folder title]
    The workflow starts by getting the values for [title] and [sub folder title] into variables.
    It then creates a folder in the same list with the same name as [title], and then creates a sub folder under this with the name from [sub folder title]
    So the resulting structure would be:
    Test List:-
        List item with fields [title] and [sub folder title]
        [folder: title]:-
            [folder: sub folder title]
    If both folder names are different (e.g Folder1 and Folder2) then it works perfectly fine, if both folder names are the same (regardless of character case, e.g. samefolderName and sameFolderName) then the workflow fails.
    As part of the test i made the first action of the workflow to log the message "Workflow Started" to the history list. When the workflow fail there's nothing logged in the history list other than the error: "The workflow could not update the
    item, possibly because one or more columns for the item require a different type of information."
    Creating a sub folder with the same name as it's parent works fine manually but for some reason a workflow can't seem to do it in one action.
    As there's no history list entries before the error it looks like the workflow is just failing to start but if i do something like add an if statement to check if [title] and [sub folder title] are the same, and only create the subfolder when they are not
    then it runs fine doing what it's set to.
    The function of the workflow in our office was for convenience so were just working without it. Just wanted to post to see if anyone else has come across this/could try to replicate or explain this  and see if it's a SharePoint bug or something specific
    to our setup.
    thanks,
    Martin

    not sure about the specifics of your workflow, but if you're querying the list for the folders... keep in mind that a list lookup will only ever bring back ONE item... even if there are several items that meet the filter criteria... example: if i search
    a list for an item assigned to "john doe", there may be 15 tasks that meet the criteria, and it'll only grab one... this is why SP Designer WARNS you when your list lookup may exhibit this behavior.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Inbox filling up with the same emails

    My Inbox fills up many times a day with the same emails that It's already imported. I've trashed these new imports but it doesn't matter. Should I trash the plist? But will that lose my saved mail? The only thing that stops this temporarily is if I go to the server and trash the emails there. But then as I get new emails it starts doing the multiple imports again.

    Hi Dennis,
    Sorry I don't have much to offer in the line of troubleshooting your problem but wanted to let you know that the gold coloring of the email subject lines just indicates that is being marked as "junk" mail.
    It might help those helping you to post a screen shot or two of your Preferences Settings for Junk Mail tab for Mail.app including your advanced settings for the Junk Mail tab. If not if you could let those of us helping to know exactly what you have ticked etc. under those settings. Be careful not to include personal info in the shots or posting of settings.
    Also, do you have many GB's of emails stored in your mailboxes? Overstuffed mailboxes can cause many problems with mail but I have never heard of it affecting multiple copies of emails being downloaded to your account. I might also suspect that fact that you have 16 different accounts setup might be the cause of some corruption somewhere causing this anomaly with your mail downloading in that fashion.
    littleshoulders

  • How do I convert multiple RAW files to JPEG with the same settings?

    I have a considerable number (800) RAW files to convert to JPEGs. I am happy to convert them in batches requiring similar settings to save time whilst of course, leaving the original RAW files to make more individual adjustments if required later.
    I thought there was a way of doing this in small batches to save time but can't recall how to do it. 
    Can anyone help?

    Many thanks Barbara and dj_paige.
    What I didn't mention is that I'm using PSE 5 with ACR 4.6, if its relevant.  I'm thinking of updating to the next version when its out in the hope that it will run with Windows 7 64 bit or I may go to Lightroom.
    I can now see that I can batch convert a whole folder of files using "process multiple files" as dj_paige suggested but that is too many at once as the settings I choose won't be relevant for all the pics in the folder. 
    I was hoping to batch convert say 5 or 6 similar photos at a time with the same settings. I'm not quite clear what you're suggesting but I'm hoping that its a "work round" using two stages to achieve this. 
    I can't see a list of open files within ACR to ensure that they are all selected as you suggest. 
    What does clicking Open rather than Done mean?  Does this amend the original RAW file to the settings selected so that if I then "process multiple files" on the whole folder to convert from RAW to JPEG they will in fact have already been processed in smaller groups so I can convert without applying any further changes?
    If so, what settings should I apply to "process multiple files" to ensure a simple conversion of file type rather than any further adjustments?
    Any further help on this would be much appreciated.
    Andrew

  • How do I write / copy text in 2 cells at the same time

    Hi, I'm new to spreadsheets, macs and this forum.
    I want to write the same text in 2 or 3 different cells at the same time, so when I write details in 1 cell it automatically copies it into another.
    I can't find any easy way to do this and cannot find any formula, though T may be able to if I knew how to incorporate it.
    Anyone else done this?

    arthur,
    Welcome to Numbers. You'll quickly get the hang of using it.
    As to you question - If your info to be updated is in cell B2, place the formula =B2 in any cells you want to have the same information.
    pw

  • I NEED HELP! How do you Create a Drop Down Accordion Navi with the child pages remaining expanded

    I would like to know how I can create a vertical accordion navigation with some custom modifications.
    I need it to function like this sites vertical navigation. (link is below)  Click on the parent page "bedrooms" and it expands revealing all of the "child pages" then click on one of the child pages, it turns the font to Underlined and all the child pages remain exposed!  (it does not collapse after you click on a child page!!!!!!!) I need my site to do this as it tells the visiter where they are exactly on the site!     Please HELP ME!  Thank You! 
    I would actually like mine to be a little more pronounced.  Perhaps having the link turn to BOLD Font indicating you are on that page.  And the main Parent page would have a diffrent background color. 
    Site that has the Navi that I want to Mimic:
    http://www.fowfurniture.com/
    EXAMPLE: Adhesives IS IN BOLD indicating you are on that page. and it remains open it should remain open until you click on another parent page like Hardwood. (Then the Hardwood child pages (Sub Menu) would expand looking like the carpet sub menus/child pages.  All of the accordians i have found seam to collapse after you select a child page (sub menu) and the visitor wouldn't know where he is on the site...  Please Help Me accomplish this!
    Carpet
                          Repairs
                          Fibers
                          Adhesives    
                          Tools
                          Pad
    Hardwood
    When nothing is selected it should look like this: The cell of "Carpet" is a slightly a diffrent color because it is in the "Hover"  state. 
    Carpet
    Hardwood
    Tile
    Vinyl
    Linoleum

    Still need help, I could do it for a value lower. contact me at [email protected]

  • How do I create 2 totally separate iMovie Libraries (on the same drive)?

    Here is my basic issue: I take video for work and home and I store them both in iMovie. I don't want them in the same iMovie Library. I want to be able to launch iMovie '11 and select which library I want to use. They are both on my external drive and I want to keep it that way. I just don't want them mixed.
    Ideas?
    I tried option clicking iMovie to try and select a library and that didn't work because iMovie doesn't use any kind of library file the the other iLife apps do. So I took all of my "work" events out and put them in another folder. Now all the "home" events and projects that are left are organized beautifully.
    However, I don't know how to tell iMovie to open in the other folder which has the "work" events and projects.

    aha I figured that would be your follow up question! I was just to lazy to write it up for you.
    Since you need to ask, I would suggest you download a trial copy of DropDMG. It is really a tool for creating software installs with nice looking DMGs with backgrounds etc, but it will do the job for you.
    You also need to fiddle with your terminal window.
    1. Create a template folder with the name you want to appear as a hard drive
    1. Fire up DropDMG, go into preferences and choose "sparsebundle" as the format
    2. Back in main window, click on the new button and select the template folder
    3. DropDMG will create an image
    4. Locate the image and mount it (by double clicking it)
    5. Open a Finder window and select your computer
    6. Open a terminal window
    7. In the terminal window, type "cd" and press spacebar.
    8. From the Finder window, drag the MOUNTED image, from the Devices column to the left, over to the Terminal window and drop it. This will paste the full path for the image into your terminal window. So it should read something like: cd /Volumes/myfakeimage (it can handle spaces in the name)
    9. Press Enter in the Terminal window to navigate to the root of your image drive
    10. In the Terminal window, make sure you made it to the right place
    11. In the Terminal window, type "sudo ln -s" and add a space
    12. Navigate to your actual Events folder on your hard drive via Finder
    13. Drag and drop your folder containing the Events folders (it should really be named "iMovie Events") to your terminal window, effectively copying the path onto the command line.
    14. In your Terminal window, it should read something like: "sudo ln -s /Volumes/myhd/iMovie\ Events/"
    15. In the Terminal window, add a space and type WITHIN quotes "iMovie Events". This now complete line will create a symbolic link at the place where you stand, called "iMovie Envents" pointing to the path in your system. The sudo command will ask for your password and I included it here just to avoid further problems if you had issues with permissions.
    16. Hit enter and a symbolic link should be created in the root of your fake hard drive.
    Now, I've written this from memory but it ..should.. be accurate
    If you want to auto mount this image, you can place it in your login items (which you can do easiest from the account dialog in your system preferences).
    HTH

Maybe you are looking for

  • PL/SQL XML Parser & loadjava

    The instructions I have for the XML Parser utilities say, "...loadjava uploads these classes into a BLOB column in the database table and enables them to be used...by JServer". WHAT column in WHAT table? I have no documentation on loadjava, nor can I

  • Dropdown menu problem in internet explorer

    i'm pretty new to css, and i'm having trouble in regards to the dropdown menu option (dreamweaver cs3). i've made a basic template, and everything looks fine (preliminarily!) in firefox, but in IE the dropdown menus have scrollbars and the word "fals

  • DNG compression

    compressed seems to be the default when saving a DNG now. there is a check box for uncompressed but no description of whether the default it is lossless or lossy. there was a compression "lossless" check box in CS3. DNG spec says JPEG compression but

  • I can't update to the latest version of iTunes, iPhoto & iMovie

    Software update fails on all applications individually and the same updates downloaded from theApple website won't mount. How can I fix this?

  • [SOLVED] No sound in VMs on top of qemu 1.3

    After replacing qemu-kvm with qemu 1.3.x, I can't get sound to work in my VMs. The devices are properly recognized inside VM, alsamixer shows all controls OK, but speaker-test doesn't produce any sound. On the host, the sound works, so it's not a per