Creating an interactive archive with downloads

I'm interested in creating an archiving project which uses InDesign CS5 to create an interactive document including video, audio, and downloadable PDFs. Is it possible to create such an archive that allows users to browse directories and have the ability to copy files to their local drive?

If you mean that you would like to have one file, like a visual ZIP-file, with several other files
embedded into it... I don´t think InDesign is a way to go...
May be you should check PDF-portfolio for that purpose....

Similar Messages

  • How to create an interactive magazine with CS3

    I am trying to create an interactive magazine with CS3 and don't know how to do it. First of all, is this possible with CS3 or do I need to upgrade to CS4? And if it is possible, can anyone tell me a step by step plan to follow? Or is there a book or download I can get for more information which is recommended?
    Thanks

    Google is your friend: Interactive Newsletters
    You can make digital newsletters for PDF in CS3 or 4. To make a digital newsletter that can be viewed in a browser (export to swf) you need CS4. Big advantage of swf is much smaller file size than PDF.
    One free bit of advice: design your file horizontally (11 w x 8.5h) since that works best for reading a PDF or swf online.

  • How do I create/host interactive articles with embedded video for use in browsers?

    I'm seeking a little guidance -
    How do I create/host interactive articles with embedded video for use in browsers?
    The aim is to bring together video, design, images and writing in one place. A little like Born Presents, but very accessible and user friendly.
    I'm happy using InDesign but want to create interactive articles / magazines that have embeded video files as required. I've been looking at .SWF files but I've come unstuck.
    I want people to view the articles via a blog, ideally with them opening in a lightbox style viewer. It's not intended for tablet viewing and people should be able to view and interact with the files with little effort on their part.
    I think I know how to create these files within InDesign, but I'm not so hot on web design and I'm not sure how to host these online. Does this start coming into the realms of Flash?
    If anyone could point in the right direction I'd really appreciate it - Thank you in advance.

    PDF is one thing. Folios for DPS is another. There is a little bit of
    overlap but not much.
    The interactivity in the folio overlays panel is for DPS only.

  • How to create an interactive magazine with user comments and voting system?

    I need to create an interactive magazine that includes user comments and votes (like/unlike).
    I know that I can create digital swf magazines in indesign and that user comments and like/unlike buttons can be entered with coding in adobe dreamweaver.
    I need this for a school project and I do not know if it's possible or if there is another way of doing it in dreamweaver...
    Thanks

    The easiest way to do like/unlike voting is use facebook´s like/unlike button generator at http://developers.facebook.com/docs/reference/plugins/like/ to create a code. You can set up the appearance and some features of your button and you will end up having an iFrame code. You can add that code into your html-wrapper file with some regular texteditor like wordPad....
    Here´s one example, it´s an InDesign SWF finalized with eDocker but I don´t see any reason why you couldn´t use the SWF exported directly from InDesign as well. If you want to put it to some specific location, you have to wrap it up into a div and set up some css for that div, but it´s not a rocket science either.....=)
    http://www.prepress.fi/keva

  • I have to create an interactive form with java. How can i do it?

    I have to create an application that allows to create an interactive form like the option "Create Form" on google docs!
    What do you suggest me to create it?
    1) I think that I can use a DB to store the structure and then I can restore it with particular queries.
    Thank you for answers, I hope you can help me
    Best Regards,
    Silvio

    Savio85 wrote:
    Ah ok, I'm sorry.
    I also can use swing.
    For "requirements", I wrote an example to show a sample of "Interactive Form" (Google Doc -> Create Form).
    I'm sorry for my bad requirement,
    Best Regard
    Silvio
    Edited by: Savio85 on Jun 10, 2010 4:07 AMSo you expect people to sign up to Google so that they can see Google docs? Why should anyone make any effort to help you if you make this little effort to create any sort of problem description?
    Anyway, if you want to create an "interactive form" using Swing, there is only one thing to do: learn the Swing API. Lucky for you there is a great online resource for that:
    [the swing tutorial|http://java.sun.com/docs/books/tutorial/uiswing/]
    Good luck!

  • Creating an interactive PDF with a shopping cart style interface...?

    Just asked this question over in the InDesign forum but figured this might be a good place as well:
    I need to create an interactive PDF in which the user can check a box next to a thumbnail image and a sum total at the bottom of the page is updated.  All or none or just some of the boxes would need to be checked.
    Is this possible with Acrobat Pro?

    Okay, figuring this out.  Doesn't look like I need javascripting.  But wow, getting into Acrobat to create stuff for the first time is actually painful.
    For instance, no matter if I use the Add Text Box tool at the top menu....or the Add or Edit Text Box tool in the Content menu, neither one will actually give me that much needed calculate field.  ????  wow.
    I actually grabbed a PDF example off the net showing exactly what I want to do, but the problem is that when I cut and paste the sum text box, it comes in at a 90deg angle to what I need, lol.  Now I'm trying to figure out exactly how to ROTATE a simple text box.
    *exasperated*
    EDIT:  Ahh, rotation dialog in the properties.  Grr.  It's odd that the cursor doesn't also offer a 'rotate' option.....like InDesign and every other Adobe product. heh.

  • Attempting to create an interactive map with flash - getting errors with my actionscript

    I'm currently having an issue creating a set of buttons that are supposed to turn individual layers on and off.  The layers I have are: fishing spots, facilities, trails, map elements, an aerial photo, and parking lots.  It is giving error #s 1119 and 1120.  Could anyone explain possible reasons I'm getting these errors. 
    It might be worth mentioning that I used a tutorial made with Flash CS4, but I'm writing the code in CS5.  Here is the exact code I'm using:
    spots._visible = false;
    facilities._visible = false;
    parking._visible = false;
    elements._visible = true;
    aerial._visible = false;
    trails._visible = false;
    displayedSpots._visible = false;
    displayedFacs._visible = false;
    displayedTrails._visible = false;
    displayedEles._visible = true;
    displayedAerial._visible = false;
    displayedPark._visible = false;
    fsbtn.onPress = function() {
              if (spots._visible == false) {
                        spots._visible = true;
                        displayedSpots._visible = true;
              } else {
                        spots._visible = false;
                        displayedSpots._visible = false;
    facbtn.onPress = function() {
              if (facilities._visible == false) {
                        facilities._visible = true;
                        displayedFacs._visible = true;
              } else {
                        facilities._visible = false;
                        displayedFacs._visible = false;
    trbtn.onPress = function() {
              if (trails._visible == false) {
                        trails._visible = true;
                        displayedTrails._visible = true;
              } else {
                        trails._visible = false;
                        displayedTrails._visible = false;
    mebtn.onPress = function() {
              if (elements._visible == false) {
                        elements._visible = true;
                        displayedEles._visible = true;
              } else {
                        elements._visible = false;
                        displayedEles._visible = false;
    aebtn.onPress = function() {
              if (aerial._visible == false) {
                        aerial._visible = true;
                        displayedAerial._visible = true;
              } else {
                        aerial._visible = false;
                        displayedAerial._visible = false;
    pbtn.onPress = function() {
              if (parking._visible == false) {
                        parking._visible = true;
                        displayedPark._visible = true;
              } else {
                        parking._visible = false;
                        displayedPark._visible = false;

    Only thing i see is that you are using == instead of = , Fixed Example...
    fsbtn.onPress = function() {
              if (spots._visible = false) {
                        spots._visible = true;
                        displayedSpots._visible = true;
              } else {
                        spots._visible = false;
                        displayedSpots._visible = false;
    == Is used for equality.
    = Is used for setting a value or in this case checking a value.

  • Search Help on Adobe Interactive Form with Web Dynpro ABAP

    Hi All,
    I have created Adobe Interactive Form with ZCI type and XML based interface type using Webdynpro ABAP.
    I placed a text field USER_NAME on the form ( data element is linked to search help USER_COMP ).
    Added Native WD UI element 'Value Help' to form to search for users and changed script
    *var fieldName = "INSERT_NAME_HERE*"; to var fieldName = "USER_NAME";
    The problem is that when I click on the value help button, nothing happens.
    Is any more additional steps required ?
    Thanks
    Karu

    Hello
    Check this
    F4 Value Help on Adobe Interactive Form with Web Dynpro ABAP
    Thanks
    Anirudh

  • Indesign CS6 - interactive pdf with the hidden image can't be print out

    Hi all,
    I am creating a interactive pdf with "Hidden until triggered" function when roll over to apper and roll out to disapper and also selected a "printable" function (Button and Forms/ PDF Options/ printable).
    The image can be print out when opened in very begining, but after triggering those hide image... those images just cant be print out!
    Is it any way to print out the hiden image after triggered?
    Thanks

    Pressumably an Indesign question.
    Try posting in the Indesign forum
    http://forums.adobe.com/community/indesign/indesign_general

  • What is the best way to create a interactive CD presentation

    I have the adobe cloud and all it's software, I am creating an interactive CD that is to be a presentation of my work. What would be the best way to go about creating a interactive CD with still's and video also some paragraph of bio and resume's.

    Macromedia Director http://www.adobe.com/products/director.html for mixed content
    -I do NOT know if a Macromedia disc will play a "movie" in a set top box at a TV

  • Creating an interactive CV: mouse over / roll over pop ups, embedded documents and videos

    Hi everyone,
    I am pretty new to Adobe Acrobat Pro and new to this forum (1st post here!). Greetings from Spain... and apologies for grammar mistakes and misleading explanations (in advance). I have been checking this forum and googling quite a bit, but I do not get to many conclusions (maybe I sleep few due to our baby!).
    I want to create an interactive CV with the following characteristics:
    1) CV in 1 page in a PDF document (no problem here!)
    2) Hyperlinks in the text which open embedded files (pdf of others) hidden to the viewer but which are in the pdf document. Possible? (I want the recruiter to receive just one file). Even better if they could be open in another window (doubt it).
              How could it be done? I try add documents and they are attached at the end, so the original pdf gets to have more pages, all viewable.
    3) Furthermore, mouse over / roll over pop ups which show you a preview of the file you may open clicking the hyperlink, for a quick view of the content.
              I think that this may be done, but using other programs, like InDesign. I just try to add a document, but it's sort of a link to a document in my computer. I may add pdf, pps files.
    4) Even more, would it be possible to embed a video which would open in a new window? If not, I tried to add a link to youtube and there was a warning as "this program tries to open a window, if you trust the owner... " (similar safety message) and the very last thing I want the recruiter to have to decide whether to decide to watch it or not.
    I know its a questions in its very first stages, but the big point is to know if/what it is possible to do, so that I search in the right direction.
    If you have any idea or advice (even if not related to PDF pro, of course), just please let me know.
    Thanks a lot in advance. I hope this thread may help others.
    Cheers,
    tebanseeker

    Hi Dave,
    Thanks a lot for the input.
    (3) Right, I could not find either a way using just Acrobat Pro (I'm using XI). Sad thing that you confirm it... But it looks like you may do it using other programs on the PDF, but I don't know to use them. You may take a look at this:
    https://www.youtube.com/watch?v=HEyJuT8SSME (popup rollovers using Illustrator)
    https://www.youtube.com/watch?v=YOVRMVdZbVE (popup rollovers using InDesign)
    (4) I think that embedding would make the file to big, so I may opt for the hyperlink to youtube option, even if I deeply dislike that message, although youtube is a reliable source for the viewer.
    Any other input is very welcome. I am pretty illiterate in the field!
    Have a nice weekend,
    tebanseeker

  • Problems with download

    I create a download link. It's works in the same way as in Denes Kubicek application.
    It works correctly. Then I create another one report with download link. In the second report I have a problem. When I clicked on it, I see Error page "Not found...."
    Everything is the same. I have no idea how to repair it. Does anybody have an idea what it might be?
    Regards,
    Kostya!

    The error you described happens when there is no execute granted to public on your
    procedure. Check that. Also create a public synonym. Eventually, you are missing
    the schema name in front of your procedure in the URL.The error must be somwhere
    in there.
    Denes Kubicek

  • Interactive Report with Null Columns

    I've got a user who wants to export an interactive report, and he needs certain columns to appear on the export for him to fill the data in later (this is an intermediate step, while we work on getting all the data he needs in to the database). I've created the report query, and there are a handful of null/empty columns (to preserve the correct order for the export). When I try to add this query to APEX in an interactive report, I get a "ORA-00001: unique constraint (APEX_040000.WWV_FLOW_WORKSHEET_COLUMNS_UK2) violated" error.
    Googling around shows me that this happens because of similarly-named columns, and the solution is to provide aliases to all columns. My report has aliases on all columns, but I still cannot create an interactive report. I've tried changing the null columns to empty strings, as well as enclosing the aliases in double-quotes, but nothing works. I can however use my original query to create a standard report, but due to the export requirement, this isn't ideal.
    I was able to create the interactive report with one null column, and then edited the report source to add in the others. This had to be done one at a time, since trying to add multiple null columns at the same time gives the same error again. Unfortunately, when I try and run the page, I get an "ORA-20001: get_dbms_sql_cursor error ORA-00918: column ambiguously defined" error.
    My original query:
    select customer.customer_name as customer,
           project.name as project_name,       
           trunc(project.estimated_end_dt) as due_date,
           project_status.project_status_desc as status,
           null as revenue,
           project.baseline_effort as baseline_hours,
           null as projected_cost,
           null as est_gain_loss,
           project.actual_hours as actual_hours,
           project.estimated_hours as projected_hours,
           null as projected_cost,
           null as projected_gain_loss,
           null as roi      
        from project,
             customer
      where customer.customer_id = project.customer_id
      and project.inactive_ind = 0
      and project.customer_id is not null
      and project.estimated_end_dt >= :DTP_P50_STARTDT
      and project.estimated_end_dt <= :DTP_P50_ENDDT
    order by customer.customer_name,
             project.estimated_end_dt;             Can someone tell me a way to create an interactive report with multiple null columns?

    Hi shimmoril,
    The problem is likely that you have two columns aliased as "projected_cost" (7th column and 11th column).
    Hope this helps,
    John
    If you find this information useful, please mark the post "helpful" or "correct" so that others may benefit as well.*

  • F4 Value Help on Adobe Interactive Form with Web Dynpro ABAP

    Hello,
    I have created an Interactive Form with ZCI type.
    I placed a text field MATNR on the form.
    Then I placed a Native WD UI element 'Value Help' as mentioned in the below link: http://help.sap.com/saphelp_nw70/helpdata/EN/42/fb2fe500553ee4e10000000a1553f7/frameset.htm
    This form was then embeded into Web Dynpro ABAP view.
    The problem is that when I click on the F4 button, nothing happens.
    Is anything else needs to be done?
    Thanks
    Sagar

    Hi Amol,
    After binding the Context variable in the view, and in the Adobe Layout Designer from the Library go to WebDynpro Native Tab and drag and drop the Value Help and for this automatically JavaScript is being generated, go that script and edit the line
    Var fieldname = "yourfieldname";
    Note: Don't forget to link the context attribute to search help. ie. in the context properties of the attributes select the input help mode as dictionary search help and specify the name of the search help present in data dictionary.
    And now go to Utilities and click on u201CInsert Web Dynpro Scriptu201D.
    Also make sure that you specify the Layout as ZCI Layout in the Propertioes of the Adobe Form.
    Ragards,
    Amol Patil.

  • Using Interactive Forms with Adobe 6.0

    Hi
    We have created an Interactive Form with Web Dynpro and Lifecycle 7.1. The PDF can be viewed with Adobe 6.0, but an error pops up, saying: "This PDF requires a newer version of Adobe Reader". Is it possible to switch off this warning?
    Thank you very much for your help.
    Best Regards
    Bettina Hepp

    Hi
    Ok, it says in SAP Note 834573 that you cannot switch off this message.
    Thanks for reading my post.
    Best Regards
    Bettina Hepp

Maybe you are looking for

  • System No Longer Requires Password to Wake from Sleep

    Greetings all! My Mini has recently stopped asking me to supply a password when waking it from sleep. It goes into sleep with no problem, complete with the pulsing white LED. But when I wake the system (using either the keyboard or the power button),

  • Share Monitor: Job stuck in queue "Canceling..."

    After chosing to export a video, I check the status in Share Monitor and there's a job stuck in the queue in "Canceling..." status that's keeping the new export from starting. How do I clear the queue?

  • How to  restrict the output of 0VENDOR by excluding the # value in rows?

    We generated a query whose InfoProvider is 0Vendor. Run the query, find the last row shows # as Vendor number and the description of it is "Not Assigned".  Then we go to this query design screen, pick 0Vendor in the rows frame, right click and select

  • Receiver AAE IDoc adapter

    Hi All, I have a doubt regarding receiver AAE Idoc adapter. There are three options available in java IDoc adapter namely Default, Manual and From NWA. In Default option, we just need to configure a RFC Destination in NWA but in From NWA option, we n

  • GRUB Troubles

    TL;DR I got a disk I can boot when I connect it to one machine but on the other I get to a screen showing "GRUB " and it freezes there. GRUB is configured with a --fs-uuid. Not sure where to go from here. Any suggestions? grub.cfg file: http://sprung