Multi-page documents in Muse?

In Adobe Muse, do I have to hyperlink each page of a multi-page document, as with next and back buttons? I am ruling out scroll bars or pages connected to anchors as awkward for the end user. It would be good if I could simply paste into Muse multiple pages from InDesign, after these pages are saved as HTML, but I assume that doing so would only create a single long page. Comments/suggestions?
(I realize that alternatively, I could export everything from InDesign to Dreamweaver and do an ftp upload, but I am not skilled enough to program Dreamweaver with the kind of menu widgets which are a slam dunk in Muse. Otherwse, content which I have in InDesign is what I would like to display in Muse.)

Thank you. I appreciate the imput. But I must not have been clear. What if I want to place text from a 20 page Microsoft Word document into Muse? If I do not wish to use anchors or scroll bars, it would seem to me that I  have to create upwards of 20 pp. in Muse, manually cut and paste from Muse page to Muse page until all 20 Word pp. are placed (after awkwardly deciding how much fits on each page without crowding a footer), and then manually hyperlink each of these Muse pages. Correct?
I realize that a horizontal menu widget will allow me to group, say, 20 pp. as subordinate to a single page, but clicking on the associated menu will only bring me to the first page of this group. From there I would need manually created hyperlinks to the second, third, fourth page, and so on, would I not? My 20 pp. represent a continous article, and I would not want 20 menus for it. Obviously, I can chunk the 20 pp. with subheadings, but I am simply trying to ask if it is a fact that I will need hyperlinks for content that spans more than one page. I speak of 20 pp. in this example, but for a site that hopefully will have hundreds of often changing pages, the prospect of manually entering next and back buttons is daunting. In fact, I am not sure if Muse, however good for single pp., is a good fit for my project.

