How can I see more info in podcast listings?

Hi all,
So when I'm looking at listings of podcasts (or other things), you see one line of text and then an ellipsis (. . .). How can I expand that listing to see the rest of the text? I've tried swiping and zooming and clicking and double-clicking, but nothing will expand that box. I'm sure there's a way.
Know what I mean?
Thanks for your help.

Mostly, this is true for iTunes U. You look at a screen (on my iPod Touch 4G), it has 10-12 listings of lectures and they say -- in their entirety -- "Intro to . . ." As far as I can tell, there is no way to expand this text and see more. If you click or double-click, you go right to the QuickTime audio.
Any ideas?

Similar Messages

  • Interactive forms- i see only one record -how can i see more?

    Hi experts,
    i have a table and the result is only one record instead of more records.
    how can i see more records?
    my code is:
    types: begin of structure_0021,
    favor type pa0021-favor,
    yy_id type pa0021-yy_id,
    fgbdt type pa0021-fgbdt,
    end of structure_0021.
    data: it_0021 type table of struct_0021,
             wa_0021 like line of it_0021.
    select favor yy_id fgbdt from pa0021 into corresponding fields of table it_0021
    where pernr = lv_pernr and
    subty = '2'.
    data: lo_nd_adobe2 type ref to if_wd_context_node,
            lo_nd_ls00212 type ref to if_wd_context_node,
            lo_el_ls00212 type ref to if_wd_context_element,
           ls_ls00212 type wd_this->element_ls0021.
    lo_nd_adobe2 = wd_context->get_child_node( name = wd_this->wdctx_adobe).
    lo_el_ls00212 = lo_nd_adobe2->get_element().
    lo_nd_ls00212 = lo_nd_adobe->get_child_node(name = wd_this->wdctx_ls0021).
    lo_el_ls00212 = lo_nd_ls00212->get_element().
    loop at it_0021 into wa_0021.
    lo_el_ls00212->get_static_attributes(importing static_attributes = ls_ls00212).
    endloop.
    lo_nd_ls00212->bind_table(new_items = it_0021).
    if anyone can help me - i will really appreciate it.
    i tried other thing and didnt succeed.
    thanks,
    Michal.

    Obvious question, but have you got 'Find My iPhone' set on both devices?  Settings>iCloud>Find My iPhone.

  • How can I see more than 6 all day events in the week view without scrolling?

    How can I see more than 6 all day events in the week view without scrolling?  I need to see all of my all day events at once.  I use this for scheduling and comparing of # invoices.  Going back and forth to scroll is cumbersome.  I just want to be able to expand the top section so I can see everything at once.

    Any ideas, anyone?

  • ¿How can I see more than a day in the calendar view of the notification center?

    Hi guys! I wanna know if there's any option to see more than a day in the calendar view of the notication center. I swear I saw a friend of mine who could see more than a day in the notification center.
    Than

    In Settings > Notification Center, try turning "on" all the six buttons under "Today View".  Also turn "on" the top two buttons under "Access on Lock Screen".  Doing that should show you "Tomorrow" at the bottom of Noticiation Center.

  • How can i get more info about the sent data in RTP?

    Hello.
    I'm working with the examples AVTransmitt2 and AV Receive2 and i want to get more information about the data that it is being sent to de receiver side. In AVTrasmitt2 i only see a calling to processor.start();. How could i know each packet that AvTransmit2 sends to the other side. I want info like the size of the data, the quality, format, etc..

    Hi!
    As I mentioned above. RTPSocketAdapter has two inner classes, SockOutputStream and SockInputStream.
    SockOutputStream have a write method which is called when RTP data is sent over the NET. SockInputStream have a read method which is called when RTP data is received.
    If you for instance want to know exactly what is sent you can parse the byte array that comes into write.
    Like this:
    * An inner class to implement an OutputDataStream based on UDP sockets.
    class SockOutputStream implements OutputDataStream {
         DatagramSocket sock;
         InetAddress addr;
         int port;
         boolean isRTCP;
         public SockOutputStream(DatagramSocket sock, InetAddress addr, int port, boolean isRTCP) {
              this.sock = sock;
              this.addr = addr;
              this.port = port;
         public int write(byte data[], int offset, int len) {
              if(isRTCP){
                   parseAndPrintRTCPData(data);               
              }else{
                   parseAndPrintRTPData(data);
              try {
                   sock.send(new DatagramPacket(data, offset, len, addr, port));
              } catch (Exception e) {
                   return -1;
              if(debug){
                   System.out.println(debugName+": written "+len+" bytes to address:port: "+addr+":"+port);
              return len;
    private void parseAndPrintRTPData(byte[] data) {
         // part of header, there still left SSRC and CSRC:s
         byte[] rtpHeader = new byte[8];
         System.arraycopy(data, 0, rtpHeader, 0, rtpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // extension
         int x = (word & 0x10000000) >>> 28;
         System.out.println("extension: "+x);
         // CSRC count
         int cc = (word & 0x0F000000) >>> 24;
         System.out.println("CSRC: "+cc);
         // marker
         int m = (word & 0x00800000) >>> 23;
         System.out.println("marker: "+m);
         // payload type
         int pt = (word & 0x00700000) >>> 16;
         System.out.println("payload type: "+pt);
         // sequence number
         int seqNbr = (word & 0x0000FFFF);
         System.out.println("sequence number: "+seqNbr);
         // timestamp
         int timestamp = buffer.getInt();
         System.out.println("timestamp: "+timestamp);
    private void parseAndPrintRTCPData(byte[] data) {
         // this only works when the RTCP packet is a Sender report (SR).
         // All RTCP packets are compound packets with a SR or Receiver report (RR) packet first.
         // part of header, there is still the report blocks (see RFC 3550).
         byte[] rtcpHeader = new byte[28];
         System.arraycopy(data, 0, rtcpHeader, 0, rtcpHeader.length);
         ByteBuffer buffer = ByteBuffer.wrap(rtcpHeader);
         int word = buffer.getInt();
         // version
         int v = word >>> 30;
         System.out.println("version: "+v);
         // padding
         int p = (word & 0x20000000) >>> 29;
         System.out.println("padding: "+p);
         // reception report count
         int rc = (word & 0x0F000000) >>> 24;
         System.out.println("reception report count: "+rc);
         // payload type, which is 200 in this case (SR=200)
         int pt = (0x00FF0000 & word) >>> 16;
         System.out.println("payload type: "+pt);
         // length
         int length = (word & 0x0000FFFF);
         System.out.println("length: "+length);
         // SSRC of sender
         int ssrc = buffer.getInt();
         System.out.println("SSRC: "+ssrc);
         // NTP timestamp
         long ntp_timestamp = buffer.getLong();
         System.out.println("NTP timestamp: "+ntp_timestamp);
         // RTP timestamp
         int rtp_timestamp = buffer.getInt();
         System.out.println("RTP timestamp: "+rtp_timestamp);
         // sender's packet count
         int nbrOfSentPackets = buffer.getInt();
         System.out.println("sender's packet count: "+nbrOfSentPackets);
         // sender's octet count
         int nbrOfSentBytes = buffer.getInt();
         System.out.println("sender's octet count: "+nbrOfSentBytes);
    }I added a boolean isRTCP to the constructor so to know what sort of data is sent.
    Hope this clarifies things.

  • How can I see more than 100 users when adding users to a node?

    When adding new users through the User Management interface, only the
    first 100 entries are listed. How do I increase the number of entries
    so I can see the next hundred (or more) users? Is this done via the server
    configuration parameter maxsearchresult?
    <P>
    The GUI Add User to Node option was meant for infrequent adds in smaller
    environments. In large deployments (more than 100 user adds at a time), you
    should be using the command line script "unidsattach". See the Administrators
    Guide for more details on the command.
    <p>
    The parameter, maxsearchresult, is meant to limit the number of users that can
    be returned on a search request by the calendar client. For example, if you have
    1000's of calendar users and someone tries to search for all of them, this
    parameter will make sure that the user is not left waiting a long time for
    results.

    In Settings > Notification Center, try turning "on" all the six buttons under "Today View".  Also turn "on" the top two buttons under "Access on Lock Screen".  Doing that should show you "Tomorrow" at the bottom of Noticiation Center.

  • Sync Icon on Menu Bar?  What does this mean? How can I get more info on it?

    I just noticed for the first time, a SYNC icon on the Macbook Pro/Lion menu bar and it is going strong - twirling its little heart out.  Im not sure what this is or what it is doing.  Im having a feeling something got set up (I dont really know what Im doing ) that had to do with maybe syncing a calendar with Google? for an Android phone?  Is t here a way I can check out what this is and what its doing -   It just keeps twirling around so Im not sure what its doing or how long it will take and I dont know that I want it doing wh atever its doing.  Maybe it has something to do with contacts?  The only option I can find when I click on the icon, it says 'cancel sync.'  Is there a way to "get info" - and find out what its doing.  I dont want it twirlling forever as I assume thats going to eat up the battery...I dont have anything set up to sync consistently so I dont know whats its doing or whether I should stop it.  Its been going on for like over 5 minutes and that doesnt seem right to me

    If it's a one-time "glitch," you can try restarting your computer with the iPod still connected.  Try ejecting again after the restart.
    If the problem recurs, you may have a process running (other than iTunes) that is accessing the iPod's storage.  When connected, the iPod's "disk" is like other mounted volumes.  This process may be some type of utility that continously monitors your mounted volumes for security reasons, such as to prevent access by malware.
    If you know of such a program that you have running in the background, there may be a setting to exclude your iPod's disk.

  • How can I see more than one time of (dialled, rece...

    Can someone help me? I've got the Nokia 6303clasic (upgraded from Nokia 6300). I am perfectly happy with it, it does everything I need. The only problem I had with it is that it only shows the time of last (missed, received or dialled) call. All the other Nokia phones I have until now showed time of all calls (depending on model up to 5 or maybe 10), i.e. if I had 5 missed calls from my mum it showed times of all those missed calls, so I new she called me 5 times within last 3 mins and it's something urgent or it was within last 4 hours so she just wanted to chat with me And the same with received and dialled numbers, I could see that I called my friend today, yesterday and 5 days ago etc. This new 6303 classic shows I had 6 missed calls from one person, but only shows the time of the last one Apart from that it's a great phone.
    In software details it shows:
    V06.40
    30-04-09
    RM-443
    I don't want to mess up with the software update as I don't know weather it'll work afterwards anyway, and apart from this one problem I'm happy with it as it is at the moment.
    Does somebody have any experience with this?
    Please help!!!
    thanks!

    go to menu/log it gives the times there,but it does only show last one im sorry to say
    If  i have helped at all a click on the white star below would be nice thanks.
    Now using the Lumia 1520

  • How can I see   more than one text line?

    Can anyone help me??
    I know to write more than one line in a HstaticText with the following code
    label = new HStaticText("This is some text.  It's a fairly long " +
                                    "\npiece of text that should show \nword wrapping on most " +
                                    "receivers.\nMultiple lines of text are\n supported " +
                                    "by the text layout\n manager if them are\n separated " +
                                    "by a \\n", 0,0, 600, 600, new Font("Tiresias", Font.BOLD, 30), Color.blue, colors[0], new HDefaultTextLayoutManager());but when I have tried the following code and I can�t.
    private String texto="Pulse cualquier bot�n. \n para averiguar su Keycode";
    g.drawString(texto,x_pos,y_pos);     // Graphics gPlease help me!

    Graphics.drawString() doesn't format the text into lines based on embedded linefeeds. You have to split the text into lines yourself and use multiple drawStrng() calls, giving it the correct starting location each time. This "HstaticString" class is obviously doing that for you behind the scenes. If you want to draw multiline text without using an HstaticString, I suggest using either a JTextArea, or a JLabel with HTML text:  JLabel lbl = new JLabel("<html>Pulse cualquier bot�n.<br><br>para averiguar su Keycode</html>");

  • How can I see more than one month history in safari?

    I need to see the safari history longer than one month. Can I change that?

    For previous history entries, no, unless they're stored in a backup.
    For future entries, choose Preferences from the Safari menu, click on General, and increase the time before they're removed.
    (123330)

  • How can I display more info using remote app?

    Hi there,
    I use remote app a lot, but I find it quite basic in the display features.
    I mean: remote is great to browse my music library and play songs with on my living room hi-fi while I'm sitting comfortable on my sofa.
    But what if I would like to know the release date of the album, the name of the composer, and so on?
    Is there any way to configure the remote app to display more?
    Is any kind of new release of the app on its way?
    Thank you.

    Command (right) - click on a photo in the Photo tray and select Small Photo from the contextual menu:
    This will give you two columns of photos.
    To reduce the number of photos to select from one can select only Unplaced Photos to be displayed in the tray.
    Happy Holidays

  • How can I see more emails?

    The iPhone seems just to show recent emails. Is there a way to define "recent" so I can see emails that are, say, a month old?
    Thanks,
    Matt

    In fact, just answered my own question... Once the email account is set up, if you go back to it, a new option appears "Mail days to sync". One can set that to "no limit" and get it to sync old emails.
    Thanks anyway,
    Matt

  • How can i get more info regarding Zoning.

    Guys,
    I have been asked to create zones with Solaris 10 on a netra.
    From where i can get documentation on this? From where i can get binaries for this.
    sunsole is not giving me more details. Do any of you have any experiance on zoning ? If yes put your feedback.
    Tx,
    S

    S,
    Zone is part of Solaris 10. So, if you have Solaris 10 installed, it relevant binaries are on the system. As for zone related documentation, you can explore the vast documentations on http://docs.sun.com/.
    One particular one which would probably of your interest would be "System Administration Guide: Solaris Containers-Resource Management and Solaris Zones", http://docs.sun.com/app/docs/doc/817-1592 .
    You have like to also explore Sun Blueprints Online, http://www.sun.com/blueprints/browsedate.html . There are some very interesting articles on applications of Solaris Container.
    Have fun.
    Regards
    S.T.Chang

  • How can i see the callers special information like Job Title, Company name, and may be notes?

    I need to see the caller’s  special infos in call screen.  Like Company name, Job Title?
    Please dont say me, “put these info to name&surname field”, because that, i’m useing Outlook Contact and i cannot change it.
    I tried some special programs like (Call Screen (caller id Screen) prog: https://itunes.apple.com/tr/app/call-screen-caller-id-screen/id446742417?l=tr&mt =8 ) but it changes the persons picture but it not refresh itself, if i change info.
    Lots of people asked same question but there is no any exact answer.
    I think it must be a metbod for the seeing this special info in call screen.
    Oldest Nokia and Blackberry model phone shows  this info, More smart phone iPhone can shows it i think. Please show me, how can i see this infos in call screen.

    Other than finding an App to do what you want, or putting the info in the name field, you can't, as this is not a feature of the stock iOS.

  • How can i get more than 100 email in Mail? I can only see the latest 100. I have an hotmail account and it worked at my other mac.

    How can i get more than 100 email in Mail? I can only see the latest 100. I have an hotmail account and it worked at my other mac.

    How can i get more than 100 email in Mail? I can only see the latest 100. I have an hotmail account and it worked at my other mac.

Maybe you are looking for

  • How do I get Java 7 to work with my remote access token to Kaiser on my Mac 10.7.5?

    Since I updated Java last week I do longer can get to my Health Connect Site. I get to the page for Java and hit run. Then a window opens, it starts to transfer data. Then it stops and says error. I have gone thru Kaiser's IT and Apple Support. Both

  • Media Encoder update 4.1 did not install correctly?

    I updated Production Premium package to 4.1 when it became available, 31. May. Now when I check updates, Adobe Media Encoder 4.1 update is still on a list. Somehow it did not install correctly. It is working OK and version shows 4.1.0.107. The only p

  • Interface   BAPI  can not post to asset

    Dear all         i met a weird problem.         we use a interface( bapi)  to make the SAP document, but when  we post document  for the asset , only FI document generated.  the Asset document not generated ,  the value was not posted to the asset.  

  • Automatic Source Determination

    Hello, I have implemented function module exit EXIT_SAPLMEREQ_005 of enhancement MEREQ001 to control user input, one of which is the desired vendor field. Under standard system conditions, if the user enters a desired vendor then automatic source det

  • XI Adapter parameters

    in XI Adapter paramters, i am using File to proxy, where in the XI Adapter parameters, i am giving the login parametrs of my SAP R/3 user nam and password should i give PI username and password please help in this thanking y ou ' Sridhar