Properties of all items

Since switching to Mac I miss the ability to select a group of files and click the properties button to see a collective calculation of the file size, I suppose this is done differently in Mac but was wondering if, instead of multiple windows popping up, just one would with grand total calculations.
Or is this just silly?

Select the group of items then press the OPTION-COMMAND-I keys to open the Inspector window which will provide a total for the selected items in a single window. This is documented in Mac Help (Finder's Help menu) by searching for "get info".

Similar Messages

  • Export all items of the pages in jpg [HELP]

    hi,
    how could export to jpg all items in a document indesign?
    and also need measures each item.
    if someone could help me I would appreciate
    sorry for my English
    thanks

    start here:
    exports page items to created subfolder.
    jpg-naming: sourcepage + itemcount
    #target InDesign
    //set properties for export to your needs
    with(app.jpegExportPreferences){
        antiAlias = true;
    embedColorProfile = false;
    exportResolution = 300;
    jpegColorSpace = JpegColorSpaceEnum.RGB; //JpegColorSpaceEnum.CMYK, JpegColorSpaceEnum.GRAY     r/w    One of RGB, CMYK or Gray
    jpegQuality = JPEGOptionsQuality.HIGH; //JPEGOptionsQuality.LOW, JPEGOptionsQuality.MEDIUM, JPEGOptionsQuality.HIGH, JPEGOptionsQuality.MAXIMUM     r/w    The compression quality.
    jpegRenderingStyle = JPEGOptionsFormat.BASELINE_ENCODING; // JPEGOptionsFormat.PROGRESSIVE_ENCODING     r/w    The rendering style.
    simulateOverprint = true;
    //doc has to be saved once
    var theDoc = app.activeDocument;
    var docName = theDoc.name;
    var docShortName = docName.replace(/.indd/, '')
    var docPath = '' + theDoc.fullName;
    var docContainerPath = docPath.replace(docName, '')
    var destPath = docContainerPath + '/' + docShortName + '_jpgExport/'
    if(Folder(destPath).create() != true){alert('Could not create targetfolder.'); exit();}
    var pageItems = theDoc.pageItems.everyItem().getElements();
    l = pageItems.length;
    counter = 0;
    for(var i = 0; i < l; i++){
        counter = counter + 1;
        var singlePageItem = pageItems[i];
        currParentPage = singlePageItem.parentPage;
    if(currParentPage == null){parentPageNumber = 'pasteboard'}else{parentPageNumber = singlePageItem.parentPage.name; }
    newFile =new File(destPath + 'page_' +  parentPageNumber + '_' + 'item_' + counter + '.jpg');
    if(singlePageItem.exportFile(ExportFormat.JPG,  newFile) === false){alert(newFile + ' could not write jpg-File.')} 

  • Any way to update attribute in all Items of an Item Type ?

    Is there any way an attribute in all items publish of a single item type?
    I want to change all File Items so that they open in a New Browser.
    Please note: This is not for all items that we will publish going forward, just for the current items. I dont want to go back in and update items one-at-a-time.
    Thanks

    Hi Mike,
    Go to Navigator>Shared Objects>Contents>Custom Types>Item Types. From there select the Item Type you want to change (probably file).
    From here click on the 'Attributes' tab and make sure that the Display Option is in the Selected Attributes box. Then look for Display Option under the Attribute Properties section and change 'Full Browser Window link' to 'New Browser Window Link'.
    I hope this helps. I haven't tested it but I think it should do the trick. If you want file items that you create in the future to behave differently then you will have to create another item type based on File but keep the Display Option set to 'Full Browser Window link'.
    Cheers,
    Steven

  • Apply display properties to all  prompt pages

    Hi,
    I am using obiee 11.1.1.6. I have 1 dashboard and 2 pages in the dashboard . Page 1 of the dashboard consists of 1 Dasboard prompt and 1 analysis. Page 2 consists of the Same prompt as Page 1 and different analysis based on the prompt . When I take use a prompted link of the dashboard and use  the same link to the differnt IE( interent ink tab)  prompt of Page 2  doesnt not work . The selection is not working for Page 2 but works for Page 1 . I have defined the scope of the Prompt to be a Dashboard level. And the icon of apply display properties to all prompt pages is gryed not and doesnt allow me to select anything. What might be the issue

    Hi again JaredA
    I'm not trying to be a PITA here, but if you edit a Text
    Caption and click the Help button, you should see a topic titled:
    Text Caption properties dialog box - Text Caption tab
    Inside this topic, there is a line that reads:
    Apply properties to all captions in the movie: Select this
    option to apply the changes you made on this tab to all captions in
    the movie. (List of properties that are applied, and are not
    applied, to all caption items)
    And note that the word "List" is a hyperlink. When clicked,
    it reads:
    The following properties are applied to all caption items if
    this option is selected:
    * Caption style
    * Font type
    * Font size
    * Font color
    * Transition
    * Show caption before mouse movement
    The following properties are not applied to all caption items
    if this option is selected:
    * Text and text properties (bold, center, and so on)
    * Time
    Granted, it does not explicitly say that the callout pointer
    direction will not be changed, but as it is not listed among the
    attributes that ARE changed, I believe that's a pretty decent hint.
    Personally, I believe the issue is one of simply becoming
    familiar with the way an application behaves. My guess is that it's
    not all that common that someone would want to change all the
    caption directions, hence the design. But it's just a guess on my
    part.
    Cheers... Rick

  • List extended properties on all databases

    I need a script that lists/returns all extended properties in all the databases on a SQL Server 2008 Instance.
    For example the script below returns the extended property for a single database.
    SELECT objtype, objname, name, value
    FROM fn_listextendedproperty(default, default, default, default, default, default, default);
    However I need a script that returns the extended properties for all databases. Thanks.

    Hi,
    Try PowerShell like below to get the information:
    [System.Reflection.Assembly]::LoadWithPartialName('Microsoft.SqlServer.SMO') | out-null
    $s = New-Object ('Microsoft.SqlServer.Management.Smo.Server') "computer\instance"
    $dbs = $s.Databases
    foreach ($db in $dbs)
    $ds=$db.ExecuteWithResults("SELECT objtype, objname, name, value FROM fn_listextendedproperty(default, default, default, default, default, default, default)")
    $table = $ds.Tables[0];
    foreach ($row in $table)
    Write-Host $row.Item("objtype") $row.Item("objname")$row.Item("name")$row.Item("value");
    Please check below articles for more information:
    http://www.mssqltips.com/sqlservertip/1759/retrieve-a-list-of-sql-server-databases-and-their-properties-using-powershell/
    http://social.technet.microsoft.com/Forums/windowsserver/en-US/ff5ae2d3-0923-4240-a532-2d879d9528a6/using-powershell-to-get-data-from-sql-database?forum=winserverpowershell
    Hope it helps.
    Tracy Cai
    TechNet Community Support

  • How to get all items under a parent item in a tree control

    Hello,
    I have 2 questions regarding a tree control:
    1) Is there any way to specify a parent item tag and get an array of ALL its sub item tags? For example, in the attached vi, specify the Parent#2 parent tag and get an array containing Item#P21 and Item#P22
    2) Is there a way to specify a range to the ActiveCell property. For example, all items from line#1 to line number#3
    Any ideas?
    Attachments:
    Tree example.vi ‏6 KB

    Mentos wrote:
    1) Is there any way to specify a parent item tag and get an array of ALL its sub item tags? For example, in the attached vi, specify the Parent#2 parent tag and get an array containing Item#P21 and Item#P22
     Did you try a search? There's no direct way of doing this. You have to navigate the tree and build up an array. You can find an example here: http://forums.ni.com/t5/LabVIEW/get-all-children-o​f-a-parent-in-tree/td-p/729548
    2) Is there a way to specify a range to the ActiveCell property. For example, all items from line#1 to line number#3
    No. (It's called ActiveCell, not ActiveCells) Presumably you are trying to perform an operation on multiple items. Unfortunately, you need to use a loop. You should defer panel updates if you're doing this a lot.

  • Cannot secure delete items from trash: 180 items (pictures, files, folders) remain even if I check "remove all items"

    I cannot secure delete items from trash: 180 items (pictures, files, folders) remain even if I check "remove all items".  Macbook Pro, 10.6.8

    Maybe the items are locked.
    Mac OS X 10.6 Help: Shortcuts for working with items in the Finder
    Shortcuts for working with items in the Finder Command (⌘)-Shift-DeleteEmpty the Trash without any warning or when it contains locked filesCommand (⌘)-Shift-Option-Delete
    http://docs.info.apple.com/article.html?path=Mac/10.6/en/cdb_cpmvfky.html

  • PURCHASE ORDER STATUS :When Deleting ALL ITEMS.

    Hi experts,
    I need  to make purchase order status stay  " Release Compleated " when deleting all items.
    Anyone Know How to do it?
    Or anyone Know how to use BAPI_PO_CHANGE in BAdI : ME_PROCESS_PO_CUST 
    In my project , I use Release Strategy of purchase orders, and there is a case of deleting all items.
    In this situation, purchase order status returns to "Active " and release strategy tab disappears.
    This is our problem.
    I need to make purchase order status stay  " Release Compleated " and prevent  release strategy tab disappearing.
    I tried to update the fields EREKZ(final invoice) and ELIKZ(delivery completed) in
    BAdI : ME_PROCESS_PO_CUST  Method : PROCESS_ITEM using BAPI_PO_CHANGE according to SAP Note 456691.
    But BAPI_PO_CHANGE couldn't update EREKZ because of our customize , and I couldn't find how to use
    BAPI_PO_CHANGE in the BAdI.
    Anyone know solutions to solve this problem?
    Thanks a lot.
    Regards,
    TKD

    Hi,
    please review the following information in SAP Note No. 456691 as
    copied below:
    18. Question:
    When are the header conditions updated if a purchase order item is
    deleted?
    Answer:
    If a purchase order item is deleted, the item is marked as 'statistical'
    (field EKPO-STAPO = X) and the change is reflected in the header
    conditions.
    However, if for the item the final invoice indicator(EKPO-EREKZ) or the
    inward delivery completed indicator (EKPO-ELIKZ) is set, the item is not
    marked as 'statistical' (EKPO-STAPO is not set) and thus the header
    conditions are not updated.
    I hope this helps you
    BR
    Nadia Orlandi

  • Open,cleared,all items

    hi in SD related reports i was asked to create a new development based on fbl5n and the selection screen shud remain the same, in that way there are many options for status like,open item, cleared item,all items and type like ,normal,g/l ,noted,parked,vendor
    how do i code and validate for all these options whn i tried to debugg am not able to get thru their logic and all can anyone help me out in solving ths
    wat are fields tht i need to check for validating these options

    Hi,
    FBl5N is the Customer Line Items Display.
    OPEN ITEMS means the Billed/Invoice Amounts that are pending from Customers, i.e which we have to receive from Customers. BSID table will hold this data.
    For every Billing Documnet created(VBRK/VBRP-VBELN) there will be an accounting document created in BSID/BSAD tables.
    BSAD is the CLOSED ITEMS data means the AMOUNTS received from that customer.
    OPEN ITEMS data means fetching data from BSID table Only
    CLOSED ITEMS data means data fetching from BSAD only. All Items means from both the tables.
    If you need further clarification you are welcome.
    Regards,
    Anji

  • G/L A/C OUTSTANDING SHOWING CLEARED IN ALL ITEMS ON SAME DATE

    Dear Expert
    G/L A/C outstanding documents are showing cleared transactions in all items category
    using the same date in FBL1N.
    To illustrate in detail when we click on the radio button with
    open item with date 17.11.2009 i  m getting certain uncleared
    documents, now when I am using the radio button with all items with
    same date i m getting all those docs which were uncleared showing
    cleared.While in the database documents are showing in BSAK table only.
    What are the causes for the same .
    Thanks - Viral

    The items that you are questioning most likely were cleared after 17.11.2009.  When you run FBL1N for open items with key date 17.11.2009, SAP will show you all items that were open as of that date - even if the items have since been cleared.  When you run FBL1N for all items, their clearing status is displayed as of the current date.  For example, if an item was cleared on 18.11.2009, then it was open as of 17.11.2009, but is cleared as of today.
    Regards,
    Shannon

  • Dunning - Print all items

    Hi,
    I have set in SPRO for dunning:
    dunning level      print all items
    1                          
    2                           X
    3                           X
    4                           X
    When I run transaction F150, I have 1 item in level1 and 3 items in level2, no exist another open items.
    I use form created in smartforms (copy from F150_DUNN_SF)
    When I print form for level2, I have in form only 3 items. But they would have to be 4 items, I think when I check "Print all items".
    I tried it also F150_DUNN_SF - and some result.
    Kindly let me know why don't print 4 items?
    Regards, Jaroslav

    Hi ramanuje
    I don't understand your answer.
    I have form Z_F150_DUNN_SF (copy form F150_DUNN_SF). Have I check write in its?
    Where? In initialization? In initialization I have CALL FUNCTION 'GET_SF_DUNN_DATA' that return 3 items. After that follows:
    IF sy-subrc <> 0.
       SY-MSGID = 'FM'.
       SY-MSGTY = 'E'.
       SY-MSGNO = 461.
       raise others.
    ENDIF.
    h_t040a-text1 = space.
    show_interest = space.
    loop at th_mhnd into mhnd where xzins = ' '.
      show_interest = 'X'.
      exit.
    endloop.
    with regards, Jaroslav

  • How to delete all items in download folder under bookmark in the shortest time?

    I understand that all downloads from internet and yahoo/google mail are stored in the "Download" folder which I see under bookmark when I want to delete. I think that if the download folder is never emptied, then my mac will slow down. Therefore I want to delete these downloads which I have already seen. How do I delete ALL items in the shortest time? Deleting items, even in groups, takes a long time. Is there a method that I can use so that all items in the folder are deleted in one stroke?
    Thanks.
    Unguja

    Try (first button on toolbar) Organize > Select All (Command + A) to select all items in the right pane in the Library.

  • How to delete all items in the HUB ?

    How to delete all items on shot in the HUB ?

    Hi all,pay attention to the words I've marked in bold in the first answer from the technical support member:  "From the BlackBerry Hub, hold your finger on the date at the top of the list. A side menu will appear. Click on the Garbage Can to delete all messages prior to that date" At first, I also didn't understand how to make it works, but you have to slide until the date is at the top of displayed messages, then you can tap and hold to select all messages preceding that date. 

  • How can i restore all items from my iphone back to my itunes account?

    I recently had to restore all factory settings on my laptop due to a virus so have lost all apps, music, etc. on my itunes account. All items are still on my iphone and thought they would automatically return when syncing, sadly did not happen but have two options........... Apply? or Revert? one will move everythung back to itunes, the other will remove everything from my iphone. Any help would be greatly appreciated.

    PROBLEM SOLVED!!!!!         
                                        To anyone having the same problem right click on the iphone device and go to restore purchased items then follow instructions.

  • How to show all items in the reading list? I think this option has been removed in Safari Version 7.0.2

    How to show all items in the reading list? I think this option has been removed in Safari Version 7.0.2

    Thanks. That solved it. I had my doubts since I wasn't concerned about my lost bookmarks. I was concerned about the broken functionality. In any event, restoring from a backup solved both the functionality and the lost bookmarks. I appreciate the response!

Maybe you are looking for

  • How do i install itunes on ipad 2

    I have taken my new ipad 2 out of the box....no instructions...and that is as far as i have got...it is fully charged and i have the itune logo on front and that is it..i am completely lost

  • Security  erasure of sun hard disk drives

    hi there, first of all i am an absolute beginner when it comes to sun systems so i do apologise if this is the wrong type of forum for me, my problem is i have several sun ULTRASPARC 60 CREATOR 3D tower systems and i need to erased the hard drives se

  • My songs in the library keep freezing when playing, how do you solve this?

    I've recently updated my iTunes software and since doing this each time I play one of my songs in my library, It keeps freezing and stuttering inbetween each song. Is there a bug on the latest software? How do i fix this. Thank you.

  • Badi for passing shopping cart data to Bid at Create Rfx Button

    Hi experts, I have custom fields in shooping cart and Bid. I need to pass data from shopping Cart to Bid at the time of Bid creation using Create Rfx Button in Portal. Please let me know how to achieve it. Thanks & Regards, Sushant Singh

  • My Microphone just stopped working

    Yesterday my microphone was working, today I went to use it and the sound is very faint.  Is there a setting the I may have hit by mistake?