What is the Best Way to Embed PDF in HTML?

In the past, I have included one page PDF's in web pages by placing the PDF in an iframes.  This worked fine until recently.  Starting with Safari 5.1.2 running under OS X 1.6.6, instead of opening within the original page, the PDF has opened in a new tab.  Is there some other way to embed the PDF so this doesn't happen?  Many thanks to all!

Move it into Flash and insert it as a progressive download.
http://blog.deconcept.com/2005/03/31/proper-flash-embedding-flashobject-best-practices
You can see it happen here on my site -
http://38.144.80.95/n_why-neapco.php
The central movie is a QT piece imported into Flash and then
saves as a
Flash video.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"wadup" <[email protected]> wrote in message
news:e3qvmq$8aj$[email protected]..
> dreamer thanks for the response....
>
> however i wasnt asking how to do it......
>
> i am asking what people think is the best method of
doing it.........
>
> should i embed a .mov file or should i import the move
into flash and then
> embed the flash file? should i embed a .wmv file?
>
> etc etc....
>

Similar Messages

  • What is the best way to post PDFs in iWeb?

    What is the best way to publish PDFs in iweb so that visitors can open the document, rint and/or save the document?

    jb ~ Welcome to the Support Communities. Rather than creating a new, almost identical thread to correct a typo, you can edit your post within 15 minutes:
    ...Each edit re-starts your 15 minute window for re-editing.

  • What is the best way to make PSD into HTML for emails

    What is the best way to make PSDs into HTML for emails? Will the new feature in Dreamweaver work for emails as well? I am using Cheetah mail, but I need to be able to turn PSDs into HTML so I can use it in Cheetah mail.  I have a general idea of how to do this, but I'm stumped about where to begin.

    Use PShop for images only.  Use DW to create your tables and inline CSS styles.
    Many e-mail clients do not show images for security reasons.  So graphics heavy e-mails are not an optimal way to communicate with your mailing list.
    See Alt-Web Articles, HTML E-mails and Newsletters
    Nancy O.

  • What's the best way of reading PDF books in iPhone? Please, name software.

    Hey all,
    I have a PC but a friend of mine has MAC, and we're both looking for best way to view pdf documents, but not through e-mail savings. Can you please help us, by naming any good APP or anything like that.
    Thanks for the answer,
    Mari!

    If the app store is not available then no one can recommend an app to read PDFs except as email attachments.

  • What is the BEST way to store pdf files.....

    Hi,
    I developed an application where we store the pdf docs in the database for every participant(i.e user) and participant can login to their account and view their documents. Now the new requirement is to store nearly 50millions+ of documents every year in that same database (we may keep 2yrs worth of documents). Is that okay?? Do you guys have any other better way of storing and retrieving_ the documents(like in the file-system)?, Is database only the best option???
    Thanks
    Edited by: balajiv on Sep 26, 2008 6:13 AM

    JoachimSauer wrote:
    That all depends on your database and how well it handles BLOBs. Storing everything in the DB has the huge advantage of not needing another piece of infrastructure to configure (such as a file server) and using a single technology for all your data access.Then again, storing the files in the DB has the huge disadvantage of the files not being accessible by other applications/users since it's stuck inside the database. It's also a gigantic waste of space as it bloats the database with data that cannot be indexed, related, etc, decreasing performance.

  • What is the best way to control pdf display in web browser - the preferences settings don't seem to work?

    I'm able to display the pdf in the browser - but it comes in too large and the first page is a single and the second pages are a double page - and i don't want it to scroll. there must be soem script to control this?

    Browser Troubleshooting
    "Can't view PDF on the web" 
    http://helpx.adobe.com/acrobat/kb/cant-view-pdf-web.html 
    "Display PDF in browser"
    http://helpx.adobe.com/acrobat/using/display-pdf-browser-acrobat-xi.html 
    Be well...

  • What is the best way to transfer PDF files from my MacBook Air to my iPad2?

    I have updated both OS and trying to find an easy way to transfer pdf files to my iPad.  I have PDF expert on my iPad.

    easy
    install acrobat reader on your Ipad
    attach Ipad to your MAC with USB cable
    open Applications ON you Ipad thru ITUNES
    there is a BOX for Acrobat,..........drag and drop PDF from your MAC into that box of Acrobat for Ipad

  • What is the best way to embed a multilanguage option on a wesite

    I need to embed an option for viewers to see the site in German or Spanish.
    Thanks for any recommendations.

    When a website is managed by a CMS (content management system), it becomes possible to manage multiple languages easily.  CMS clients can select the languages they want to use on their websites and  translators can work on the content, all while the web developer sits on the beach drinking margaritas.
    Illustrated below is the language selection menu my clients use to manage their language choices. I developed this system because my clients would come to me and say: "OK, now we want to add Russian" and I would then have to make lots of little changes throughout the website to accommodate it.
    This method does require relational database features so content for a new language can be added on-the-fly.
    In the chart above, "active" means that the language option is ready to be presented on the website. You can see that Russian has been selected but is not active, because translators are still working on the Russian material. Also note that the default language doesn't have to be English.
    I use url parameters rather than sessions to pass language selection from page to page so if someone shares a link to a page, it will appear in the expected language, like this:
    /topic/de/ufo_lands_in_berlin
    To sanitize the url variable, I match the parameter to a lookup:
    // WHAT LANGUAGE WILL BE USED
    $safe = array("en","vi","zh","de","fr","es","he","nl","ru","ja");
    if(in_array($lang_type[1], $safe)) {
    $lang_select= $lang_types[1];
    } else . . .
    The languages for site visitors to choose from are presented like this:
    //languages
    $sql=$dbh->prepare("SELECT language.language_id, language.language_name FROM language, language_client WHERE language.language_id = language_client.language_id  AND active=1");
    try{       
    $sql->execute();
    }catch(PDOException $e)
    {echo $e;}
    while($result = $sql->fetch(PDO::FETCH_ASSOC)){
    $i++;
    $language_id=$result['language_id'];
    $language_name=$result['language_name'];
    $sel= ($language_id == $language_selected)? "style = 'color:red;text-decoration:none;'" : "style = 'color:#333;text-decoration:none;' ;
    $language_block.="<a $sel href ='$domain/$language_id/$page_type2$pm2$pm3$pm4'>$language_name</a> | ";
    $language_block = ($i > 1 )? "<p style='text-align:right'>$group_block$language_block</p>" : NULL;
    Note that in the above, the language menu is displayed only when  two or more languages are active, so if, for some reason, the client decides they no longer wish to serve those who don't talk English good, the language menu will simply disappear.

  • What is the best way to put PDF file to iBook

    I've just got iPad 2 as my wedding's gift last two weeks which i have to admit that I'm very very into it.(I currently got iPhone 3G and computer knowledge)
    But the problems is my computer's hdd was full of data and I can't manage to delete some of them now so, it's impossible to put more books in my iTune and sync to iPad as it's a regular way.
    Any one have any suggestion to put the PDF directly to iPad without sync with iTune with the following conditions.
    1. No jailbreak
    2. No paid apps (Pay enough this month)
    3. The file size was quite large (Over 100 Mb each)
    4. Inter/Local net enabled
    Thanks in advance.

    Where are the PDFs ? If they are already on your computer then you can add them to iTunes without a separate copy being created in the iTunes media directory - if you make sure that 'Copy File To iTunes Media Folder When Adding To Library' is unticked on the Advanced tab in Edit  > Preferences then when you add them to iTunes it shouldn't create it's own copy, and should point to their current location instead. You should then be able to sync them as normal.
    If they are on websites then you should be able to open them in Safari and then use 'open in' to copy them to iBooks. You can also email them to yourself as attachments and then use 'open in' in the Mail app.
    There are also apps such as PDF Reader Lite iPad Edition (which is free) which you can use to transfer PDFs to your iPad via your wifi network (or via the file sharing section in iTunes). When the PDFs are then in that app on the iPad you can then copy them from there into iBooks.

  • What is the best way to convert PDF file to ADE?

    Hi
    I have a text PDF and I thought of converting it in to a ePub by extracting it as html and creating OPF, can this be done in any other way?
    thanks in advance

    There are a number of video apps available in the iTunes App Store that can easily handle those videos without any need for conversions. Do a search in the iTunes app on your computer for the file types and it will show video apps that can open those file types.
    If VLC 2 ever makes it to the iTunes App Store, be sure to grab it, it will be free, I use VLC 1.1 on my iPad for avi files, but it is no longer available in the iTunes App Store.

  • What is the best way to convert pdf to word ?

    yup , this is my only question ... how
    and what to use?

    Good day,
    Adobe's CreatePDF service includes the ability to save PDF files as Word (.docx) files.  Alternatively, we offer a service that performs this function exclusively called ExportPDF.
    Kind regards,
    David
    Acrobat Community Manager
    Adobe Systems

  • What is the best way to integrate a sound file (mp3) into a PDF?

    I saw that its possible to do it by Tools->Multimedia->Sound. This works fine on a computer but not a tablet. So what is the right way to embed a sound file into a PDF of maybe by Indesign? What i want is that people can easily open a document (PDF) on a tablet and when they click on a (play)icon that they hear a sound file. The best thing is that they can stop or put it on pause.

    I think this functionality relies on Flash, so it's not likely it's going
    to work on mobile devices, certainly not on iOS ones.

  • I am trying to make a pdf of a file and I need to get the file size to be no bigger than 10MB. What is the best way to do this

    I am trying to make a pdf of a file and I need to get the file size to be no bigger than 10MB. Even when I save it, the image quality at minimum the file size is 10.9 MB. What is the best way to do this

    @Barbara – What purpose is that PDF for? Print? Web?
    If web purpose, you could convert CMYK images to sRGB. That would reduce the file size as well.
    A final resort to bring down file size is:
    1. Print to PostScript
    2. Distill to PDF
    That would bring file size down even more. About 20%, depending on the images and other contents you are using, compared with the Acrobat Pro method. If you like you could send me a personal message, so we could exchange mail addresses. I could test for you. Just provide the highres PDF without any downsampling and transparency intact. Best provide a PDF/X-4.
    I will place the PDF in InDesign, print to PostScript, distill to PDF.
    Uwe

  • In Acrobat Professional 8, what is the best way to insert/combine multiple pdf's together in a large

    In Acrobat Professional 8, what is the best way to insert/combine multiple pdf's together in a large volume?
    We have 300 pdf reports and need to insert a 2 page cover page infront of each report. Not sure if Batch processing is best???
    Thanks for any tips.

    Probably each cover page is different too. I would probably just bite the bullet and do each individually. I would create the 2 cover pages in WORD or other word processor and print to cover.pdf. Then open a PDF and Pages>Insert Pages or the cover.pdf to the front of the open PDF and save as to the current PDF. Then repeat 299 times. Each time you would make the appropriate change to the DOC file and print a new cover.pdf file (you might want to turn off open in Acrobat for this processing in the printer properties to save time). Probably a good idea to keep a list of the files to check off what has been done (you can generate a list in DOS by Start>cmd, change the directory to your location [cd path], and do "dir >>list.txt". That will give you a list to use.). There may be an easier way, but by the time you get it figured out you might be done this way.

  • What's the best way to output a high quality ready to send to the printer PDF?

    I'm designing a photo book for a friend and we're having output issues. We're working with a professional printer but for some reason our prints keep coming out soft or pixelated. The images are 300 dpi and formatted correctly for an InDesign document so the issue is likely output.
    What's the best way to output the HIGHEST quality PDF you can out of InDesign? Everyone seems to have different answers.
    Thanks in advance!

    Check a couple things.
    One would be for broken links. If there are broken links then ID will use the preview image instead of the linked image.
    Another would be to select an image that prints poorly in the Links Panel and check the effective resolution. If it is below your stated 300 dpi then the image has been enlarged greater than 100%.
    Then just use the PDF/X-4 profile for your PDF.
    Mike

Maybe you are looking for

  • Using file manager to see files stored on the camera

    I use an EOS 350D. With Windows XP, uisn File Manager (Windows Explorer) I could see the camera as a drive, and could see the list of image files on the camera, select and download them etc. However, using windows 7 I do not see the camera as a drive

  • How to configure letter of credit in SAP

    hi all,    how to configure letter of credits (LOC) in sap. regards srinivas

  • Process chain stops - previous processes are green

    Hi All, We have a process chain that loads our master data each night.  It chain is mostly made up of infopackages (mostly full loads) and the change run for those objects.  We recently upgraded from 3.5 to BI7, SP16.  Since the upgrade, this chain,

  • Bounce messages not delivered in users mailbox

    When a Undelivered Mail message arrives in our Groupwise system it disappears somewhere in the dark, and is not delivered to the user. The only thing we notice is that the "From" field is empty but all other fields are filled with correct data. Answe

  • App store and safari icons missing

    Happened after a couple of apps didn't download properly. Restrictions are not on. Brand new phone... has had lock ups before requiring reboot and re-entering of start up info. Am suspecting a dud phone