How to Add Media to a Custom Frame That Preserves to Interactive PDF

What I'm doing/trying to do:
I have a custom object that I want to use as a frame in which the video would be placed. The object is a somewhat rectangular frame that I've custom made to fit over a portion of my background image.
Adobe InDesign interactive pdf exports don't play any html embed codings I add (even after making sure the http:// is present) nor does the InDesign accept any of the video from URL links I put in from YouTube or Vimeo using the Add Media function. Therefore I tried using the actual media file and uploading it to my Adobe Indesign file. However, the video won't play or appear in my custom frame when I export it, but the video file will play when I plop it in without a frame. Before exporting I get the message: :
So:
A) What urls will Adobe Indesign ACTUALLY accept since all the ones I've used so far don't work?
B) How do I add a video file to a custom frame that fits appropriately into the frame?
C) How do I get URL based media to work in interactive pdfs?
D) If I can't do what I'm trying to do as an interactive pdf what file should I be saving it as so that I can make it work?
I hope that makes sense. Thanks in advance for the help!

I have never yet heard of anyone who has successfully played a YouTube or Vimeo streaming video from an interactive PDF. You could search for some kind of a third party utility that claims to convert that to a video format. You should aim to create an MP4 file, preferably with H.264 encoding. I've also never read the description of someone who has done such a conversion, though it is theoretically possible.
You will be unsuccessful in masking a video to play in a non-rectangular frame because in a PDF, the interactivity also is display above anything else on the page.

