Show columns for song "Type" and "Size" in v8 list view?

I often sort songs and audio files by either type (mp3 / aif / AAC), or size (how many MB.)
I can't find how to reveal these columns in v8 -- in 7 i would use command-J to reveal the "view options" dialog, then simply check the boxes to display "type" and "size"
The new View Options dialog only has a few options for columns.
Where did they go?
Thanks.

Try right clicking at the top of any column and choosing from the list that appears. If you what to display the file format/type (MP3, AAV etc.)choose "Kind".

Similar Messages

  • TYPE and SIZE, 2 more columns to the variable in the Command behavior?

    DW 8.02 added 2 more columns to the variable in the Command
    behavior, TYPE and SIZE. What do you put in here?
    What is the difference for Access text, Date/Time, number and
    Memo columns.
    The Dreamweaver DOCS don't cover this update and you can't OK
    the COMMAND without these two columns

    This will be of some help:
    http://www.w3schools.com/ado/ado_datatypes.asp
    You should be able to gather the column size from the
    database's table
    definition. Typically, columns that hold text are one byte
    per character
    (two for Unicode), whereas integers are 4 bytes. Other
    numeric types and
    date types vary among database systems.
    "lovewebdev" <[email protected]> wrote in
    message
    news:ec0it5$h20$[email protected]..
    > DW 8.02 added 2 more columns to the variable in the
    Command behavior, TYPE
    > and
    > SIZE. What do you put in here?
    > What is the difference for Access text, Date/Time,
    number and Memo
    > columns.
    >
    > The Dreamweaver DOCS don't cover this update and you
    can't OK the COMMAND
    > without these two columns
    >

  • Set default font type and size in formcreated using Acrobat X Pro

    I have a word document that I used Acrobat X Pro to create a PDF and then a Form.  The Form has over 200 text fields.  Is there a way to globally set the font type and size to one type, for instance Arial 10 so that when someone opens the Form and fills it in, the global font type and size is preset         

    Are you talking about fields that you create manually or field created with the Form Wizard? Exactly what version of Acrobat are you using? What OS?
    In any case, using a script is a quick and easy approach:
    for (var i = 0; i < numFields; i++) {
        var fName = getNthFieldName(i);
        var f = getField(fName);
        if (f.type === "text") {
            f.textFont = font.Times;
            f.textSize = 9;
            // Other properties go here
    I use this type of thing all the time to quickly alter a form. Such a script isn't added anywhere, just executed (e.g., JavaScript console). Over time a developer can build up a collection of utility scripts that can do all sorts of things to dramatically speed up development. It would be bad if this option were not available.
    If there is a bug, it should certainly be addressed, so don't think I'm arguing against that, but I'm not seeing it on any of my systems. I can successfully set the default field properties by selecting "Use Current Properties as New Defaults". The Form Wizard does not use these defaults, but that's a different matter.

  • Portlet image type and size

    Hi
    Are there any particular iamge types and size required for portlet banner, header,
    footer, etc...?
    Thanks a lots

    No. It all depends on what type of images your browser can render and
    the real-estate you have on the browser.
    Subbu
    david wrote:
    Hi
    Are there any particular iamge types and size required for portlet banner, header,
    footer, etc...?
    Thanks a lots

  • Webdynpro to limit MIME types and size

    Hi,
    I need to write an web dynpro application to limite the file type and size using IWDFileUpload API, does anyone has some suggestion ?
    Thanks a lot.
    Kind regards
    Ben.J.

    Hi Ben,
    I think you can restrict the file type and and also check the file size before uploading the file. You need to write the logic to check out the file type.
    Use the following code to check restrict the file upload of only txt file...
              IPrivateTestView.ITestElement pf =
                   wdContext.nodeTest().currentTestElement();
              IWDMessageManager mgr = wdComponentAPI.getMessageManager();
              if (pf.getFileResource().getResourceType().getFileExtension() != null
                   && pf
                        .getPatchResource()
                        .getResourceType()
                        .getFileExtension()
                        .equalsIgnoreCase(
                        "txt")) {
    // Check if file size is in valid range.. call getFileSize()
    mgr.reportSuccess("File can be uploaded");
              } else {
                   mgr.reportException("Kindly upload ont TXT files", false);
    And use following code for calculating File Size:
         private String getFileSize(IWDResource resource) {
              InputStream stream = null;
              DecimalFormat myFormatter = new DecimalFormat("###.##");
              double size = 0;
              String unit = "";
              try {
                   stream = resource.read(false);
                   size = stream.available();
                   if (size < 1024) {
                        unit = " Bytes";
                   } else if (size < 1048576) {
                        size = size / 1024;
                        unit = " KB";
                   } else if (size < 1073741824) {
                        size = size / 1024 / 1024;
                        unit = " MB";
              } catch (IOException e) {
                   wdComponentAPI.getMessageManager().reportException(
                        e.getLocalizedMessage(),
                        true);
              } finally {
                   if (stream != null) {
                        try {
                             stream.close();
                        } catch (IOException e) {
                             wdComponentAPI.getMessageManager().reportException(
                                  e.getLocalizedMessage(),
                                  true);
              return myFormatter.format(size) + unit;
              //@@end
    This way you can restrict the users. As far as I know there is no standard way of restricting the same
    Hope it helps
    Regards
    Abhinav

  • Add font types and sizes to ICWC HTML e-mail editor

    Hi,
    I'm working with ICWC e-mail component and I'm wonder to know how can I add more font types and sizes to HTML e-mail editor. At the moment i just have 5 font types and a few font sizes.
    Thanks a lot in advance,
    Nuno Moreira

    Hello Nuno,
    Just try this:
    First you have to upload your .ttf font by using se73 transaction.
    Then you must map it, using this tables:
    SAP: TBTFFONTMAPDEF
    Customer: TBTFFONTMAP
    Just add a line in customer table TBTFFONTMAP with your font (or existing one), and the language that will be used by the users (It accepts wildcard * for all languages)
    And it's done.
    Best Regards,
    Bruno

  • Modifying Java font type and size

    Hi! I'm not sure if this is the right forum for this but I might as well try. I play a lot of Yahoo Chess which uses a java software to launch its program. I'm a new Macbook user and before when I was in Windows/PC, the font type and size setting was okay. Now I barely can read the font whenever I launch Yahoo Chess (using Java) in my Macbook.
    Any help would be appreciated. Thanks!
    Macbook Core 2 Duo with 2 GB Ram   Mac OS X (10.4.9)  

    Hi,
    Which font and font size did you use in your applet? Do you have sample code that could demonstrate the problem? This may have to do with the difference in font aliasing between MS VM and Sun JVM.
    Stanley Ho
    Java Deployment Tech Lead
    Sun Microsystems

  • F-53 and F-28, Customized columns for cash discount and %

    Hi Expert,
    With reference to the subject of: Customized columns for cash discount and % ...
    I faced the problem of not able to set / defined hidden column for cash discount and % by creating a new variant.
    Steps:
    Create a variant
    Click <administrator> button ... mark the columns hidden, and click <activate> button
    Then click <Save> button
    Problem: Every time I using the F-53/F-28, the layout is not working, and when goto check the variant settings, the cash discount and % columns remained unchecked.
    SAP version: 4.6
    Kindly advise.
    Thanks and regards,
    sbmel

    Hi JP,
    It is not working using field status group, as I am using F-53 and F-28 and not FB50/60/70.
    The purpose I want to create variant for screen after clicking <process open item> is to control column display (hide cash discount and %).  if the variant is working, I can create a customized Tcode for the F-53 and F-28.
    Now problem is that variant seem not working.
    Thanks and regards,
    sbmel

  • How come Mac OS X's Software Update doesn't show a total time ETA and size?

    Hello.
    I noticed when downloading big updates from Mac OS X 10.5's Software Update, it doesn't show the TOTAL time left and size. It only shows the individual updates (e.g., iTunes). Is there a way to show the totals especially when downloading takes forever?
    Thank you in advance.

    Kappy wrote:
    Well not in Software Update, but if you download standalone updates directly from Apple's download site - support.apple.com/downloads/ - using Safari then you will get that information reported in the browser's download manager. However, Software Update does report the size of each listed update.
    Yeah, I wanted to know the total of all updates since some updates are so huge. Like Java update 5 is like over 160 MB! Add iTunes and others! Yikes.

  • No archive information found for object type  and document type

    Hi All,
    When i try to view the print preview for a perticular doc type, system is giving the error as "No archive information found for object type  and document type"
    Diagnosis
        No information was found about optical archiving. This may be due to
        either of the following reasons:
        1.  No valid archiving parameters were passed
        2.  Your system is not configured for optical archiving
    System Response
        Processing is cancelled.
    Procedure
        Specify valid archiving parameters or check whether your system is configured for optical archiving
    Regds,
    CB

    Hello,
    You are trying to Print & also archive by selecting the option Print & Archive.
    You have to do archivelink configurations and then create document type and assign to the object type with content repository with archivelink table.
    If you want to archive the spool or output then you have to use object type as DRAW. If you are archiving invoice document or letters or so on then you have to know the object type/Business object of the transaction.
    Please note that for archivelink configuration, attachment will be either stored in archive server or in SAP database table based on business requirement.
    Hope this will give you some understanding on archiving area.
    -Thanks,
    Ajay

  • Saving multiple file types and sizes

    I design logos using Illustrator. After the design is approved I need to save it in multiple different file types and sizes. (ie. Jpg Hi, Med, Lo; tif; eps; pdf)
    Does anyone know of a script that can do this?
    Thanks,
    Mark

    I don't know of an existing script that does exactly this. You could make one though. Saving an Illustrator document to both 'eps' and 'pdf' formats is very straight forward once you know which options you want. Personally I would use Photoshop to create the required 'jpegs' Illustrator does not export to any given resolution only scaling at 72dpi… Open either the 'eps' or 'pdf' in Photoshop resize and save 3 times.

  • I rented the movie "Green Hornet". It was downloaded but when i try to play it black screen shows up for some time and then I'm the home screen.

    I rented the movie "Green Hornet". It was downloaded but when i try to play it black screen shows up for some time and then I'm the home screen.

    Hi runner_girl7585,
    Thanks for using Apple Support Communities.  If you weren't ever able to watch your rental movie, you can report this to the iTunes Store:
    How to report an issue with your iTunes Store, App Store, Mac App Store, or iBookstore purchase
    http://support.apple.com/kb/ht1933
    Cheers,
    - Ari

  • I paid for songs that are missing from my list where are they?

    i paid for songs that are missing from my list where are they?

    Correct.
    Audiobooks have never been available for redownlaod and have never been listed among the content that can be redownloaded.
    As always, it is your responsibility to back up your content.

  • Linking column for sales,delivery  and invoices

    I just have a question regarding database schema in SAP B1.
    I would like to know   how SAP b1 links
    Sales Delivery and invoices
    In other words
    i want to know all invoices based on Sales and delivery
    all invoices based on  just delivery etc
    What is the linking field or column between these three tables
    rdr1, dln1,inv1
    How does Sap keep track of whether a invoice is based on sales or delivery or
    both.? I appreciate your help.
    Thanks,
    Josh

    Hi Joshua,
    What you need to look at are the BaseEntry, BaseType and BaseLine fields in the item row (ie INV1 or DLN1). It works as follows:
    BaseType = The originating document type where 17 is a sales order and 15 a delivery
    BaseEntry = The DocEntry of the originating document
    BaseLine = The LineNum of the originating document
    A simple example is as follows:
    1) I create an order (DocEntry 10) with 2 rows (LineNum 0 and 1)
    2) I create a delivery (DocEntry 5) based on this order with both rows. In the DLN1 table my rows will have BaseEntry 10, BaseType 17 and BaseLine 0 and 1.
    3) I create an invoice for the second row from the delivery. In the INV1 table I will see BaseEntry 5, BaseType 15 and BaseLine 1.
    You also have TargetType and TargetEntry which show the target document details but these are not that useful as they only show the last target number and type and cannot be used where you have multiple target documents.
    Kind Regards,
    Owen

  • Ringtone not showing up for songs I bought on iTunes

    Ok, so I get that I can only create ringtones for songs bought through the iTunes store. Most of my songs are non-iTunes, but there are some that I had previously bought and want to turn into ringtones. However, after I turned the ringtone view option on, the icon only showed up for 9 out of the (according to my account purchase history) 50 songs I bought on iTunes. Has this happened to anyone else? What gives?

    Please read through the forum before posting --
    But all songs are NOT available for ringtone use - only those whose recording representatives chose to enable as ringtones. It's not up to apple, it's up to the label and their artists.

Maybe you are looking for

  • Determine the Number of Characters in a field

    Hello All, I have a program where a character field of length 200 becomes populated with Purchase Order Text.  Is it possible through a function module or another option to determine the length of the field when populated?  For instance, if only 125

  • Report serial number printed and serial number detected do not match

    The serial number provided by the Printer Status Report and the serial number provided by the "Auto Scan and Find" feature off the web site do not match where the scan detected one removed the last 4 characters. Is this known to the firmware folks th

  • Help me in writing this query  plz....

    There are two tables - Table1 (table1_id, value1) and Table2 (table2_id, table1_id, value2). The field Table2.table1_id is a foreign key to Table1.table1_id. It is necessary to write a SQL query that would find all records in Table1 that do not have

  • Can i restore save game information once app is deleted from iPhone?

    Hi. I have a lot of games that i no longer play and want to remove from my iPhone to free up space. However i don't want to lose the game save data (i may want to play them again in the future). If i delete these apps from my iPhone, and then add the

  • Excise Invoice J1iin

    Hi All, when i am trying to run J1iin then even after maintaining the subtransaction type in basc setting in tax on goods movement it is replying that subtransaction type missing.kindly help. sameer