Video content description limited to one line only. Three lines needed

The videos app on my iPad mini (iOS 6.0.2) presents videos/films by nice thumbnails; however, with only one line of video file info. As there is a lot of footprint available, it would be great with, say, three lines of info like location, artists, song titles. I enter that type of info in iTunes, but it's not possible to retrieve it with the videos app.

Hi
From text tools I select "Lower Third" (second first row) and it gives me two
lines.
By using a smaller font and NO Serif (as in Times) but eg Ariel (SanSerif) one
can squees in rather much text. Then adjusting the length of this to suit "say"
(spoken words). To cont. by next two lines one might need to do this by adding
more text to to next video-clip then move it back to where first one ends.
Rather tricky to do - alt. is to make a cut in the video-clip for next text lines to orient
too. May be an easier way to go. This cut will not be visibly only work as guide to
the text tool.
Third line - I didn't make this.
If You only get one - then trashing iMovie pref file might help it to get back on track.
Yours Bengt W

Similar Messages

  • Can you manage your iPhone content on more than one computer?  Ex.  Home computer, work computer.

    I am trying to manage my iPhone on my work pc as well as my home pc.  I have to tried to set the iPhone to manually manage music and videos, but it will not let me.  An error message appears saying that my phone can only being synced to one iTunes library.  I have never had this problem with my iPod Touch, jut the iPhone. 

    Iphone will sync/manually manage itunes content and pics with one and only one computer at a time.
    Syncing/manually managing with another will erase the current content from the iphone and replace with content from the new computer.

  • Title/text effects just for one line?

    Hi!
    As far as I understood do the PE11 title/text effects work just for one line of text.
    (1) How can I produce more lines text-effects with PE11 (and more complex, like 3D-animations)?
    (2) If this is not possible, do you know any free/beginners software for doing that?
    I look forward to reading your answers!
    Best wishes,
    Ronald

    Ronald,
    You are most welcome.
    I am not sure what the limitation to one line of text is related to - the program coding? The animation algorithms? However, with a bit of planning, there are several ways around that limitation, but it throws people, when they first encounter it.
    This article also has some tips on using Titler in Premiere (both Pro and Elements), and I have added some Adobe TV tutorials. Note: they are done in PrPro, so the interfaces will look differently, plus PrPro's Titler has some additional functions, that are not yet in PrE. Still, the basics are all the same, and I think that with a bit of interpolation, even the PrPro tutorials will be useful: http://forums.adobe.com/thread/1131177
    Good luck, and happy titling,
    Hunt

  • Only one line is getting printed in Table in Smartforms (ECC 6.0)

    Hello Sir,
    I am new in ABAP and doing Smartforms (ECC 6.0) on project from customer side.
    I have to deliver the object in time and it is already late, please help me.
    This is my question:
    Object :  Stock Transport Order.
    =======================
    I have created Table in main window after Program Line Node.
    >Main Window
    >>Code2
    >>Table1
    >>>Header
    >>>>Row1
    >>>>>Cell1 to Cell10
    >>>Main Area
    >>>>Row2
    >>>>>Cell1 to Cell10
    >>>Footer
    >>>>Row3
    >>>>>Cell1 to Cell10
    I have mentioned internal tabel as well work area table in "DATA" tab in table Node.
    In Row1 I have created Text Node in every cell having Column Heading.
    In Row2 I have created Text Node in every cell having variable.
    In Row3 all cells are blank.
    On output only one line is getting printed
    What could be the reason.
    =====================================================================
    This is Code1 (is in the beginning of the form in window1)
    ==========
    *& Selection of Purchasing Document No,Plant,Short Text,Quantity,Material No,
    *& Gross order value in PO currency
    select single ebeln werks txz01 menge matnr brtwr
    from ekpo into
    (v_ebeln,v_werks,v_txz01,v_menge,v_matnr,v_brtwr)
    where ebeln = DOCNO.
    *& Selection of Plant address
    select single adrnr from t001w into v_adrnr
    where werks = v_werks.
    *& For Selection of phone,fax
    select single name1 tel_number fax_number from adrc into (v_name1,phone,fax)
    where addrnumber = v_adrnr.
    *& For E-Mail Selection
    select single SMTP_ADDR from adr6 into mail where addrnumber = v_adrnr.
    *& For CST No.,GST No.
    select single J_1ICSTNO J_1ILSTNO
                  from J_1IMOCOMP into (CST,GST)
                  where werks = v_werks.
    *& Selection of Vendor Address No., PO date
    select single reswk aedat from ekko into (v_reswk,v_aedat) where
    ebeln = v_ebeln.
    *& Selection of Supplying (Issuing) Plant address
    select single adrnr from t001w into vendor
    where werks = v_reswk.
    *& Selection of storage location
    select single lgort from ekpo into v_lgort where werks = v_werks
    and ebeln = v_ebeln.
    *& Selection of description of storage location
    select single lgobe from t001l into v_lgobe where werks = v_werks.
    *& Fetching data into internal table from ekpo
    select ebeln ebelp matnr txz01 menge brtwr from ekpo into corresponding fields
    of table iekpo where ebeln = v_ebeln and werks = v_werks.
    Fetching data into internal table from marm for Pck
    select * from marm into corresponding fields of table imarm for all entries
    in iekpo where matnr = iekpo-matnr.
    Fetching data into internal table from mara for Pack Type Code
    select * from mara into corresponding fields of table imara for all entries
    in iekpo where matnr = iekpo-matnr.
    Fetching data into internal table from tvegrt for Pack Type Description
    select * from tvegrt into corresponding fields of table itvegrt
    for all entries in imara where magrv = imara-magrv.
    Fetching data into internal table from eket for Receipt Date
    select * from eket into corresponding fields of table ieket
    where ebeln = v_ebeln.
    Selection of Order Type from mepo_topline
    *select single bsart from mepo_topline into v_bsart where ebeln = v_ebeln
    *and superfield = v_werks.
    *if v_bsart = 'UB'.
    xhead = 'Replenishment Order'.
    *eleseif v_bsart = 'ZSTO'.
    xhead = 'Purchase Order'.
    *endif.
    *& Defining of variable for Printing Line Serial Number,Total Quantity,
    *& Total Value
    =====================================================================
    This is Code2 (is in the main window)
    ==========
    xln = 0.
    tmenge = 0.
    tvalue = 0.
    Loop for printing table
    loop at iekpo into wekpo.
      xln = xln + 1.
      xmatnr = wekpo-matnr.      " Material Number (Code)
      xtxz01 = wekpo-txz01.      " Material Name
      xmenge = wekpo-menge.      " Line Quantiy
      xbrtwr = wekpo-brtwr.      " Basic Rate
    *& Pck
      read table imarm into wmarm with key matnr = wekpo-matnr.
      xpck = wmarm-umren.        " Packing Size
    *& Num
      xnum = xmenge / xpck.      " Numbers of Packing
    *& Line Value
      xvalue = xmenge * xbrtwr.  " Line Basic Value
    *& Packing Type
      read table imara into wmara with key matnr = wekpo-matnr.
      xpacktype = wmara-magrv.   " Packing Type Code
    *& Packing Type Description
    read table itvegrt into wtvegrt with key magrv = imara-magrv.
    xpackdesc = wtvegrt-bezei. " Packing Type Description
    *& Receipt Date
      read table ieket into weket with key ebeln = v_ebeln.
      xrcpdt = weket-eindt.      " Receipt Date
    *& Report Total
      tmenge = tmenge + xmenge.
      tvalue = tvalue + xvalue.
    *& Serial No. increment
    endloop.
    =====================================================================
    Thanks and Regards,
    Yogesh Pathak

    Did you debug and check the umber of values in internal table before calling the TABLE Node....
    seeing all SELECT SINGLE along with WHERE = condition and no loop call on them, my assumption  is there will be on record only. Check in Debug mood. Search forum to find how to debug a smartform.

  • Displaying XML content in one line in pdf

    Hi,
    I am using OBIP for report generation, i am facing a problem regarding to xml content
    In XML the content is displaying like
    <OmbudsmanAdrress>Shri V. Ramasaamy,
    Insurance Ombudsman,
    Office of the Insurance Ombudsman,
    Fathima Akhtar Court,
    4th Floor, 453 (old 312),
    Anna Salai, Teynampet,
    CHENNAI-600 018,
    Fax : 044-24333664,
    Email [email protected]</OmbudsmanAdrress>
    but i need to show only in one line in pdf.
    how can i will get in one line
    please suggest me....
    Thanks in advance,
    Vijay Chunduri.

    Finally after a long struggle i got the answer...
    Here it is buddies...
    <?xdofx:replace(OmbudsmanAdrress,’,\n’ ,',')?>

  • Is it possible to have only one line per item in InfoView document list?

    Hi,
    my customer is complaining about InfoView (Document list) wasting too much screen estate. For each list item (report, folder etc.) InfoView displays two lines, one for the name and one for the description. Is it possible to configure InfoView to display one line only, leaving out the description?
    Regards
    Joern

    Hi Joern,
    You can set the user preferences  to not display the description in the section: Document List Display
    Regards,
    Julian

  • (Sub)Titles can only be one line?

    I'm trying to add subtitles to a part of a video where somebody is speaking a foreign language, but the titles box in the movie pane only seems to allow one line of text at a time. Can this box's size be adjusted to fit two or three more lines of text in it? Otherwise I would be forced to make the subtitles smaller, and harder to see.
    Cheers!

    Hi
    From text tools I select "Lower Third" (second first row) and it gives me two
    lines.
    By using a smaller font and NO Serif (as in Times) but eg Ariel (SanSerif) one
    can squees in rather much text. Then adjusting the length of this to suit "say"
    (spoken words). To cont. by next two lines one might need to do this by adding
    more text to to next video-clip then move it back to where first one ends.
    Rather tricky to do - alt. is to make a cut in the video-clip for next text lines to orient
    too. May be an easier way to go. This cut will not be visibly only work as guide to
    the text tool.
    Third line - I didn't make this.
    If You only get one - then trashing iMovie pref file might help it to get back on track.
    Yours Bengt W

  • I have a mac book pro and when I turned on iChat it would not let me video chat with more then one person even though I was able to in the past. It only showed an icon to video chat with one person. Please help!!

    I have a mac book pro and when I turned on iChat it would not let me video chat with more then one person even though I was able to in the past. It only showed an icon to video chat with one person. Please help!!!! ASAP

    Hi,
    Check the iChat Menu > Preferences > Video Section > Bandwidth setting.
    iChat needs to see a Minimum of 128kbps to do 1-1 chats in Video
    For 3 and 4 way chats it needs 384kbps
    Set the Bandwidth to 500kbps if it is set lower.
    Also check the speed you are getting from your Internet supplier.
    9:28 PM      Thursday; February 23, 2012
    Please, if posting Logs, do not post any Log info after the line "Binary Images for iChat"
      iMac 2.5Ghz 5i 2011 (Lion 10.7.3)
     G4/1GhzDual MDD (Leopard 10.5.8)
     MacBookPro 2Gb (Snow Leopard 10.6.8)
     Mac OS X (10.6.8),
    "Limit the Logs to the Bits above Binary Images."  No, Seriously

  • Fillable pdf's returned by clients are readable only one line at a time

    We have been emailing fillable pdf questionnaires to our customers for them to complete and return via email.  When some of them have come
    back, they are only viewable one line at a time, we need to highlight the fillable field that the customer completed so we can view their answer.
    Does anyone know why this occurs and why it would be isolated to a few cases?  Thanks!
    George

    They were probably filled-in and saved with the Preview application on the Mac. For more information and some approaches you can take to correct, see: http://kb2.adobe.com/community/publishing/885/cpsid_88564.html

  • Multiple line item in billing but only one line item in accounting document

    Hi Everyone,
    I am having one scenario in which sales order has more than one line item. Only one billing document is create for all line items in Sales Order but billing document contains as many items as sales order has. In accounting document of billing i find only one customer line which has total amount of all line items in billing as debited. My requirement is Accounting document also should have as many line of customer-debit as in billing items i.e sales order. For example :
    (1) Sales order has 2 line items.
    (2) Billing document is only ONE and has 2 line items
    (3) currently accounting document has only ONE line of Customet - Debit ( Total amount of both items)
    My requirement is
    Accounting document should have 2 line item of customer - Debit
    Customer - Debit (amount of first line item)
    Customer - Debit (amount of Second line item)
    Sales - Credit
    How can it be done ?
    Regards,
    Manish

    Hi,
    This is the SAP expected behaviour
    As far as the values correspond to same account key and same GL account as per account determination, then ti will be posted as a single line item in FI document.
    If you want the customer specific items to be posted in two GL accounts , then you have to do the account determination that way.
    For example, you should have a condition table in FICO as follows.
    Sales org/ Account key / Customer
    For this condition table, the entries shoudl be as follows.
    5110/ERS/Customer A  GL ACCOUNT IS 5000100
    5110/ERS/Customer B GL ACCOUNT IS  5000200
    In this case, there will be 2 entries for the invoice instead of just one line entry.

  • Hi when I stream video content to my Tv using Apple from my Ipad3 I find the Ipad goes to sleep after 2/3 minutes and disconects, the only way I have found to stop this is to continually tap the Ipad screen but there has to be a simpler method/ any help

    Hi when I stream video content to my Tv using Apple tv from my Ipad3 I find the Ipad goes to sleep after 2/3 minutes and disconects, the only way I have found to stop this is to continually tap the Ipad screen but there has to be a simpler method/ any help would be most welcome.

    Welcome to the Apple Community.
    Contact the developer of the Air Video app.

  • Urgent help please, I made an file with the size 1024x768, then i made two folios, one for retina 2048x1536 and one for non retina 1024x768, i have alot of video content in it, everything works perfect on my retina ipad, but when i open it on ipad 2 an er

    Urgent help please, I made an file with the size 1024x768, then i made two folios, one for retina 2048x1536 and one for non retina 1024x768, i have alot of video content in it, everything works perfect on my retina ipad, but when i open it on ipad 2 an error appears on the pages with video content?

    its in german:
    der Vorgang könnte nicht abgeschlossen werden.
    something like the process coundnt be completed

  • TS1846 I have edited a movie in Final Cut Pro and the video has been smoot all the time. Now, when the one hour long movie is ready the video seem to paus every 5 sec (only for half a second). It does it all the way through the movies. What is wrong? Sudd

    I have edited a movie in Final Cut Pro and the video has been smooth all the time.
    Now, when the one hour long movie is ready the video seem to paus every 5 sec (only for half a second). It does it all the way through the movies.
    What is wrong? All the sudden.

    We need info, info, info!
    What version of FCP X?
    Did you render? what are the project specs? do you use many compound clips? how much ram, hard drive space, how is the hard drive connected?
    It looks like your mac can't keep up. Maybe the bottleneck is the hard drive, or something else.
    Try exporting a master file and see if the video is ok.
    Also, keep Activity Monitor open and see how much memory pressure you've got.

  • In Mail, my preview of incoming emails changed to one line only.  How can I get the bigger view?

    My view of emails has changed suddenly to only one line.  It used to be a bigger window, allowing me to read part of the body of the email, while viewing all new emails....how can I get that view back?  Is that a long header?  I try to click on long header but it is greyed out and unavailable even though I added the long header icon to my task bar.  Help??

    Hello Macdaddy and thanks for your prompt response.  Unfortunately for some reason, when I go to View, from Preferences, there is no PREVIEW, nor option for desired number of lines, option there at all?  Not sure why?  Any other ideas?  Thanks SO much for your attention to this issue of mine.

  • IChat 5.0.1 no audio when video chatting (one end only)

    Hello,
    I have a Early Mac Mini Core Duo 1.66Ghz with OS 10.6.2. iChat version 5.0.1.
    I am using a compatible webcam (Logitech Quickcam Pro 5000). I have full video and audio until I start a video chat.
    The logitech Quickcam is selected in both the system preferences and the iChat preferences as the audio in source. I get visual feedback that the sound is being heard by the mini in both the system preferences and iChat. Sound-in is working.
    We are trying to connect to a iChat 3 user using a iMac Dual Core 2 Duo. I do not remember the CPU speed.
    The microphone check is on under the video menu. In the iChat preferences the audio indicator moves showing sound in.
    The problem starts after we actually make a video chat connection. I can both see and hear the user on the iMac. However, the iMac user can only see me. As soon as the video connection is made, my sound indicator goes dead (no sound input showing) and the Microphone enabled menu option under the Audio menu is grayed out.
    If I close the video chat and start an audio chat only, both ends can hear each other.
    This is the same issue when trying to use a intel mac mini 1.5Ghz Core Solo and trying video chat with the iMac Core 2 Duo user. I am not able to verify that both intel Mac Mini's can see and hear each other as we only have one 10.6.2 webcam that works. Our other two only are recognized as a microphone.

    Solved the issue on the mac mini 1.66 core duo. Still using the Quickcam 5000, but paired up a bluetooth headset to use as a microphone. That allowed video and audio to be sent from my end. Both parties could hear and see one another. Switched the sound input from the headset back to the Quickcam microphone and it worked. To make sure, I turned off bluetooth. I can now use video chat will video and sound using the Quickcam's built-in mic.

Maybe you are looking for