Similar Messages

  • How do I print selected pages from a multi page document

    How do I print selected pages from a multi page document?
    This question was solved.
    View Solution.

    Hi,
    It depends on the software you are using, what is it ? In general you can select a range or just a number of pages.
    Regards
    BH
    **Click the KUDOS thumb up on the left to say 'Thanks'**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.

  • I am having trouble printing multi-page documents on my Epson printer. 13" Macbook Pro, Adobe InDesign, Epson WF-7520

    I have a multi-page document and I want to print some of the pages, double-sided, to check my work. I can't seem to get the interface to recognise that I want to print a specific range of pages, so it will print just one page [no double-sided] or, I assume, it will print the WHOLE LOT [not good at this stage!] HEEEELLLLPPP!! 
    To explain, the dialogue box which opens when you hit Command+P has an option of 'Pages' or 'Range' but 'Range' gives you only two options:  All Pages or A4V. If I click the 'Printer' button I get another dialogue box with more options and from there I can choose to print 'All' or 'Pages' . . . and you change 1 to 1 to say, 1 to 3 for example. There is also an option to print double-sided. But nothing seems to be working and as soon as you finish with this second dialogue box it seems to forget every parameter you choose there. The summary page on the first dialogue box also seems suspiciously sketchy on details of what, exactly, it is about to print. By the way I have installed the latest driver set from Apple for this printer. Is anyone else having the same problem?

    Thank you so much Eric. I did what you said. I still had the same result, but finally [somehow] I ended up clicking on something which doesn't even look clickable - this is a tiny set of back- and forward arrows in the 'Range' option. Using this feature seems pretty hit-and-miss but I persevered and was able to get it to accept my parameters, i.e. "1 - 2" in range. You have to go into the second ["Printer"] dialogue box each and every time you print, to enable two-sided printing. At last I was able to get it to print pages 1 and 2 of my three-page document. Now maybe I can test-print pages from my 108 page tome! Fingers crossed . . .   

  • Acrobat Pro 9.0 printing to Canon ImageRunner 3220 prints only first page of multi-page documents?

    We just got the new CS4 and with the Acrobat Pro 9.0 install, we cannot seem to print multi-page documents.  Only the first page comes through, and the queue clears as though the document's been fully printed.
    We are running Windows XP Pro SP3, and the printer is the Canon ImageRunner irC3220.
    I do not want to use the "Print as Image" option, as I don't want to rasterize the file before sending it to the printer. It's an important document and it's imperative that it is printed at high quality.
    We had no problems printing with Acrobat 8.
    I've seen old posts regarding this issue, but couldn't find anything newer that might have had an updated solution.
    Thank you in advance!! any help would be sooo appreciated right now!

    Great! Many thanks
    Is there actually a kind of marketplace for Javascipts for Adobe Acrobat Pro somewhere? ...
    Really useful!

  • Save each page of a multi-page document as a separate file using spawned file names with javascript

    Hello
    We are currently changing our hard-copy personnel files and converting them to pdf files.  We have scanned the entire file into one multi-page document.
    I am wanting to save each page (or groups of pages) as separate files.
    In order to facilitate this, I have duplicated field names--such as FirstName, LastName, EmpNo on each page.  This information should be static for the entire file.
    However--I also need information that will change for each individual "page" or document--such as TypeOfDoc, Date, etc.  I have used the Spawn fields using the overlay method on each of the pages in the document.  Then I went in and filled in the information for each page of the document--such as TypeOfDoc, DateOfDoc.
    Now I want to save each page of the document as a separate file using the field names as the file name.
    I first created an action that would split all the pages into separate files and save them into a folder.
    Then I want to save each file as a specific file name based on the information in the fields.
    My problem is obtaining the name of the spawned field name.  The rest of the field names I am not having a problem with.
    This is what I have so far to name the file.
    // Get the field value
    var oPage = this.pageNum;
    var fn = getField("P" + oPage + ".TEMPLATE.DateOfDoc").valueAsString + getField("FirstName").valueAsString + "-" + getField("LastName").valueAsString;
    // Specify the folder
    var fldr = "/n/Personnel/ScannedDocuments/NAMEDPAAS/";
    // Determine the full path
    var fp = fldr + fn +".pdf";
    // Save the file
    myTrustedSpecialTaskFunc(this, fp);
    This code is also accompanied with folder level scripts.
    My problem is obtaining the name of the spawned fields using javascript.  Each document has several pages--so I would like to obtain the field name through script.
    I receive the following error.
    TypeError: getField("P" + oPage + ".TEMPLATE.DATE") is null
    I think this is due to the fact that I have extracted all the pages as individual files.
    If I were to do the above, but not extract the pages first--I do not know how to just save one page at a time.
    Please help.  This is a massive project, and if we have to save each file individually, it will take a lot of time.
    I am a beginner, so any assistance is appreciated.
    Thank you

    I am not understanding exactly where to put the curly brackets.  I have tried two different ways, and still get the same error.
    This is one way
    var oPage = this.pageNum;
    // Specify the folder
    var fldr = "/n/Personnel/ScannedDocuments/NAMEDPAAS/";
    // Determine the full path
    var fp = fldr + fn +".pdf";
    for (var i = 0; i < this.numPages; i++) 
    var fn = getField("P" + oPage + ".template.DateOfDoc").valueAsString + getField("FirstName").valueAsString + "-" + getField("LastName").valueAsString;
    {this.extractPages({  
    nStart: i,  
    cPath : fldr + fn + ".pdf"
    The other is this
    var oPage = this.pageNum;
    // Specify the folder
    var fldr = "/n/Personnel/ScannedDocuments/NAMEDPAAS/";
    // Determine the full path
    var fp = fldr + fn +".pdf";
    for (var i = 0; i < this.numPages; i++) 
    var fn = getField("P" + oPage + ".template.DateOfDoc").valueAsString + getField("FirstName").valueAsString + "-" + getField("LastName").valueAsString;
    this.extractPages({  
    nStart: i,  
    cPath : fldr + fn + ".pdf"
    Thank you for your help.

  • How to create a scrollable ( multi page) document using Acrobat 5.0 for Windows

    How do I create a multi page document that can be scrolled through? I want to place one drawing, which I have in pdf format, on each page of the document then send it via email so the recipient can open it and scroll through the pages to see all the drawings.

    Thank you so much for the prompt and succinct reply. I tried what you suggested and it worked very well. I am new to Acrobat and it is nice to know there are knowledgeable professionals that can grasp the essence of the problem and lead the way to the solution. Thanks!
    Best Regards,
    Aaron

  • Why can I not print all pages in a multi-page document?

    Why can I not print all pages in a multi-page document?

    We are using Adobe Acrobat Reader, version 11.0. It's on a relatively new laptop (Windows 8) and accessing the internet through Mozilla. The printer is an HP Officejet. When I open a multi-page Adobe document and try to print all pages, I only get 1-2, have to then say print page 3, then say print page 4, etc. We use Adobe on our other laptop and it prints all pages of all Adobe documents and we have never had a problem and he accesses documents on the internet also through Mozilla.

  • Export Multi-Page Document as Individual PDF's, Exporting Layers

    I'm not sure if there is a way to do this (I've scoured through the Export dialogues and I'm not sure if what I am looking for is counter-intuitively labelled or just doesn't exist). What I would like to do is take a multi-page document and export it so that each page is it's own PDF - from a single Export. I know that there are ways to split PDF's in Acrobat, but we are trying to streamline our workflow so I'd prefer if this can just be done in one step at the time of PDF creation.
    The other issue I am running into, when I export a PDF with layers, the elements on the layers are rearrangting themselves. For example: I have a 45 page document, with 3 layers (Dieline, Background, Artwork). When I export the PDF, all of the layers are in the proper order, but only Page 1 has the creative elements on the proper layers (Pages 2-45 take all artwork and move it up to the top-most layer).

    You’ll need a script. What version of InDesign? Is it fully patched? How are you viewing the PDF?
    Bob

  • A multi-page document physical size bigger.

    I have a multi-page document (662 pages to be exact).  In Word it is formatted into a 4x6 (inch) format.  The physical dimensions of the book at 6 x 9.  So of course I have a lot of extra space on the page that I want to get rid ot.  I don't want to increase the size of the font because it will change the formatting, pagination, etc.  My brilliant idea is that I convert this to a pdf and then resize the pdf.  It will have the effect of stretching the print, making it easier to see and fit on the page, but it won't increase the font size, which will change all the formatting.  Is there any way to do this for the entire document?  I don't want to do it page by page for all 662 pages. 

    Certainly not with Adobe Reader, but possibly with Acrobat.  It would be best if you asked in the Acrobat forum.

  • My C4180 will only print first page of multi page document.

    Hi, My C4180 printer will only print the first page of a multi page document - any ideas as to why?

    Hello @highsal51 ,
    Thank you for taking the time to post on the HP Forums today! Hope you enjoy the experience.
    So that I can get you the answer you are looking for, please answer the following questions.
    1. What Operating System are you using? Press the link to find out, in case you don't know already. http://whatsmyos.com/
    2. How is your printer connected to your computer?
    3. What software are you using to print?
    4. Do you experience this through printing with all programs?
    Look forward to hearing back from you. Have a great day!
    I worked for HP.

  • Multi-page document with multi Master-pages

    Using InDesign CS6 (Mac): 
    I'm to start a 50-page document that's single-pages (not spreads) for 3-hole-punch book. I'm using 2 Master pages, which are alternating between the front and back of each sheet. So page 1 is master A, page 2 is B, 3-A, 4-B, etc.
    So that I don't have to manually add alternate pages to the Pages window — is there an elegant way I could tell InDesign at the "New Document" level to create those 50 alternating pages?
    Thanks!

    Thanks, Jdanek, but after posting my question here I realized a better place to post it is in the InDesign forum, and I already got the answer there, which is to create a facing-page document with one master page, that has a larger margin at the binding side. The pages will be read as spreads, even if this a 3-hole-punch book. I then will save it as a single-page PDF for production.
    You can see the thread at Re: Create multi-page document with multi Master-pages

  • PDF Multi Pages Document

    Hello, I'd like to know if with Bridge I can compose PDF multi pages documents assembling pages of different sizes... I was able to do that with Photoshop older versions... but I cant' manage the situation with Bridge because in Output window I can set the page dimension but the program automatically sets all the pages at the same size... Is there any way out???
    Thanks.
    Le

    This got moved to Bridge, see the Output module.

  • How do I rotate a single page in a multi-page document?

    I recently upgraded to Adobe Acrobat X version 10.0.0. Where is the option to rotate a single page in a multi-page document?
    Also, I often receive faxes as PDF's that are upside down. How do I rotate a page so that it remains rotated the next time that I open it?
    Thanks.

    GeorgeRudd wrote:
    It works (it saves the rotation) when I use the rotation method under the tools menu. Thanks.
    Yes.
    Tools > Pages > Rotate permanently rotates the pages (if you save the file afterward of course) and View>Rotate view only changes the view for the current session.

  • Printing multi-page documents

    I have a 25-page .psd document that I want to print in CS6 in one hit, but I only seem able to print it by opening each page individually and processing it separately. What can this be done?

    Photoshop for whatever reason does not print multi-page documents as you would see in PDFs. Acrobat does not accept psd files for conversion into PDFs,
    So I nicked the following from here: How do I create multi-page PDFs from PSDs on Photoshop CS5? - Quora
    Its not a one step process but kind of a workaround really -
    STEP1 Export all your files as JPEG or PNG.
    If there are lot of files you can do it in one go using File > Scripts > Load Files into Stack then create a new PSD with all the files you want exported. Then go File > Scripts > Export Layers to Files and export it as one of the above image formats
    STEP 2 As mac user - Go to the folder where all the above files are exported and Cmd Open it all together in "Preview" application, then click Print, but instead of printing save as PDF. There is an option to save as PDF in the popup you get before printing. So JOB DONE
    As a PC user - I am not 100% if they have inbuilt utility of saving as PDF while printing but I remember I used a third party software (which was free) I think it was called bullzip PDF print or something like that. And then you can do the same in Windows as well like mac. You can either load all your JPEG or PNG files in windows image viewer or I think Word should definitely work. Like you will need to copy all your images in there and then "Save as PDF"

  • When creating a multi page document, some of my thumbnails become linked and can't be separated for editing. What am I doing wrong and how do I correct this?

    When creating a multi page document, some of my thumbnails become linked and therefore impossible to rearrange. What am I doing wrong and how do I correct this?

    The pages in sections stick together because the text flows between the pages.
    Insert a section break to isolate pages between sections.
    Now this all works in Pages '09, unfortunately Pages 5 doesn't let you.
    Peter

Maybe you are looking for

  • How can I insert the RSCRM_BAPI into Process chain?

    Dear all: Now I Use RSCRM_BAPI(RSCRM_REPORT) ,excute a query , Get the result in a table, I use this table as a datasource,and then next steps,upload data. all of this runs well. But  I want inset this process into a process chain. now I don't know h

  • Enforce filtering from EO Cache

    I have a entity based view object which shows Data in a adf read only table. On page load some Data will be shown and will be part of the EO Cache. When a change happens on database side, i dont want this to reflect in the Cache. It should be possibl

  • LMS 3.2 DFM and PPP interface traps

    Hello, I have a problems with traps from PPP links. Traps are corectly send from device, LMS server receive traps, but these traps are not displayed in DFM. I'm using SNMPv2c (SNMPv3 doesn't work properly). Information about link down is corectly dip

  • MacBook shuts down after low battery warning

    Hi, up until recently my macbook's battery has been working just fine. but then lately i noticed that a few minutes after it displays the low battery warning it shuts down by itself. before, when the low battery warning would display i could still co

  • Please help my 12 year old, customer support was no use.

    We cannot download apps directly to Ipod via WiFi but CAN download them directly to computer. Ipod states "account disabled." We have verified that all the account info on the computer ITune page is the exact same as on the Ipod for purchasing purpos