Similar Messages

  • How to add HTTP Header Response X-Frame-Options:SAMEORIGIN from OWA published via Forefront TMG 2010 to stop Clickjacking

    How to add HTTP Header Response X-Frame-Options:SAMEORIGIN from OWA published via Forefront TMG 2010 to stop Clickjacking. I have put the IIS setting X-Frame-Options:SAMEORIGIN  on my Internal CAS Server. However as the OWA page is published through
    Forefront TMG 2010, the iFrame tag is not blocked when the page is first opened. Only when you login with your credentials to the OWA page inside the frame and the page reaches IIS on the Internal CAS it gets blocked. I want to block it in the first
    instance when it is opened from TMG.

    Hi,
    Thank you for the post.
    To modify the http header, please refer to this blog:
    http://tmgblog.richardhicks.com/2009/03/27/using-the-isa-http-filter-to-modify-via-headers-and-prevent-information-disclosure/
    Regards,
    Nick Gu - MSFT

  • How to add search help to custom infotype listbox??

    Hi All,
    How to add search help to custom infotype listbox??
    Thanks in advance

    Hi Vinay,
    We have search help and list box as 2 different options.
    At a time we can make a field a list box or a search help.List box is restricted and we can pick values from the defined list whereas in search help we can allow more entries and then validate the value entered later.
    Implementing a listbox or search help in infotype is same as that of implementing it in a modulepool .
    for search help..we can create a custom search help or check for existing search help in se11
    then in the screen on infotype field..assign the search help direcly at the screen painter level..
    double click on the field in screen painter -> change mode and then in the space for "search help" enter the search helps name
    for list box..in the screen painter ,make sure the field is selected as list box..then in PAI of screen we do a
    (Process on value-request..field fieldname module module name)..check syntax and other details...
    Using function module vrm_set_value fill the field and populate it as required
    Pls check and revert
    Regards
    Byju

  • How to add .js link in custom list form through sharepoint designer 2013

    hi friends
    so far i was adding jquery code to script editor webpart in custom list form.
    but i need to know how to add .js link in custom list form through sharepoint designer 2013
    please help me.

    Hi,
    We can add the "JS Link Property" in the “WebPart” node in the custom list form page through SharePoint designer 2013.
    Here is an example for your reference:
    <JSLink xmlns="http://schemas.microsoft.com/WebPart/v2/ListForm">~site/Style Library/js/custom.js</JSLink>
    Noticed that, we should not lose the 'xmlns="http://schemas.microsoft.com/WebPart/v2/ListForm' attribute.
    Best Regards
    Dennis Guo
    TechNet Community Support

  • How to add entire new row at the top of table in pdf report from c# windows forms using iTextSharp

    Hi for past 3 days i was thinking and breaking my head on how to add entire new at top table created in pdf report from c# windows forms with iTextSharp.
    First: I was able to create/export sql server data in form of table in pdf report from c# windows forms. Given below is the code in c#.
    using System;
    using System.Collections.Generic;
    using System.Configuration;
    using System.Text;
    using System.Data;
    using System.IO;
    using System.Data.SqlClient;
    using System.Windows.Forms;
    using iTextSharp.text;
    using iTextSharp.text.pdf;
    namespace DRRS_CSharp
    public partial class frmPDFTechnician : Form
    public frmPDFTechnician()
    InitializeComponent();
    private void btnExport_Click(object sender, EventArgs e)
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    PdfPTable inner = new PdfPTable(1);
    inner.WidthPercentage = 115;
    PdfPCell celt=new PdfPCell(new Phrase(new Paragraph("Institute/Hospital:AIIMS,NEW DELHI",FontFactory.GetFont("Arial",14,iTextSharp.text.Font.BOLD,BaseColor.BLACK))));
    inner.AddCell(celt);
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(inner);
    doc.Add(table);
    doc.Close();
    The code executes well with no problem and get all datas from tables into table in PDF report from c# windows forms.
    But here is my problem how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    As the problem i am facing is my title or Header(DCS Clinical Report-Technician wise) is at top of my image named:logo5.png and not coming to it's center position of my image.
    Second the problem i am facing is how to add new entire row to top of existing table in pdf report from c# windows form using iTextSharp?.
    given in below is the row and it's data . So how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    as you can see how i create my columns in table in pdf report and populate it with sql server data. Given the code below:
    Document doc = new Document(PageSize.A4.Rotate());
    var writer= PdfWriter.GetInstance(doc, new FileStream("Technician22.pdf", FileMode.Create));
    doc.SetMargins(50, 50, 50, 50);
    doc.SetPageSize(new iTextSharp.text.Rectangle(iTextSharp.text.PageSize.LETTER.Width, iTextSharp.text.PageSize.LETTER.Height));
    doc.Open();
    PdfPTable table = new PdfPTable(7);
    table.TotalWidth=585f;
    table.LockedWidth = true;
    Paragraph para = new Paragraph("DCS Clinical Report-Technician wise", FontFactory.GetFont("Arial", 14, iTextSharp.text.Font.BOLD, BaseColor.BLACK));
    para.Alignment = iTextSharp.text.Element.TITLE;
    iTextSharp.text.Image png = iTextSharp.text.Image.GetInstance("logo5.png");
    png.ScaleToFit(95f, 95f);
    png.Alignment = Element.ALIGN_RIGHT;
    SqlConnection conn=new SqlConnection("Data Source=NPD-4\\SQLEXPRESS;Initial Catalog=DRRS;Integrated Security=true");
    SqlCommand cmd = new SqlCommand("Select t.technician_id,td.Technician_first_name,td.Technician_middle_name,td.Technician_last_name,t.technician_dob,t.technician_sex,td.technician_type from Techniciandetail td,Technician t where td.technician_id=t.technician_id and td.status=1", conn);
    conn.Open();
    SqlDataReader dr;
    dr = cmd.ExecuteReader();
    table.AddCell("ID");
    table.AddCell("First Name");
    table.AddCell("Middle Name");
    table.AddCell("Last Name");
    table.AddCell("DOB" );
    table.AddCell("Gender");
    table.AddCell("Designation");
    while (dr.Read())
    table.AddCell(dr[0].ToString());
    table.AddCell(dr[1].ToString());
    table.AddCell(dr[2].ToString());
    table.AddCell(dr[3].ToString());
    table.AddCell(dr[4].ToString());
    table.AddCell(dr[5].ToString());
    table.AddCell(dr[6].ToString());
    dr.Close();
    table.SpacingBefore = 15f;
    doc.Add(para);
    doc.Add(png);
    doc.Add(table);
    doc.Close();
    So my question is how to make my column headers in bold?
    So these are my questions.
    1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?
    I know that i have to do some modifications to my code but i dont know how to do it. Can anyone help me please.
    Any help or guidance in solving this problem would be greatly appreciated.
    vishal

    Hi,
    >>1. how can i align Title(DCS Clinical Report-Technician wise) center of pdf report with image named:logo5.png immediately coming to it's right?.
    2. how do i add the given below row and it's data to my top my table in pdf report from c# windows forms using itextsharp?
    3.how to make my column headers in bold?<<
    I’m sorry for the issue that you are hitting now.
    This itextsharp is third party control, for this issue, I recommended to consult the control provider directly, I think they can give more precise troubleshooting.
    http://sourceforge.net/projects/itextsharp/
    Thanks for your understanding.
    Regards,
    Marvin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is it possible to place a video into a circle frame for export as interactive PDF?

    I've been trying to figure out how to embed video files into a circle shape frame for export as interactive pdf. Every time I export the document as interactive PDF, the video frame reverts back to a rectangle shape. Basically what I'm attempting to do is embed a .gif like animation of a face (saved as mp4 because it's my understanding that PDF can't support gif files) in a circle frame that plays on document load when exported as interactive pdf. Any suggestions, bypasses, solutions would be much appreciated. 

    Correct! Good solution!
    But you missed a couple steps in your directions:
    (1) Make a rectangle filled with Paper color.
    (2) Make a circle filled with None (this will be the mask for the movie).
    (3) Move the circle over the rectangle. Select both and choose Object > Path > Make Compound Path. This creates a paper-color rectangle with a hole.
    (4) Position the rectangle-with-hole object over the movie to position the mask.
    (5) Use the Buttons and Forms panel to make that object into a button. Give it an action of playing the movie.
    (6) Choose File > Export > PDF (Interactive).
    It works because the button (which has interactivity) is atop another object which has interactivity (the movie).
    Brilliant!

  • Urgent.. How to add a menubar to a frame by reading a file

    Hi All,
    I am involved in a project where in i need to add a menubar to the frame by reading a text file. The text file consists of all the Menu Items and subMenu items.This text file will be a editable file where-in the user can add his own menu-items.
    i.e when i run the java program i should read the menu items from a file and then display those menuitems in the Menubar.
    I am not getting the idea how i should proceed. Can any one help.
    Thanks in advance.
    Regards
    Ravi Kumar

    Sorry again - my use of i as an array index wasn't very clever. The post should have been as follows:
    Hi,
    You can read in the menu names from the file and add them fairly simply, with something like this:
    JMenuBar jmb = new JMenuBar();
    JMenu myMenu = new Jmenu("Custom");
    jmb.add(myMenu);
    in = new BufferedReader(new FileReader("file.txt"));
    JMenuItem [] menulist = new JMenuItem[MAXITEMS];
    for (int j=0; j < MAXITEMS; j++) {
    menulist[j] = new JMenuItem(in.readLine());
    myMenu.add(menulist);
    Then add the JMenuBar to the parent frame.
    However, for the menus to be of much use, you'd need to add actionlisteners to them as well.
    If you had a set of possible menu items, and it was just a question of which order the user's file defined them in, and which it used, you could then just test the name of each item in the file and assign an appropriate class of actionlistener to it, something like:
    if(menuitem.getText().equals("Open")) {
    menuitem[j].addActionListener(new OpenActionListener());
    where you'd defined the OpenActionListener class somewhere else.
    Hope this helps,
    Neil
    http://www.theBatCave.org.uk
    (Not having a very good day!)

  • How to add scrollbar to the JInternal Frame

    How to add scrollbar to JInternal Frame?
    I have One JInternal frame i want it should have a scrollbar when we reduces its size.

    [url http://java.sun.com/docs/books/tutorial/uiswing/components/scrollpane.html]How to Use Scroll Panes

  • How to add more fields to Customer sales report

    I want to add some fields to customer sales report generating through S_ALR_87012186 like,Invoice number,Invoice date,Tax registration number,tax amount,before tax amount..etc.
    Please let us know the best possible method to add these details.

    It is not suggested to alter a standard SAP report. Still if the requirement persists, then copy the standard program into a zprogram and add required fields.

  • How we add parter function in customer sales area usinf xd02

    how we add parter function.in xd02.any function module or user exit is there.
    it check first whether parter exit or not if not exit then add to atb partner function tab in XD02.any bdc how we add at run time this

    u can check with lsmw

  • How to add f4 help to customized SO

    Hi Experts,
    Could u please help; how to add f4 help to my SO.
    my req.  is ,I have created my SO in my report, i want have f4 help on below filed in my report.
    select-options: s_ihrez for vbak-ihrez.
    Could please help indetails(step by step).
    Thnx.
    POINTS REWARDED immediately.
    Regards. Vishnu.

    hi,
    check the example
    TABLES: mara, makt.
    DATA mat LIKE mara-matnr.
    DATA: BEGIN OF itab OCCURS 0,
    matnr LIKE mara-matnr,
    END OF itab.
    DATA : BEGIN OF btab OCCURS 0,
    maktx LIKE makt-maktx,
    END OF btab.
    DATA : return LIKE ddshretval OCCURS 0 WITH HEADER LINE.
    SELECT-OPTIONS: so_matnr FOR mara-matnr,
    so_maktx FOR makt-maktx.
    INITIALIZATION.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_matnr-low.
    PERFORM matnr.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_matnr-high.
    PERFORM matnr.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_maktx-low.
    PERFORM maktx.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR so_maktx-high.
    PERFORM maktx.
    *& Form matnr
    text
    FORM matnr.
    REFRESH itab.
    SELECT matnr FROM mara INTO TABLE itab.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'MATNR '
    dynprofield = 'P_MATNR '
    dynpprog = sy-repid
    dynpnr = sy-dynnr
    value_org = 'S'
    TABLES
    value_tab = itab
    return_tab = return.
    mat = return-fieldval.
    UNPACK mat TO mat.
    so_matnr = return-fieldval.
    REFRESH return.
    CLEAR return.
    ENDFORM. "matnr
    *& Form maktx
    FORM maktx.
    REFRESH btab.
    SELECT maktx FROM makt INTO TABLE btab WHERE matnr = mat AND spras =
    sy-langu.
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
    retfield = 'MAKTX'
    dynprofield = 'SO_MAKTX '
    dynpprog = sy-repid
    dynpnr = sy-dynnr
    value_org = 'S'
    TABLES
    value_tab = btab
    return_tab = return.
    so_maktx = return-fieldval.
    REFRESH return.
    CLEAR return.
    ENDFORM. "maktx
    if helpful reward points

  • How handle Add Media Failure Error: File Video Dimensions (Width/Height) Too Large?

    I am a brand new user of Premiere Elements.  I am using it for stop gap animation, bringing in digital still photos from my Nikon D3200.  I just attempted to bring in the first set of photos from the SD card.  I'm running Windows 7.   After loading the photos, an "Add Media Failure" box came up with the message "Error:  File Video Dimensions (width/height) too large".   Is something wrong with the width and height of the photos and if so what do I need to do to make it work?  There were 763 photos, but the message seems to refer to the height/width of each photo and not the total file size so to speak - right?  During the import process, the program prompted us to bring the photos in as images and not as videos -- so that is what we selected.  Thank you for any assistance.

    Photo Scaling for Video http://forums.adobe.com/thread/450798
    -Too Large May = Crash http://forums.adobe.com/thread/879967
    -And another crash report http://forums.adobe.com/thread/973935

  • How to add ability to insert Annotations via Reader to an existing PDF form

    I have an existing PDF form created in LiveCycle ES2/Acrobat X, with fillable text boxes and all that stuff.  I want to add the ability for Reader users to insert items from the Annotations menu, but can't seem to figure out how to add that permission.  When I look at the Document Restrictions Summary in the PDF properties, it has "Commenting: Not Allowed".
    So how can I keep the existing form working as is, but add the ability for anyone to insert Annotations through Reader?

    You have two choices
    1) You can use JavaScript in your AIR application to communicate with the JavaScript in the PDF to fill in the form directly. This can all be done inside of your AIR app. This is certainly the best route to go and there is (IIRC) a sample in the AIR SDK.
    2) You can create an XFDF file from your XML data and then have Acrobat/Reader open the XFDF file to fill in the data.
    Both methods will work with Acrobat and Reader - HOWEVER, Reader users won't be able to save the PDF unless it has been Reader Enabled.
    Leonard

  • How to add a hide data into an appointed image of the pdf

    Can I add data into an appointed image and hide the data?
    if can not add hide data in image, can I  add hide the data into the other layer  of   the pdf?
    Can anybody give me some tips?
    thanks!

    My code:
    ASFile hddatFile = NULL;
    ASPathName hidedataFile = ASFileSysPathFromDIPath (ASGetDefaultFileSys(),  "e:/myInfo.txt", NULL);
    if (hidedataFile == NULL)
         AVAlertNote("not yet");
    ASInt32 hidedataVal = ASFileSysOpenFile(NULL, hidedataFile, ASFILE_READ, &hddatFile);
    if (hidedataVal != 0)
         AVAlertNote("隐藏数据加载失败!");
    CosObj imgCos;
    PDEImageGetCosObj(pdeImage, &imgCos);
    CDocument cDocument;
    ASAtom Seal_K = ASAtomFromString("ADBE:Mytest");
    CosDictPut(imgCos, Seal_K, CosNewInteger((CosDoc)cDocument, false, ASFileGetEOF(hddatFile)));
    I'm not sure whether I have set the hide data in the picture success? there is not a return value to know it.
    when I use this code to get data:
    CosObj stream;
    PDEImageGetCosObj((PDEImage)pdeElement, &stream);
    CosObj nameCosObj = CosDictGet(stream, Seal_K);
    the return value (nameCosObj is (0,0)).  I dont know why? and if I get the cosObj, How to get my hide data?
    Where I do wrong?
    thanks for Leonard !

  • How to add the Social Network share buttons (that work!) to share INDIVIDUAL post from the same page

    How to add the Social Network share buttons like Facebook and Twitter (that work!) to share INDIVIDUAL post on the same web address in Dreamweaver? I have searched on google and youtube tutorials, but most of them are "Blogger" and  "Wordpress" users.. The only Dreamweaver tutorial is the one that share THE WHOLE page (not individual post on a page). There is Facebook Integration on Dreamweaver (29 Dollar download from Adobe) but so far no review about it so  I don't want to spend money for something I don't know.  There is also Sharrre but they say there is a bug. It seems like everyone out there use these buttons but I start to get crazy since it seems easy but it's actually complicated to get the html or js script to paste on! Any help would be very much appreciated. Thanks.

    Cool,
    Here is my test site. I have made at least 3 articles (Fashion, Sport, and Art) with thumbnail images on it.
    http://andiratih.free.fr/
    On each article I add the share buttons from "AddThis".
    However, if I want to ONLY share the "Sport article" on Facebook by clicking share-->Facebook, then the feed is scrambling my images on other articles too and it eventually just share the whole page instead of one particular article.
    It is now fine since I only build 3 articles, but as you see when the page is getting long with at least 20 articles it will not be ok.
    I don't want to make individual page for each article either, since they are just short article each, and I intend to use this page as a welcome page to update the latest activity every half year.
    I have seen many bloggers or pages where even if they have many article on ONE page, they are able to share one particular article to Facebook, and when we click (via Facebook) it will redirect us to exactly that particular article even if the article is on the bottom of the page, and not just bring me to the top of the page only and have to search by myself by scrolling to the bottom of the page to see the article.
    Infact, Bloggers and Wordpress seems to have the tool for that so that we can just click and add. I am not a Blogger or Wordpress users but I saw youtube tutorials on that.
    I have heard about Dreamweaver behavior, and does this will help to achieve what I want (sorry I'm a beginner)? I also heard about meta tags but I don't know how and where to get them to paste to my html source code.
    I have found several sites where the person show how to do this, but when I tried it didn't work, and in fact some other discussions about this are never solved.
    Thanks for your input.

Maybe you are looking for

  • Disk Repair Errors

    I generally run the Disk Repair Utility when I install new software due to some software not abiding by the rules. When I did this a few days ago I came up with the following errors: Warning: SUID file "System/Library/CoreServices/Finder.app/Contents

  • Unable to collect 3.x data source replica in a request

    Hi, When i tried to collect a data source replica(3.x data source) in a request it is throwing an error. But when i tried to collect a data source replica which is migrated to 7.0 it is aloowing me to do. Please suggest me a solution.I want some data

  • Using select inside in ()

    Hi I am trying to write an sql as below... select row1, row2,row3 from table1 where row4 in (select row5,row6 from table2 where row7='string'); I know the above syntax is wrong. what i need is, i have to pass two values selected from another table as

  • How to uninstall sneak preview WAS 640 server

    How to uninstall WAS 640 sneak preview. I have uninstalled NWDS from control panel but it doesn't remove the server.So how to uninstall the server. Thanks Ananda

  • Will there be a AirPort Express-base station,  AirTunes that handles Video?

    Will there be a AirPort Express-basstation med AirTunes that handles Video?