How to sort podcast search results in iTunes11?

After searching for podcasts I was able to sort them by video or audio. In iTunes11 I cannot find this option.
Is it gone?

Carolyn,
it was a typo: i'm on 10.6, on a MacPro.
i've actually found that it's actually, incredibly, impossible to sort spotlight results by size when in list view (it is possible when in icon view).
I find this nothing short than absurd, i would appreciate if Apple could explain me:
1- Why are they publicly talking about this wonderful new feature in their Snow Leopard pages, thus implcitily admitting that is something useful, and not making it useful where it would be used most: list view of the finder.
2- How am i supposed, for example, to find out between thousands of files which ones are, say, above 10MB, which is a typical task one would do when cleaning up space.
The answer is that i will simply have to use Houdaspot because the "most advanced operating system" does not let me know how big my files are.
Im really ****** off.
Vanni

Similar Messages

  • Sorting Ultra Search results

    I am in the process of researching Ultra Search and I am planning on building search functionality using the Ultra Search tag library. Part of the requirement of this search is that the search results need to be sorted alphabetically on a particular attribute. Is this possible with Ultra Search? If so, how can it be done? Or are the results always returned sorted based on the relevance score?
    Any help would be appreciated.
    PB

    Hi,
    please check the following.
    http://www.sharepointconfig.com/2013/05/how-to-create-a-simple-sharepoint-2013-people-directory/
    http://social.technet.microsoft.com/Forums/sharepoint/en-US/3159b9e1-546b-4204-aefe-20aa1b54bee9/sorting-people-search-results?forum=sharepointsearch
    Hope it helps
    Please remember to click 'Mark as Answer' on the answer if it helps you

  • How to modify  the search results of the GUI for subscribing to calendars

    How to modify the search results of the GUI for subscribing to calendars
    Note:
    <OL>
    <LI>The following information applies only to iPlanet Calendar Server 5.0
    Patch 3.
    <LI>All of the cases for which the XSLT changes will work have not been
    verified.
    <LI>The following is only an example of an XSLT customization.
    </OL>
    The example below shows a sample customization of the
    search_for_calendars
    dialog. This customization will result in the Display Name being included as
    part of the search results in the GUI, which would normally show just the
    calendar ID. It will render the returned calendars in the following format:
    <P>
    Display Name - <I>description</I>
    <P>
    Normally, the format would be as follows:
    <P>
    Calendar-ID - <I>description</I>
    <P>
    </A>
    The example consists of the following two files:
    <P>
    <OL>
    <LI>search_for_calendars_common.xsl
    (the entire XSLT file)
    <P>
    <LI>diffctx.txt
    (the context sensitive diff patch file,
    which basically shows only the changes that need to be made)
    </OL>
    <P>
    <HR>
    </A><B>
    search_for_calendars_common.xsl</B>
    <?xml version="1.0" ?>
    <!DOCTYPE xsl:stylesheet (View Source for full doctype...)>
    - <!--
    set the output properties
    <xsl:stylesheet
    xmlns:xsl="http://www.w3.org/XSL/Transform/1.0"
    result-ns="http://www.w3.org/TR/REC-html40">
    -->
    - <xsl:stylesheet xmlns:xsl="http://www.w3.org/XSL/Transform/1.0">
    - <!-- set the output properties
    -->
    <xsl:output method="html" encoding="ISO-8859-1" />
    <xsl:include href="data/common.xsl" />
    <xsl:include href="data/i18n.xsl" />
    <xsl:include href="data/date_format.xsl" />
    <xsl:include href="data/dialog_tabs.xsl" />
    - <xsl:template match="/">
    <xsl:apply-templates select="calendar" />
    </xsl:template>
    - <xsl:template match="calendar">
    - <xsl:choose>
    - <xsl:when test="@top='true'">
    - <xsl:variable name="Frame1">
    <xsl:value-of select="frame[1]" />
    </xsl:variable>
    - <xsl:variable name="Frame2">
    <xsl:value-of select="frame[2]" />
    </xsl:variable>
    - <xsl:variable name="Frame3">
    <xsl:value-of select="frame[3]" />
    </xsl:variable>
    - <xsl:variable name="tab_value">
    <xsl:value-of select="@tab" />
    </xsl:variable>
    - <HTML>
    - <HEAD>
    <xsl:call-template name="contextJavascript" />
    <TITLE>Calendars Search: Calendar Express - iPlanet</TITLE>
    </HEAD>
    - <FRAMESET border="0" frameborder="0" rows="77,*,71">
    <FRAME name="tab" marginheight="0" marginwidth="0" scrolling="no"
    scrollbars="no" src="{$Frame1}" />
    <FRAME name="main" frameborder="0" src="{$Frame2}" />
    <FRAME name="button" marginheight="0" marginwidth="0" scrolling="no"
    scrollbars="no" frameborder="0" src="{$Frame3}" />
    </FRAMESET>
    </HTML>
    </xsl:when>
    - <xsl:when test="@view='searchProperties'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='searchProperties'">
    <xsl:call-template name="search_toolbar" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:when test="@view='main'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='main'">
    <xsl:call-template name="main" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:when test="@view='button'">
    - <xsl:for-each select="group">
    - <xsl:if test="@name='button'">
    <xsl:call-template name="button_root" />
    </xsl:if>
    </xsl:for-each>
    </xsl:when>
    - <xsl:otherwise>
    - <html>
    What's this view? (search_for_cals.xsl) -
    <xsl:value-of select="@view" />
    </html>
    </xsl:otherwise>
    </xsl:choose>
    </xsl:template>
    - <xsl:template name="search_toolbar">
    - <HTML>
    <xsl:call-template name="emit_frame_head_tag" />
    - <BODY bgcolor="{$bgcolor_background}" background="imx/tdbg.gif"
    marginwidth="0" marginheight="0" onload="window.focus()">
    - <FORM>
    - <xsl:attribute name="action">
    <xsl:value-of select="./formdata@action" />
    </xsl:attribute>
    <xsl:attribute name="name">form</xsl:attribute>
    <xsl:attribute name="onSubmit">document.forms[0]['find'].click(); return false;
    </xsl:attribute>
    <xsl:apply-templates select="formdata" />
    - <CENTER>
    - <TABLE border="0" cellpadding="2" cellspacing="0" width="100%" height="100%">
    - <TR>
    - <TD align="center">
    - <TABLE border="0" cellpadding="3" cellspacing="1">
    - <TR>
    - <TD colspan="4">
    <FONT size="{$font_size_big_2}" face="{$font_name}">Find all calendars where
    the calendar</FONT>
    </TD>
    </TR>
    - <TR>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <SELECT name="which">
    <OPTION value="name;calid">name or ID</OPTION>
    <OPTION value="name">name</OPTION>
    <OPTION value="primaryOwner">primary owner</OPTION>
    <OPTION value="calid">ID</OPTION>
    </SELECT>
    </FONT>
    </TD>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <SELECT name="how">
    <OPTION value="0">contains</OPTION>
    <OPTION value="1">begins with</OPTION>
    </SELECT>
    </FONT>
    </TD>
    - <TD valign="baseline">
    <INPUT type="text" name="what" />
    </TD>
    - <TD valign="baseline">
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <INPUT type="button" name="find" value="Find">
    - <xsl:attribute name="onClick">
    <xsl:value-of select="./button[@name='find']" />
    </xsl:attribute>
    </INPUT>
    </FONT>
    </TD>
    </TR>
    </TABLE>
    </TD>
    </TR>
    </TABLE>
    </CENTER>
    </FORM>
    </BODY>
    </HTML>
    </xsl:template>
    - <xsl:template name="main">
    - <HTML>
    <xsl:call-template name="emit_frame_head_tag" />
    - <BODY bgcolor="{$bgcolor_background}" background="imx/tdbg.gif"
    marginwidth="0" marginheight="0">
    - <FORM name="form" method="post">
    - <xsl:attribute name="action">
    <xsl:value-of select="./formdata@action" />
    </xsl:attribute>
    <xsl:attribute name="name">form</xsl:attribute>
    <xsl:apply-templates select="formdata" />
    <INPUT type="hidden" name="how" value="0" />
    <INPUT type="hidden" name="which" value="name;calid" />
    <INPUT type="hidden" name="what" value=" />
    <INPUT type="hidden" name="selectedGroup" />
    - <xsl:if test="(./calsearchresults/nomatch)">
    - <!-- print no match found
    -->
    &#38;nbsp;
    &#38;nbsp;
    No Match Found
    </xsl:if>
    - <xsl:for-each select="./calsearchresults/searchresultcal">
    - <P>
    &#38;nbsp;
    &#38;nbsp;
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <FONT size="{$font_size_big}" face="{$font_name}">
    Owner:
    <xsl:value-of select="@owner" />
    <FONT size="{$font_size_big}" face="{$font_name}" color="{$bgcolor_wend_mid}">|
    </FONT>
    Calendar ID:
    <xsl:value-of select="@id" />
    <BR />
    </FONT>
    - <FONT size="{$font_size_big_2}" face="{$font_name}">
    - <xsl:choose>
    - <xsl:when test="@subscribed='false'">
    &#38;nbsp;
    &#38;nbsp;
    - <INPUT type="checkbox" name="calendar">
    - <xsl:attribute name="value">
    <xsl:value-of select="@name" />
    </xsl:attribute>
    </INPUT>
    &#38;nbsp;
    &#38;nbsp;
    - <A target="_blank">
    - <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand" />
    </xsl:attribute>
    <xsl:value-of select="@name" />
    </A>
    </xsl:when>
    - <xsl:otherwise>
    &#38;nbsp;
    &#38;nbsp;
    - <A target="_blank">
    - <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand" />
    </xsl:attribute>
    <xsl:value-of select="@name" />
    </A>
    &#38;nbsp;
    (Subscribed)
    </xsl:otherwise>
    </xsl:choose>
    - <xsl:if test="string-length(@description) > 0">
    &#38;nbsp;
    &#38;nbsp;
    - <FONT size="{$font_size_big}" face="{$font_name}">
    <xsl:value-of select="@description" />
    </FONT>
    </xsl:if>
    </FONT>
    </FONT>
    </P>
    </xsl:for-each>
    </FORM>
    </BODY>
    </HTML>
    </xsl:template>
    </xsl:stylesheet>
    <P>
    <A HREF="#back">Back</A>
    <P>
    <HR>
    </A>
    <B>diffctx.txt</B>
    Index: search_for_calendars_common.xsl
    ===================================================================
    RCS file: /m/src/ns/server/msg/calendar/core/html/search_for_calendars_common.xsl,v
    retrieving revision 1.1.2.14
    diff -c -r1.1.2.14 search_for_calendars_common.xsl
    *** search_for_calendars_common.xsl 2000/12/12 23:10:43 1.1.2.14
    --- search_for_calendars_common.xsl 2001/03/15 23:55:19
    *** 182,188 ****
    &#38;nbsp; &#38;nbsp;
    <INPUT type="checkbox" name="calendar">
    <xsl:attribute name="value">
    ! <xsl:value-of select="@id"/>
    </xsl:attribute>
    </INPUT>
    &#38;nbsp; &#38;nbsp;
    --- 182,188 ----
    &#38;nbsp; &#38;nbsp;
    <INPUT type="checkbox" name="calendar">
    <xsl:attribute name="value">
    ! <xsl:value-of select="@name"/>
    </xsl:attribute>
    </INPUT>
    &#38;nbsp; &#38;nbsp;
    *** 190,196 ****
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@id"/>
    </A>
    </xsl:when>
    <xsl:otherwise>
    --- 190,196 ----
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@name"/>
    </A>
    </xsl:when>
    <xsl:otherwise>
    *** 199,205 ****
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@id"/>
    </A>
    &#38;nbsp;(Subscribed)
    </xsl:otherwise>
    --- 199,205 ----
    <xsl:attribute name="href">
    <xsl:value-of select="@viewCommand"/>
    </xsl:attribute>
    ! <xsl:value-of select="@name"/>
    </A>
    &#38;nbsp;(Subscribed)
    </xsl:otherwise>
    <P>
    <A HREF="#back">Back</A>

    Maybe on the Google API s page?

  • How to customize the search results window

    hi,
    in my search results page, i need to add a link/button for every document searched. on click of this link/ button i need to capture the document/file url and  insert it into  a splist.
    is it possible to customize  the search results window? 
    below is the snapshot: i need to add the link/button Add link to DB on each and every document retrieved by the crawler.
     help is highly appreciated ! 

    hi
    thnx for the reply. i am using the default search box in my sub site. and i am able to get the search results with the  help of default search  results.
    but i dont know how to replace this search results web part with a  content search web part, such that i can insert html link or button  or jquery.
    Can you pls  elaborate , how can i replace the existing search results web part with the content search WP such that ,  the other display detals - document link, description, etc are intact-.

  • Sorting the Search Result of IndexBased Search Result

    Hi ,
    I am using Index based search to get the result from the Index. I am trying to get the search result with sorting order of modified date.
    I found there is an API to get but I could able to understand How to use that API.
    If any body knows please let me know the solution
    Thanks
    Tatayya M

    No info

  • How do you filter search results?

    Hi,
    We have a search button on our website that does a sitewide search, and I was wondering how you get about making it so that the search results display in date order (most recent items first). At the moment it seems to display things at random, with items as old as 2005 being listed first. Can anyone help please?
    Many thanks,
    Tracey

    I'll share my newly found work around.
    I use this.  I put a huge number in the resultsPerPage argument and then process the results with a JS sorting plugin like this: http://datatables.net/index
    {module_searchresults,_blank,100000}
    That plugin it particular is better than the built in functionality as it has better pagination and can sort columns if you display it in a table.
    I have to warn you, this is not something someone can do with out good working knowledge of HTML & JS/Jquery.

  • How to display the search result without reloading the whole page

    HI,
    I have separate fragments for Search Box to enter keyword and Search Result to display the result. Also I have different sections within the page to put these fragments. So how could I display the results without reloading the whole page.
    Also if I have next button in my search result area, how could I display the search results in next page without reloading all other sections present in our page. Please let me know if any service or idoc function present such that result could be shown in search result section without reloading whole page.
    Please let me know how to restrict page reload for every action within a page.
    Thanks,
    Ramesh
    Edited by: Ramesh_Est on May 27, 2010 3:14 AM
    Edited by: Ramesh_Est on May 27, 2010 8:39 PM

    This is default behaviour of the template of your space. You can create a new page template and than you can create a region for the search results.
    Or you can create a custom taskflow were you use the webcenter taskflows to search for the space.
    Take a look at this white paper:
    Extending webcenter spaces: http://www.oracle.com/technology/products/webcenter/pdf/owcs_r11_extend_spaces_wp.pdf
    and this one:
    Customizing site templates: http://www.oracle.com/technology/products/webcenter/pdf/owcs_ps1_site_template_wp.pdf
    Edited by: Yannick.O on 13-Apr-2010 02:32

  • Sorting people search results

    Hi
    We tried to sort the PeopleSearch Results by LastName and then by FirstName using the Query Designer.
    In the preview everything works fine, buth when we save the web part settings and do a seearch on the people results page, the results are not sorted as excpected.
    Query Sorting, (sorting as expected in preview)
    People results page using the settings above:
    Not properly sorted
    Does anybody have an idea?
    Thanks,
    Stephan

    Wow! I was able to reproduce your problem. There seems to be no way to get the sorting to work correctly in the search results. I have been able to sort the results correctly using either a) Content by Search part or b) an App issuing a query through
    the API.
    I think you are going to have to replace the OOB people search page with a custom solution based on either the Content by Search part or an app.
    I have an Employee Directory app available on my CodePlex project here.
    http://apps.codeplex.com/releases/view/91377
    Scot
    Author,
    Microsoft SharePoint 2013 App Development
    Author,
    Professional Business Connectivity Services
    Author,
    Inside SharePoint 2013
    Blog, www.shillier.com
    Twitter, @ScotHillier
    SharePoint Trainer, Critical Path Training

  • How To Eliminate Separate Search Results Window in iTunes 11

    From my perspective (based upon how I use iTunes to create playlistsby searching for titles, listening, and selecting), the new format in iTunes 11 of showing search results in a separate window was totally unworkable. Fortunately, I found a CNET article that said how to revert to the old method.  To disable the new format, and have search results show up in the body of your music library, all you need to do is this:
    Click on the magnifying glass in the Search box in the uppper right corner of the iTunes screen
    The first item in there is "Search Entire Library", and has a check mark next to it
    Click on it to remove the check mark
    That's it!  Now your Search results will show up in the library itself, as it always has. 
    Until I found this quick fix, I was ready to trash the new iTunes and replace it

    I found this article with the explanation on how to find this again.  In the upper right corner of itunes (only when an item is downloading) you will see a downward facing arrow inside a gray circle with a blue status bar type line below it.  If you click that it will show you your downloads progress.
    Link: http://www.cultofmac.com/204589/find-the-download-manager-again-in-itunes-11-os- x-tips/

  • Podcast Search results not showing all episodes

    I'm new to podcasting & our podcast isn't showing up properly.
    When you look at our podcast in the search results, only one episode shows up.
    There are three episodes total, but they show up only if you subscribe to the podcast.
    Is there a way for the search results to show all of our episodes?
    Our iTunes link is http://itunes.apple.com/us/podcast/the-hills-fellowship/id448179201
    Our RSS feed is http://sermon.net/rss/client/thehillsfellowship
    Please help if you can!
    Also, they were uploaded last week...so it's been enough time for them to be processed & show up.

    I'm afraid I can't give you a comforting answer.
    The feed at the URL you quote contains the tag
    <itunes:new-feed-url>http://sermon.net/rss/thehillsfellowship/main</itunes:new-feed-url>
    so the feed iTunes is now using is
    http://sermon.net/rss/thehillsfellowship/main
    and that is the one you should be updating - though in fact they are almost identical and it's possible that the method you are using updates them both.
    The feed at http://sermon.net/rss/thehillsfellowship/main is valid and I can't see anything wrong with it. As you say, it can be subscribed to and shows all three episodes: but the Store page (and thus the search results) show only the first episode.
    The Store should have updated by now: it's not unknown for the Store to get stuck and fail to update for several weeks: usually it eventually updates and I have no idea why it does this. It doesn't happen often, but I have seen the occasional complaint.
    However there is another issue which may be relevant: although the date of the latest episode is July 17th, the feed was updated today:
    <lastBuildDate>Mon, 15 Aug 2011 16:11:23 GMT</lastBuildDate>
    <pubDate>Mon, 15 Aug 2011 16:11:23 GMT</pubDate>
    This raises the possibility that there was something wrong with the feed before (hence the failure to update) but that whatever you've done today cleared it. That would indeed result in the three episodes showing on subscribing but not in the Store - it would take a couple of days or so to catch up.
    If that is the case the Store should update in a day or two. If not, then it might update at some future date or it might not: I can't explain that.
    I should at least give it two or three days and see what happens. Check the Store page using the link you gave, not the Search results as these often lag behind.
    If you don't get a result after several days you could try iTunes Support, but I have to tell you that they don't have a good record for helpfulness and the chances are you won't get anywhere with them.  Go to http://www.apple.com/support/itunes/ - click on 'Other iTunes Store Features' in the list and then on 'Podcasts'. You will see a link to either 'Express Lane', which will guide you eventually to some contact options, or you may see a link to email them.

  • Why are the podcast search results not showing in iTunes?

    I've been trying to search for some podcasts, and my results don't show up in iTunes. I've tried on my Mountain Lion MBP, and on my Windows 8 Laptop. Same effect happens. Is there something going on with search results in iTunes?

    I've been trying to search for some podcasts, and my results don't show up in iTunes. I've tried on my Mountain Lion MBP, and on my Windows 8 Laptop. Same effect happens. Is there something going on with search results in iTunes?

  • T/X model SORTing Find/Search results from Most Current Entry

    Have the Palm T/X model, and use the FIND/search function constantly.
    The results always come up from the earliest (oldest) entry to the most current.
    This is a major league pain-in-the-butt especially when there are tons of entries to go thru to get to the most current date.
    Is there any way to sort the FIND results so that they show from most Recent entry to the oldest.
    This would be a HUGE Help.
    Thx!
    Post relates to: Palm TX

    There is a pulsing, reddish dot in the middle of the
    blue light but on the hard drive itself, I don't see
    any "lights" in any "menu bar".
    It's at blue circle with a white Q-shaped symbol at the right end of your menu bar.
    If you dare to use the terminal application (can be found in the utilities folder) you can use the following command to re-index that drive. Start Terminal and type (or paste) the following line and hit enter:
    sudo mdutil -E "/Volumes/xxx/"
    Replace "xxx" with the name of Your drive! If there is a space in that name type it like "/Volumes/My\ Drive/"! You will be prompted for Your admin password to proceed.

  • When searching a PDF, how do I get search results to  appear as yellow highlights rather than a blue box?

    I am using Adobe Reader 11. I am having a problem with searching PDF documents. In the past the search results were highlighted in yellow. Now I occasionally get a large blue box on the left side of the document that covers several lines and it is very difficult to find the word being searched. I am told that this is caused by the program that created the PDF and there is nothing I can do to change process so that all of the search results are shown in yellow highlights. Any suggestions for how to change the search options so that the results are shown in yellow highlights?

    As far as I remember that's how Reader always worked, and it's not related to the way the PDF file was created.
    Are you sure you were using Reader before?

  • How can I play search results on iPhone 5?

    Let's say I want to listen to all my songs called "Summertime" with the iPod app of my iPhone.  I go to "Songs" and search for "summertime".  I get a list of results.  But if I tap to play, it only plays one song.  I want to play the whole search results.
    (Tapping "next" will only jump to the next song  in the global index, or on the same album -- not in the search results).
    Note that iTunes does this just fine: you can filter and play.
    I don't want to create a playlist each time I am searching for a few songs.
    Thanks for any suggestion!

    Are you asking how to stop the preview from showing on the screen? Settings>Notifications>Messages

  • How to customise OID search results page

    How do you customise the user search results page in OID 902?
    The default is for the username and email address to display. I wish the first and last names also to display.
    Regards,
    John

    I am also looking to customize the people portlet. I have raised a TAR with Oracle. If I get a repsonse I will post it here.

