Multiple HTML5 Content on One Page Issue...

I have created a couple really basic animated graphs for a DPS article in Adobe Edge Animate but am having issues with them once they are previewed or pushed to the cloud.  Both graphs are created and published exactly the same way from Edge and placed in the InDesign document the exact same way.  Both are published with web settings and the frame that I am creating is set as a web object and pointed towards the appropriate folder and .html file.
If either is added and previewed individually, both work just fine.  However, if both are placed on the same page, only one will work properly.  To more specific, both will load their backgrounds but neither only ones animated feature (a line graph and a bar graph) will work.  It varies which one will load and work properly so trouble shooting has been difficult.
Has anyone run into this issue and/or no a way to solve it?
Thanks.

That is what I was doing.  Both frames are set as web content overlays and link back to their separate folders & respective index.html files. 
If I turn off auto play I can tap on both and get them to work individually.  i.e. if I tap graph 1, it works but then tapping graph 2 does nothing.  If I reload the page and try the opposite, graph 2 tapped first, it loads but now graph 1 does not.
I attempted to load them as .oam packages however I can't place them in InDesign 5.5.  Is there a known issue with that as well?
Thanks again.

Similar Messages

  • Multiple HTML5 Videos on one page

    How can I get more than one HTML5 video on one page?  When I tried to place 4 3-sec videos with autoplay and looping, only the first one plays.
      <video height="300" weight="300" controls preload="none" autoplay loop>
    <source src="video1.m4v" type= "video/mp4"/>
      <video height="300" weight="300" controls preload="none" autoplay loop>
    <source src="video2.m4v" type= "video/mp4"/>
      <video height="300" weight="300" controls preload="none" autoplay loop>
    <source src="video3.m4v" type= "video/mp4"/>
      <video height="300" weight="300" controls preload="none" autoplay loop>
    <source src="video4.m4v" type= "video/mp4"/>
    Thank you

    Hi
    Unfortunately you cannot, as most browsers use an "exclusive OR" code for playing videos, which means that only one will play at a time. The reason for this is that if they did not do so you could have multiple soundtracks playing at the same time.
    There are 3rd party players that will do this though, (sorry cannot recommend any specific player, but try a search).
    PZ

  • How do you stream multiple website content on one page?

    I am trying to create a keynote to display 2 or 3 web sites (example: weather, traffic) for a lobby entrance/welcome center. I then want to use the ipad and use mirrioring to push the keynote to an apple tv and a 65" TV.

    Give each an individual id like:
    <SCRIPT language="JavaScript1.2">
    function openwindow1()
    window.open("score_popup/wbc_slalom_running_order.html",
    "mywindow","location=1,status=1,scrollbars=1,width=600,height=525");
    .......... etc.
    and then:
    <p><a href="javascript: openwindow1()">WBC Invitational Slalom Event Running Order</a></p>
    View actual working page here:
    http://www.worldbarefootcenter.com/
    scroll to bottom of page to see pop-up links. View source code for complete details:
    Best wishes,
    Adninjastrator

  • Can i have multiple applications open on one page

    can i have multiple applications open on one page?

    JShimazaki wrote:
    Mac OS X Mountain Lion supports multitasking like cbs20 mentioned. Just like MS Windows just press alt+tab to switch to whatever applications you have open.
    Actually it isn't Alt-Tab on OS X, it's Command-Tab to use the Application Switcher.
    Also, Control+ left/right arrow key will switch spaces if that's what's desired.

  • How can I make multiple popup links on one page?

    I was wondering if anyone had a simple code that will allow me to have multiple popup links on one page? I have no idea what to do.  Any help would be greatly appreciated.

    Give each an individual id like:
    <SCRIPT language="JavaScript1.2">
    function openwindow1()
    window.open("score_popup/wbc_slalom_running_order.html",
    "mywindow","location=1,status=1,scrollbars=1,width=600,height=525");
    .......... etc.
    and then:
    <p><a href="javascript: openwindow1()">WBC Invitational Slalom Event Running Order</a></p>
    View actual working page here:
    http://www.worldbarefootcenter.com/
    scroll to bottom of page to see pop-up links. View source code for complete details:
    Best wishes,
    Adninjastrator

  • Need to Copy a subform along with content from one page to another page

    Hi All,
    I am new to Adobe Live Cycle .
    I am facing a particular problem in one scenario.
    I have a growing list of item i.e the number of Items are uncertain. I have put all these item in a sub form.
    Now I need a copy of this sub form from the First page to the 2nd Page.
    Basically , I want to copy a Subform along with the content from one page to another.
    Can anybody please help me.

    In source project open Tempo List (the one that is a list editor). Select all tempo changes and "copy them (command+c)
    close project
    Open destination project, open Tempo List delete all information and paste (command+V). Remember that Logic should be stopped at the exact position where the first tempo event happens. This is ussually 1.1.1.1, but check it in the source before closing it.
    hope this helps.
    regards

  • Multiple ALV reports on one page

    How to display multiple ALV reports on one page.

    this done by this code....
    *& Report  ZPR_02
    REPORT  ZPR_02.
    TYPE-POOLS: SLIS.
    Tables Declaration.
    TABLES: MARA.
    *Internal tables and data declaration.
    DATA: BEGIN OF IT_MARA OCCURS 0,
            MATNR LIKE MARA-MATNR,
            MTART LIKE MARA-MTART,
            MBRSH LIKE MARA-MBRSH,
          END OF IT_MARA,
          BEGIN OF IT_MARC OCCURS 0,
            MATNR LIKE MARC-MATNR,
            WERKS LIKE MARC-WERKS,
            EKGRP LIKE MARC-EKGRP,
          END OF IT_MARC,
          BEGIN OF IT_MARD OCCURS 0,
            MATNR LIKE MARD-MATNR,
            WERKS LIKE MARD-WERKS,
            LGORT LIKE MARD-LGORT,
            LABST LIKE MARD-LABST,
          END OF IT_MARD.
    DATA: WA_FIELD_CAT TYPE SLIS_FIELDCAT_ALV,
          IT_FIELD_CAT1 TYPE SLIS_T_FIELDCAT_ALV,
          IT_FIELD_CAT2 TYPE SLIS_T_FIELDCAT_ALV,
          IT_FIELD_CAT3 TYPE SLIS_T_FIELDCAT_ALV,
          WA_KEYINFO TYPE SLIS_KEYINFO_ALV,
          IT_LAYOUT TYPE SLIS_LAYOUT_ALV,
          IT_EVENTS1    TYPE SLIS_T_EVENT WITH HEADER LINE,
          IT_EVENTS2    TYPE SLIS_T_EVENT WITH HEADER LINE,
          IT_EVENTS3    TYPE SLIS_T_EVENT WITH HEADER LINE.
    *Selection Screen.
    SELECT-OPTIONS: S_MATNR FOR MARA-MATNR.
    *Start Of selection.
    START-OF-SELECTION.
    *Selecting the data.
      PERFORM SELECT_DATA.
    *Populating the field catelogue.
      PERFORM BUILD_FIELD_CAT.
    *Displaying the final output.
      PERFORM DISPLY_OUTPUT.
    *&      Form  Select_data
          Selecting the data.
    FORM SELECT_DATA .
      SELECT MATNR
             MTART
             MBRSH FROM MARA
           INTO TABLE IT_MARA
           WHERE MATNR IN S_MATNR.
      IF NOT IT_MARA[] IS INITIAL.
        SELECT MATNR
               WERKS
               EKGRP FROM MARC
             INTO TABLE IT_MARC
             FOR ALL ENTRIES IN IT_MARA
             WHERE MATNR EQ IT_MARA-MATNR.
      ENDIF.
      IF NOT IT_MARC[] IS INITIAL.
        SELECT MATNR
               WERKS
               LGORT
               LABST FROM MARD
             INTO TABLE IT_MARD
             FOR ALL ENTRIES IN IT_MARC
             WHERE MATNR = IT_MARC-MATNR
             AND   WERKS = IT_MARC-WERKS.
      ENDIF.
    ENDFORM.                    " Select_data
    *&      Form  Build_field_cat
         Populating the field catelogue.
    FORM BUILD_FIELD_CAT .
      DEFINE M_FIELDCAT1.
        WA_FIELD_CAT-TABNAME = &1.
        WA_FIELD_CAT-FIELDNAME = &2.
        WA_FIELD_CAT-SELTEXT_L = &3.
        APPEND WA_FIELD_CAT TO IT_FIELD_CAT1.
      END-OF-DEFINITION.
      DEFINE M_FIELDCAT2.
        WA_FIELD_CAT-TABNAME = &1.
        WA_FIELD_CAT-FIELDNAME = &2.
        WA_FIELD_CAT-SELTEXT_L = &3.
        APPEND WA_FIELD_CAT TO IT_FIELD_CAT2.
      END-OF-DEFINITION.
      DEFINE M_FIELDCAT3.
        WA_FIELD_CAT-TABNAME = &1.
        WA_FIELD_CAT-FIELDNAME = &2.
        WA_FIELD_CAT-SELTEXT_L = &3.
        APPEND WA_FIELD_CAT TO IT_FIELD_CAT3.
      END-OF-DEFINITION.
      M_FIELDCAT1 'MARA' 'MATNR' 'Material No'.
      M_FIELDCAT1 'MARA' 'MTART' 'Material type'.
      M_FIELDCAT1 'MARA' 'MBRSH' 'Industry Sector'.
      M_FIELDCAT2 'MARC' 'MATNR' 'Material No'.
      M_FIELDCAT2 'MARC' 'WERKS' 'Plant'.
      M_FIELDCAT2 'MARC' 'EKGRP' 'Purchasing Group'.
      M_FIELDCAT3 'MARD' 'MATNR' 'Material No'.
      M_FIELDCAT3 'MARD' 'WERKS' 'Plant'.
      M_FIELDCAT3 'MARD' 'LGORT' 'Storage Loc'.
      M_FIELDCAT3 'MARD' 'LABST' 'Valued Stock'.
      IT_EVENTS1-NAME  =  'TOP_OF_PAGE'.
      IT_EVENTS1-FORM  =  'F_TOP_OF_PAGE_ONE'.
      APPEND IT_EVENTS1.
      CLEAR IT_EVENTS1.
      IT_EVENTS2-NAME  =  'TOP_OF_PAGE'.
      IT_EVENTS2-FORM  =  'F_TOP_OF_PAGE_TWO'.
      APPEND IT_EVENTS2.
      CLEAR IT_EVENTS2.
      IT_EVENTS3-NAME  =  'TOP_OF_PAGE'.
      IT_EVENTS3-FORM  =  'F_TOP_OF_PAGE_THREE'.
      APPEND IT_EVENTS3.
      CLEAR IT_EVENTS3.
    ENDFORM.                    " Build_field_cat
    *&      Form  disply_output
         Displaying the final output.
    FORM DISPLY_OUTPUT .
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'
        EXPORTING
          I_CALLBACK_PROGRAM = SY-REPID.
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT                        = IT_LAYOUT
          IT_FIELDCAT                      = IT_FIELD_CAT1[]
          I_TABNAME                        = 'IT_MARA'
          IT_EVENTS                        = IT_EVENTS1[]
      IT_SORT                          = IT_SORT
      I_TEXT                           = ' '
        TABLES
          T_OUTTAB                         = IT_MARA     .
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT                        = IT_LAYOUT
          IT_FIELDCAT                      = IT_FIELD_CAT2[]
          I_TABNAME                        = 'IT_MARC'
          IT_EVENTS                        = IT_EVENTS2[]
      IT_SORT                          = IT_SORT
      I_TEXT                           = ' '
        TABLES
          T_OUTTAB                         = IT_MARC    .
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'
        EXPORTING
          IS_LAYOUT                        = IT_LAYOUT
          IT_FIELDCAT                      = IT_FIELD_CAT3[]
          I_TABNAME                        = 'IT_MARD'
          IT_EVENTS                        = IT_EVENTS3[]
      IT_SORT                          = IT_SORT
      I_TEXT                           = ' '
        TABLES
          T_OUTTAB                         = IT_MARD    .
      CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'
    EXPORTING
      I_INTERFACE_CHECK             = ' '
      IS_PRINT                      = IS_PRINT
      I_SCREEN_START_COLUMN         = 0
      I_SCREEN_START_LINE           = 0
      I_SCREEN_END_COLUMN           = 0
      I_SCREEN_END_LINE             = 0
    IMPORTING
      E_EXIT_CAUSED_BY_CALLER       = E_EXIT_CAUSED_BY_CALLER
      ES_EXIT_CAUSED_BY_USER        = ES_EXIT_CAUSED_BY_USER
    EXCEPTIONS
      PROGRAM_ERROR                 = 1
      OTHERS                        = 2
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    " disply_output
    *&      Form  top_of_page_one
          text
    FORM F_TOP_OF_PAGE_ONE.
      WRITE: / 'Header details (MARA)'.
    ENDFORM.                    "top_of_page_one
    *&      Form  top_of_page_one
          text
    FORM F_TOP_OF_PAGE_TWO.
      WRITE: / 'Item details (MARC)'.
    ENDFORM.                    "top_of_page_one
    *&      Form  top_of_page_one
          text
    FORM F_TOP_OF_PAGE_THREE.
      WRITE: / 'Item details (MARD)'.
    ENDFORM.                    "top_of_page_one
    regards,
    venkat.

  • How do I create multiple TOC's (Tables of Contents) in one Pages document?

    I'd like to have multiple TOC's (Tables of Contents) in one document. This is useful for me because I'd like to have a TOC for the regular chapters, then a TOC for the procedures, then a TOC for the tables in the document (it's a tech manual that I am writing). How can I do this? Thanks for any help you can render, and have a nice day!

    fruhulda wrote:
    If you haven't used a paragraph style it can't create a TOC but you get the blue box with the message.
    Paragraph used.
    It has nothing to do if there is one main TOC or several smaller TOC to do.
    It isn't true that you can only have one TOC in a document. Use styles for your titles and headings. I do and it works fine without section breaks.
    You also need to tick which tile and heading you want in the TOCs in the Document Inspector > TOC
    Did that.
    Thanks to Yvan's quoting from the User Guide, I see where it says each TOC only indexes the material up until the next TOC. Since I had them follow each other, that is why they had no content.
    Still it defeats the objective of indexing different material throughout the document if all you get is what is between the TOCs.
    Peter

  • Merge print multiple image files on one page

    Hello,
       A Windows 7 end user seeks for a technical support from me. She tries to merge print multiple image files (JPEG) by using the following steps :-
    1) highlight more than 1 files
    2) [Right-click] then Choose [Print]
    3) she could print the multiple images on ONE page successfully when she initially bought/used this Win7 computer , but recently (these 2 months) she got the error : pop up a few dialogue windows saying "Insufficient memory"
    4) I helped her to close all other applications software and found no high CPU/memory processes and also asked for help from hardware manufacturer and got NO virtual memory and physical memory full error by running a utility tool provided.
    The hardware config :-
    - Windows 7 Prof Service Pack 1 64 bit
    - 4GB memory
    - i5 Intel CPU
    Anyone can help me to fix the issues for my end user ?
    Thanks in advance
    Regards,
    Bruce

    Hi Bruce,
    In addition to above suggestions, this issue can also be caused by corrupted user registry key.
    Please test the issue in new user accout.
    If the issue doesn't happen under new user profile, I suggest you repair corrupted user profile:
    Fix corrupted user profile
    http://windows.microsoft.com/en-us/windows/fix-corrupted-user-profile
    Kate Li
    TechNet Community Support

  • Managing Multiple TOC's on one page

    Hi,
    I have a book with sections, and for my main table of contents page I have set up TOC's for each section using InDesign CS5's table of contents feature.
    My issue is, I would like the TOC text boxes to automatically reflow and resize when I "update" table of contents. Right now, after  I "update" them, I have to go in and manually space them apart. The text boxes are stacked, so if the top section updates with more content, the text box goes into the one below it.
    I hope that's a decent explination.
    Not sure if there actually is a way to do this? But since I have about 8 sections in my book, It would save me some much-needed time
    Thanks!

    nikicreates wrote:
    Hi,
    I have a book with sections, and for my main table of contents page I have set up TOC's for each section using InDesign CS5's table of contents feature.
    My issue is, I would like the TOC text boxes to automatically reflow and resize when I "update" table of contents. Right now, after  I "update" them, I have to go in and manually space them apart. The text boxes are stacked, so if the top section updates with more content, the text box goes into the one below it.
    I hope that's a decent explination.
    Not sure if there actually is a way to do this? But since I have about 8 sections in my book, It would save me some much-needed time
    Thanks!
    It would be helpful to see a screen shot. Perhaps the commercial AutoPage utility in the Blatner Suite of InDesign plug-ins, described at http://www.dtptools.com/help.asp?id=108, would work for you. Also, perhaps one of Harbs' commercial tools at in-tools.com would serve. And, finally, the free AutoFit InDesign CS4 plugin might do it; http://www.typefi.com/index.php/typefi-autofit. No information on a CS5 version. The first two have free trials.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices

  • How do I print multiple (4) photos on one page with a border around each?

    How do I print multiple photos on one page with a border around each? I've gone the contact sheet route and adjusted the number of columns but there's only outer margins and very little white space between the photos down the middle of the page.

    Ok, now I feel stupid! I always thought I was printing 6 x 4 but now I realise I can't have done!!
    The photos that I used to print are approx. 5.2" x 4" (i.e. 4 fitted nicely on a page & I had to cut the boarder off).
    I guess I just need to play with different sizes under the 'custom' option in order to get the biggest possible picture!
    Thanks for the help

  • View multiple pdf files in one page

    Hi experts!
    I have to build a mobile website that will show multiple pdf files (not just the links) on one page for comparison. I've found out that using iFrames or embedded object is not an option since scrolling is not available in either of them. What do you suggest I use for this purpose?
    Any help is appreciated.
    Thanks in advance.

    The application Preview.
    Preview Help.
    Save combined PDFs
    Open the PDFs you want to combine.
    In each open PDF, choose View > Thumbnails to display the pages of the PDF in the sidebar.
    Drag the thumbnails you want to add (Command-click to select noncontiguous pages) to the thumbnail sidebar in the other PDF.You can add pages to the end of the document or between pages in a document. Drag thumbnails to reorder them. You can also add a PDF file before or after another PDF document.
    Choose File > Export to save a new PDF containing all of the combined pages, or choose File > Save to replace the original version of the destination PDF with the version containing the combined pages.

  • Can I merge from Numbers, multiple small cards on one page?

    I am trying to set up a page that has business card size text fields, about 8 on a page. I would like to merge from Numbers into these cards but when I do the merge, the first page is all the same card content, then the next page is duplicates of all the next record info. Is it not possible for each "card" I am making to merge different information on one page? Maybe I am trying to do the impossible.

    Richard,
    Yvan's script as well as the other Tips may give you sufficient options. However, since you were a bit vague about the content, but gave the impression that it is not standard business card content, you may be be interested in a specific option that I favor. I use a transfer table that arranges the Numbers content by card position before you merge. I'll give you a simple example that you can alter to fit your circumstance.
    Let's say we have a single column, Column A, of data in Table 1 that we want to merge 8 cards to the page in a Pages document. We'll assume that you have a Header Row and that the data begins in Row 2.
    Your Transfer Table will need eight columns (A through H), one for each card position, and a Header Row. The Transfer Table will have titles in the Header Row cells of Card1 through Card8. These titles are the ones you will use when you set up the merge in Pages.
    You will Fill the body cells of the Transfer Table with the formula:
    =IFERROR(INDIRECT(ADDRESS((ROW()-2)*8COLUMN()1, 1, , , "Table 1")), "")
    In the Sheets Pane, drag the Transfer Table to the top of the list. You can't merge from a table unless it is first on the list for the sheet. Here's a graphic...
    Save the document and you're ready to merge from it. In your Pages document, you will call for the appropriate column title in the Transfer Table in each of your eight card positions.
    Jerry
    Message was edited by: Jerrold Green1

  • Data Merge specific cells, multiple (unlimited) entries on one page

    HELP!
    I've used the mail merge in the past with publisher to create labels and the like....in it on a single page I would code
    <<address>> and in another part of the page <<next entry, address>> <<next entry, address>>
    and so on and it would fill every area with the next entry in the excel file ad nauseum till complete. It was a simple way to extract specific continuous bits of information and apply it to a document on a single page.
    I haven't been able to find anything similiar with Data Merge but there must be a way since InDesign has been more powerful than publisher in every way so far. Here is a sample of what I am creating
    https://www.dropbox.com/s/7ewkwgmerz89ggf/Sample.pdf
    Basically I have a book where every year my boss has been hand retyping the ENTIRE calendar not just into what you see in the sample above but through out an entire day planner also. I'd like to streamline the process but everytime I try and place a data point it says (for example) <<Day of Month>> and page 1 will ONLY take data point 1. I'm aware of the multiple selections per page function but it wants to lay it out in a grid that doesn't match my document and I have 365 data points to plug in to 2014 and another 365 for page 2 (2015)
    Is there anyway to tell indesign I want <<Day of month, row 2, column 2>> in one box and <<Day of Month, row 3, column 2>> ....<<Day of Month, row 366, column 2>> All on one page so that I can place them precisely through out the document? This would allow me to make a simple adjustment to the CSV each year and then fill in the remainder with nothing more than a click.
    Any help would be appreciated because I'd LOVE to save 20 hours of work every year and huge numbers of mistakes. This has to be something SUPER simple but no tutorial I've found covers it, they all mention the multiple entries per sheet option and that does NOTHING like what I want. I'd have to create 12 documents, data merge them, and then place them into the primary document and that is terrible workflow.  Through out the final document not everything is in a comfortable grid like this so it would be even less useful.
    We use CS3 in case that is relevant for the topic.
    Thanks,
    Tinker

    I'm looking now but not finding anything promising. The calendar scripts all were for formatting very specific calander shapes and I need to be able (on one page) to have 7 entries in a non symmetrical layout (5 works days, then the weekends one over the other). Do you have any recommendations for scripts you like?
    Maybe I'll create a document the holds the information a few date entires per page then place that into the master cropped and moved around as needed. I'm still looking through the exchange for something that makes the tool a little more powerful for me. I'll post it here if I find something that does what I need as that doesn't sound like a very efficient workflow.

  • Address book field, multiple address merge on one page.

    OK, after spending half a day tying to resolve this issue, I have given up. I do need to do this one way or another. Appreciate any help at hand.
    I need to create a list of company info from address book into pages. problem is if I 'insert address book field' say 'company name' twice and do a merge, Pages drag the same name in twice and not the next address merge. but does put it on the next page, no good need at least 5 different address on one page.
    Guy

    You are responsible of the spent time.
    Pages never claims that it is designed to fill pages with different labels.
    It claims that it is able to merge address in documents which is definitely not the same thing.
    The Apple's tool dedicated to label printing is AddressBook.
    The one dedicated to merge from AddressBook is Pages.
    Details available in PDF User Guide page 217
    and in the Help's page entitled: "Using Address Book Fields" (I got it searching for "merge").
    Yvan KOENIG (from FRANCE jeudi 14 août 2008 15:09:28)

Maybe you are looking for