Maybe you are looking for

  • Problem with WorkFlow of Purchase Orders related to non active employees

    Dear all, We are running into issues with the WorkFlow when people are linked to a PO who are not anymore an active employee. That will give problems in the workflow as those people are logically not going to goods receipt/invoice reciept/approve tho

  • Adobe Media Encoder CS4 problem

    I having a ***** at Adobe I do have a lienced copoy  CS4 Design Premium. I down loaded premier  pro CS4 to demo it about 8 months ago and had not used it up to about 1 weeks ago. All that time Adobe Media Encoder CS4 did not work. I came back to the

  • Column / Row Spanning in UIX table

    Hi There, Anybody know how to achieve column/row spanning when using the uix databound table? For example, i would like a table which looked similar to the following:      | Cell1  | Cell2 | Cell3 |      | A spanned cell         |      --------------

  • Java.lang.OutOfMemoryError and PermGen errors

    We are getting outOfMemoryErrors and cannot find the cause. Does anybody know how to solve this? Every day we get OutOfMemory and PermGen errors, and nobody seems to be able to solve them. This is from our logs: <2008-11-18 13:45:04,627> <ERROR> <crp

  • Message "Error 4 when starting extraction program" with any extraction.

    Hi to everyone. We have a problem in a pre-existing BW system of development. When we start any extraction (for example 0MATERIAL_ATTR), the monitor give us the following error: ERROR 4 WHEN STARTING THE EXTRACTION PROGRAM (R3-19). I've checked the l