EPub export question -- How to bottom-align a page

Hi,
In a printed book, the text on the copyright page is often
bottom-aligned, so the last line of the copyright info sits on the
bottom margin of the page.
I'm wondering if there's any simple way of doing that when exporting to
ePub. The copryight text is short enough so that it will usually all fit
on the viewer's screen (unless the screen is very small), and I'm
looking for a way to have that text bottom-aligned.
And ideas?
Thanks,
Ariel

Right -- that's what I've been doing -- just a separate page. But it
bothers me a little, sitting there at the top like that. Maybe it's just
because I'm so familiar with it at the bottom of a page in a regular book.
I wonder if there's some way of doing something with a "div" element?

Similar Messages

  • A year later...same question: How can I get a Pages document embedded ???

    How can I get a Pages document embedded into an email? (so that the recipient sees it immediately and does NOT have to open a PDF). Although I know a PDF is universal and would allow anyone (mac or not) to open, read and see my business newsletter, I want it to be instantaneous for viewing. So, which leads me to a question I've kicked around for a year now on this discussion board. How do I turn a Pages doc into html for email purposes? If there isn't a way with Pages, How about with Word (the newest version) for Mac? Someone has to know this art, I receive emails like this all the time, probably from Apple! ha ha .
    Please help!
    -dnorheim

    dnorheim wrote:
    How can I get a Pages document embedded into an email? (so that the recipient sees it immediately and does NOT have to open a PDF).
    we can't !
    Although I know a PDF is universal and would allow anyone (mac or not) to open, read and see my business newsletter, I want it to be instantaneous for viewing.
    In Mail.app, single page PDF are directly readable so you may try to
    print your page #1 in a PDF
    then
    print your page #2 in a PDF
    and so on.
    So, which leads me to a question I've kicked around for a year now on this discussion board. How do I turn a Pages doc into html for email purposes?
    we can't !
    As Apple removed the export to html feature, I assume that it's no to reintroduce it one day
    Yvan KOENIG (VALLAURIS, France) lundi 7 septembre 2009 17:50:32

  • How to center align preview page

    When I preview my webpage (which I am creating in fireworks) in the browser it is to the left of the page, How do I center align it?? Thank you in advance for your help

    You shouldn't be creating your total web page in Fireworks, only the graphics  :-)
    You should slice up the images you need and then export those and use them in your HTML or via the stylesheet as background images.  A web page that is full of images will only slow down the loading plus not be indexed by search engines...
    To then center the page, you need to use CSS to to align the page in the center of the browser window regardless of window size.  This again, is done when you move over to the HTML editor, not in FWs.
    A good tutorial that may help the transition from taking a FWs comp to HTML
    http://www.adobe.com/devnet/dreamweaver/articles/dw_fw_css_pt1.html
    Nadia
    Adobe® Community Expert : Dreamweaver
    Unique CSS Templates |Tutorials |SEO Articles
    http://www.DreamweaverResources.com
    Book: Ultimate CSS Reference
    http://www.sitepoint.com/launch/005dfd4/3/133
    http://twitter.com/nadiap

  • Broadcast Export question - How to export 1920x180 to 720x576 anamorphic?

    Hi there,
    Ive tried searching for this, but no luck. Im fairly new at this, so that could be a lack of know what to search for...
    Ive been tasked with getting a TVC out for broadcast, and the one I had made has come back from the TV Station (bounced back).
    Heres my question:
    I have a workflow in Premiere, which is 1920x1080 Video, 25fps, Square Pixels 1.0. All other media imported is also the same (PSD's etc.). My sequnce & export settings for this timeline are below...
    The broadcast company here has requested that the video follow their specs:
    "Resolution 720 x 576 with particular attention to the display resolution which needs to be 768 x 576 - the output should be flagged for 4:3 anamorphic. 24fps" – This is all they have given me in terms of specs.
    Here are the sequence and export settings I have used so far...
    Now the problem Im having is that the video A) comes out as 702x576 (NOT 720x576 as specified...) and B) shows up as 20-21 fps NOT 24 fps as specified....
    Can anyone help me get to the bottom of this? Or suggest better settings/workflow...? Is there some critical point im doing wrong?
    I would really love to not only finish this task, but also understand the why and learn how to do this properly, so any information or tutorials or other posts you know of would be most appreciated!
    Many thanks,
    JP

    Also, when I inspect the exported video it shows different information in Quicktime.app to Premiere...? (screenshot below...)
    You'll notice the frame rate and size show as Ive specified them in Premiere, but Quicktime shows something different... Can anyone explain that?

  • EPub exporting question...

    Can I apply a background to all pages of an eBook when exporting to ePub?*

    You can certainly change the global background of HTML content using CSS, and even have it react to the device orientation. I experimented with that a while ago: http://www.jongware.com/ipad/index.html (which is just a single sample page -- rotate your iPad to see the background color change, as that's all that page does).
    But the OP is not talking about webpages. I would have to check, but it's imaginable that iBooks simply *ignores* background color settings. Even if it doesn't, that just means the OP's ePub will look "great" ("closer to its printed version" to be precise) on iBooks with its highly advanced CSS support. Other e-reading software and hardware may lag behind and do Not So Well.

  • Quick question: How to get the scrolled page number using af:table

    Hi,
    When using range paging on scrolled table, how to get the current scrolled page number(1,2,3...), for example when moving the table vertical scroll bar forward or backward, is there any method in ViewObjectImpl class that I can use to get such information? I have seen the method scrollToRangePage(int i), but when scrolled ("Fetching data..."), it doesn't not get into this method. So it is wrong usage for this method, right?
    Thanks

    Didn't you just ask that question in this thread?: How to catch the page number when using scroll table in ADF 11g?
    A bit of patience might be in order.
    CM.

  • Basic question: how to submit a dynamic page form to a procedure?

    I am trying to submit a form created in a dynamic page to a procedure in portal. For some reason the procedure doesn't seem to execute. Can anyone give me a hint?
    Here is my code for the form:
    <html>
    <body>
    <oracle>
    begin
    htp.formOpen('portal_public.submit', 'post');
    htp.formText('textbox');
    htp.formSubmit('submit', 'submit');
    htp.formClose;
    end;
    </body>
    </html>
    I have created a procedure called "submit" in the portal_public schema...
    Create or Replace PROCEDURE PORTAL_PUBLIC.SUBMIT
    p_textbox_string IN VARCHAR2 DEFAULT 'default')
    as
    begin
    htp.print(p_textbox_string);
    exception
    when others then
    null;
    end;
    When I submit the form I get a generic IE "cannot be found" page.
    Can someone tell me what I'm doing wrong, I'm kinda new to this.

    I am trying to do the same type of thing. I want to have multiple rows on a form with checkboxes and use a plsql stored procedure to process the rows that are checked. The thing I have found is that is works with form method of 'GET'. I really need to use 'POST' though since I can have many rows to pass. GET attaches the passed variables to the URL. So, in your example, the actual URL would look something like portal_public.submit?p_textbox_string=whateveryoutypedin. Try changing your formOpen to use 'get' and hopefully you'll see what I mean.
    Anyone know anything about the difference on GET vs POST please let us know. Thanks!

  • HT4168 Pages export to ePub - unwanted question marks

    When I export a Pages doc to ePub, a question mark appears at the end of every line. How can I avoid that? If I take the Export to ePub doc from Apple and export it, no problem. If I add some lines of my own at the end and then re-export, question marks appear at the end of the lines I have added. It's driving me nuts! Any advice would be appreciated.

    How did you buy Pages?
    Which MacOs system do you have on your computer?
    What is the exact message you get?
    Which version of Pages do you have?
    Please answer all questions and if you don't know how ask again.

  • Cross Tab export : Excel Data Only - Row headings are *bottom* aligned?

    Hi All,
    Having a problem with Crystal 11 / BOXI.
    I have a Cross Tab working fine that has four Row groupings (labels on the left).
    In Preview mode, it looks as expected. Row #1 label appears on line 1. Row #1 label shows blank on line 2,3,4 etc until it is ready to change.
    The organization of the Row group is further made clear by a nice box that spans multiple rows. The Row label appears at the TOP of this box as you might expect.
    In Excel-Data Only format, there is a problem. (I saved, scheduled, and ran on BO XI Enterprise CMC console.) The Excel file shows the Row 1 labels without any box (that's OK as it is "data only") however the text is bottom aligned. So the first label does not appear until the final row of the grouping.
    Same thing is happening with Row 2, 3 groupings, they are all bottom aligned.
    It's confusing for the users who would expect the Row grouping labels to be all top-aligned.
    I have searched the forums and support site and read all technotes. I also tried several things including:
    Format Field for Row#1 Name, choosing Left/Right/Center horizontal alignment (where is the same for vertical??)
    Within BO Enterprise, try combinations of options under Excel - Data Only : export formatting, maintain relative object position, maintain column alignment, use options saved with report, etc.
    Any ideas? Is there a way to force a top-alignment programmatically, for Excel Data Only output?
    Help appreciated !
    Rob McCauley
    Cognex
    Natick, MA 01760 USA

    I found the answer to this question with help from SAP Support.
    In the Cross-Tab Expert, Customize Style tab, click "Column Totals on Top".
    Then, the Excel Data Only report will show the row titles Top-aligned for the row group.

  • How to make the basic graphics frame VerticalJustification as bottom align?

    Hi:
    In indesigne CS3 script, how to make the basic graphics frame
    VerticalJustification as bottom align?
    Thanks in advance.

    Vertical justification applies to text frames, not to graphic frames.
    Peter

  • InDesign CS5.5 EPUB export not showing cover image in Adobe Digital Editions

    I have a document that I am trying to ensure is reflecting the cover image prior to uploading to several EPUB sites like google and Barnes and Noble. I am using Adobe Digital Editions, Calibre, Firefox (EPUBReader) to do the troubleshooting on the document. Calibre shows the cover image Adobe Digital Editions (ADE) does not. Are their any known problems with ADE not reflecting the cover image that I need to be aware of before I continue working on this?
    The ADE help says the following:
    "Once the items are in your library, there are two ways to view the content of any bookshelf. You can view thumbnails of your items. The thumbnail is the cover page of the item (or just the first page if it doesn't have a cover page). In this view, you see the set of thumbnails and some information about each item (author, title). You can also sort the order in which the items are shown by author, title, date created, number of pages, and so forth."
    Here is basic informaiton. I have a cover page in my export to EPUB but ADE will only show the first page. Again Calibre shows the cover page.
    CS 5.5
    The project is a book (indb) composed of multiple documents (indd)
    Exporting as book as an EPUB
    On general tab I am "Use existing image"
    I am rasterizing the first image in Indesign via the "Object - Object export options" but I am not selecting that option when on the general tab of the Export to EPUB options. I am chosing a file from my disk. I thought that maybe the file name was too long but I changed the image to "cover.jpg" and reexported it but it still does not work.
    Here are the contents of the content.opf file with all the pointers. I have updated the file as I believe you can tell with guides, creation date, etc....
    It passes the SIGIL check.
    The image name is Democracy in Business Dust Jacket 300dpi.jpg. It is 300 dpi and 1650 x 2550. I could also cut in the one that I did for cover.jpg but it only replaces the file name.
    <?xml version="1.0" encoding="UTF-8" standalone="yes"?>
    <package xmlns="http://www.idpf.org/2007/opf" xmlns:dc="http://purl.org/dc/elements/1.1/" unique-identifier="bookid" version="2.0">
        <metadata>
            <meta name="generator" content="Adobe InDesign"/>
            <meta name="cover" content="Democracy-20in-20Business-20Dust-20Jacket-20300dpi.jpg"/>
            <dc:title>Thomas J. Watson Sr. Essays on Leadership - Democracy in Business</dc:title>
            <dc:creator>Peter E. Greulich</dc:creator>
            <dc:subject>Thomas J. Watson</dc:subject>
            <dc:subject>Tom Watson</dc:subject>
            <dc:subject>Tom Watson Sr.</dc:subject>
            <dc:subject>Leadership</dc:subject>
            <dc:subject>Democracy</dc:subject>
            <dc:subject>Democracy in Business</dc:subject>
            <dc:description></dc:description>
            <dc:publisher>MBI Concepts Corporation</dc:publisher>
            <dc:date>2012-01-01</dc:date>
            <dc:source></dc:source>
            <dc:relation></dc:relation>
            <dc:coverage></dc:coverage>
            <dc:rights>2012 All rights reserved</dc:rights>
            <dc:language>en-US</dc:language>
            <dc:identifier id="bookid">ISBN:9780983373438</dc:identifier>
        </metadata>
        <manifest>
            <item id="ncx" href="toc.ncx" media-type="application/x-dtbncx+xml"/>
            <item id="css" href="template.css" media-type="text/css"/>
            <item id="Book-Cover" href="Book%20Cover.html" media-type="application/xhtml+xml"/>
            <item id="Authors-Works" href="Authors%20Works.html" media-type="application/xhtml+xml"/>
            <item id="Title-Page" href="Title%20Page.html" media-type="application/xhtml+xml"/>
            <item id="Copyright-Page" href="Copyright%20Page.html" media-type="application/xhtml+xml"/>
            <item id="Dedication-Page" href="Dedication%20Page.html" media-type="application/xhtml+xml"/>
            <item id="Table-of-Contents" href="Table%20of%20Contents.html" media-type="application/xhtml+xml"/>
            <item id="Watson-Quote" href="Watson%20Quote.html" media-type="application/xhtml+xml"/>
            <item id="An-IBM-Caretakers-Perspective" href="An%20IBM%20Caretakers%20Perspective.html" media-type="application/xhtml+xml"/>
            <item id="A-Historical-Perspective" href="A%20Historical%20Perspective.html" media-type="application/xhtml+xml"/>
            <item id="Thomas-J-Watson-Sr" href="Thomas%20J%20Watson%20Sr.html" media-type="application/xhtml+xml"/>
            <item id="About-Thomas-J-Watson-Sr" href="About%20Thomas%20J%20Watson%20Sr.html" media-type="application/xhtml+xml"/>
            <item id="About-the-Author" href="About%20the%20Author.html" media-type="application/xhtml+xml"/>
            <item id="Back-Cover" href="Back%20Cover.html" media-type="application/xhtml+xml"/>
            <item id="x1641.jpg" href="images/1641.jpg" media-type="image/jpeg"/>
            <item id="x3604.jpg" href="images/3604.jpg" media-type="image/jpeg"/>
            <item id="x5456.jpg" href="images/5456.jpg" media-type="image/jpeg"/>
            <item id="x5873.jpg" href="images/5873.jpg" media-type="image/jpeg"/>
            <item id="x5875.jpg" href="images/5875.jpg" media-type="image/jpeg"/>
            <item id="x6466.jpg" href="images/6466.jpg" media-type="image/jpeg"/>
            <item id="x6920.jpg" href="images/6920.jpg" media-type="image/jpeg"/>
            <item id="x7617.jpg" href="images/7617.jpg" media-type="image/jpeg"/>
            <item id="x7725.jpg" href="images/7725.jpg" media-type="image/jpeg"/>
            <item id="B-20--20Family-20Spirit-20--2035_fmt.jpeg" href="images/B%20-%20Family%20Spirit%20-%2035_fmt.jpeg" media-type="image/jpeg"/>
            <item id="C-20--20-Depression-20Indust_fmt.jpeg" href="images/C%20-%20-Depression%20Indust_fmt.jpeg" media-type="image/jpeg"/>
            <item id="Democracy-20in-20Business-20Dust-20Jacket-20300dpi.jpg" href="images/Democracy%20in%20Business%20Dust%20Jacket%20300dpi.jpg" media-type="image/jpeg"/>
            <item id="P-20--20Look-20into-20the-20futu_fmt.jpeg" href="images/P%20-%20Look%20into%20the%20futu_fmt.jpeg" media-type="image/jpeg"/>
            <item id="ZV-20--20Titles-20mean-20nothi_fmt.jpeg" href="images/ZV%20-%20Titles%20mean%20nothi_fmt.jpeg" media-type="image/jpeg"/>
            <item id="ZZZZZ-20--20IBMers-20Study-20a_fmt.jpeg" href="images/ZZZZZ%20-%20IBMers%20Study%20a_fmt.jpeg" media-type="image/jpeg"/>
            <item id="ZZZZZ-20--20Keep-20class-20spi_fmt.jpeg" href="images/ZZZZZ%20-%20Keep%20class%20spi_fmt.jpeg" media-type="image/jpeg"/>
        </manifest>
        <spine toc="ncx">
            <itemref idref="Book-Cover"/>
            <itemref idref="Authors-Works"/>
            <itemref idref="Title-Page"/>
            <itemref idref="Copyright-Page"/>
            <itemref idref="Dedication-Page"/>
            <itemref idref="Table-of-Contents"/>
            <itemref idref="Watson-Quote"/>
            <itemref idref="An-IBM-Caretakers-Perspective"/>
            <itemref idref="A-Historical-Perspective"/>
            <itemref idref="Thomas-J-Watson-Sr"/>
            <itemref idref="About-Thomas-J-Watson-Sr"/>
            <itemref idref="About-the-Author"/>
            <itemref idref="Back-Cover"/>
        </spine>
        <guide>
            <reference type="cover" title="Dust Cover" href="images/Democracy%20in%20Business%20Dust%20Jacket%20300dpi.jpg"/>
            <reference type="title-page" title="Title Page" href="Title%20Page.html"/>
            <reference type="toc" title="Table of Contents" href="Table%20of%20Contents.html"/>
            <reference type="copyright-page" title="Copyright Page" href="Copyright%20Page.html"/>
            <reference type="dedication" title="Dedication Page" href="Dedication%20Page.html"/>
            <reference type="text" title="First Page of Text" href="Watson%20Quote.html"/>
        </guide>
    </package>
    I have also been trying to get this cover image to display on PC for NOOK but it appears that everyone is having hits problem too. I have followed some trouble shooting guides and renamed the jpg image, Democracy in Business Dust Jacket 300dpi.jpg to cover.jpg but that doesn't seem to work either for NOOK.
    Any help you can give would be appreciated. I am new to InDesign (I know you probably hate hearing that, but I have gotten so close to being done overcoming all the new user hurdles). I think this is my last one before uploading to the appropriate sites - PS. I got the cover page to show up on the Kindle but not Adobe's own product.
    Thanks
    Peter E. Greulich

    ebookjunkie, I have just used InDesign to publish two very short "books" (.99 cent variety) and started this thread with the first question. Look to Bob for the expert advice. This is neophyte advice from someone moving from publishing a full book using Word to EPUB/Kindle and now using InDesign to publish to EPUB/Kindle.
    First ADE is useless. I say this out of frustration of trying to use it to troubleshoot problems and it has so many problems in displaying an EPUB that you spend a lot of time troubleshooting ADE issues rather than EPUB problems. The problems are not limited to but won't display a cover page properly, text wrapping is iffy, Drop caps a problem, bringing over supported items like drop caps, all small caps, etc.... are also issues as best I can tell. Humble opinion is delete off your desktop. I use the following to troubleshoot my EPUB's/Kindle books on my Windows platform; Calibre, Barnes and Noble's Nook for PC and iPhone iTunes for EPUB (Sigil to look for errors); and for Kindle, Kindle previewer and Kindle for the PC. Even after doing this, I just today saw my book a buyer's Android "Reader" and the pictures did not display at all. So it is publish once and test everywhere! Unfortunately, you just can't test all the possible devices and iterations of readers. (I am from IBM and we couldn't do it, so how publishers are supposed to figure it out is beyond me!)
    On the absolutely great news end, you will see a lot of problems about placing images on the iPad with a lot of workarounds. They apparently (Apple) have fixed this as my two publications show images nicely now on both the iPhone and iPad with the iTunes bookshelf/reader. They were "microdots" when viewed previously. I did nothing to fix it and was just not going to publish to the iPAd and just tested them a few weeks ago and they display perfectly. So Apple has fixed the problem. If it looks good on the Nook for PC, it should look good on the iPAD/iPhone now as best I can tell.
    Cheers
    Peter E. Greulich
    Author, Speaker and Publisher
    The World's Greatest Salesman and Tom Watson Sr Essays on Leadership

  • Missing random photos in epub export

    I am converting a print book to an ePub. I built the layout in a word processing document in Pages, using inline images, text styles and flush, right and left images. I then exported the file to the ePub format. It is a large book with 400,000 words and 300 images.
    The final product looked great until I started noticing that there were photos missing throughout the document - about 115 out of the 300. There is no pattern to which are missing - i.e. 40 in row are fine and then 3 in row are missing. I used 3 different alignment settings for the inline images and some of each all appear fine. The images are all dropped in using paste from an InDesign file that contains a photo with its caption so as to keep the caption with the image. The dropped image is a pdf that the epub exporter converts to a PNG file. In the xhtml files inside the epub, there is no reference at all to the missing images - the image numbers completely skip them and the code just has a space where the image code should appear.
    I was hoping to be able to get close with Pages to ePub and then make minor tweaks to the finished product. I didn't expect to have to hand convert 115 images into PNGs, hand code them into their exact location, code the reference into the OPF file and then assemble it all again. Seems to strongly point to an "undocumented feature" that is ignoring random images.
    Any help or ideas would be greatly appreciated. (I've got about 40 hours into converting this book so far and it looks like it is going to add about 20 more to manually fix all these problems and manually check the output.)
    Thanks,
    Wade

    I was not able to solve this problem using Pages. I took the problematic ePub I exported from Pages and used it as a starting point. I did a bunch of research on the ePub format and figured out how to solve the problem manually. (Make sure you use the latest version of the iTunesConnect_PublisherUserGuide.pdf as it gives a host of great information and things you have to do for it to work.)
    I ended up getting technical and cracking open the ePub file into its component parts - META-INF, mimetype, OPS - by changing the ePub extension to zip and then using Stuffit Archive manager to export the contents. (In a ton of research I found all about the structure of the ePub files and that it is basically a ZIP file with some special qualities.)
    Inside the OPS folder is basically a web folder - with an xhtml page for each chapter, css files, image files and a couple of ePub specific files. I used Dreamweaver to edit the problem chapters and placed the missing images. Also, I converted all of the "dropped images" I brought in from InDesign to PNG files (they contained the image with its caption so that it stayed formatted and in place with the picture). This served to make the overall size of the ePub smaller, as we were bumping up against the iTunes size limit.
    The item that has to be done or this won't work is to correctly modify the "epb.opf" file that is in the OPS folder. When you open it, you will see the pattern of how every image placed in Pages is listed/referenced in this file. From there, I had to add the appropriate reference to every image I had added and make sure that there were no extra images referenced. The ePub will not validate without this step. (Another tool I used was ePubChecker - it will check for this and many other things that will cause your iTunes validation to fail. Invaluable.)
    Once I made all the modifications, I used ePub Zip 1.0.2 to correctly ZIP all the files and convert it to a validatable ePub file. I couldn't create the right kind of ePub file - with all the meta data set correctly - using Stuffit. (Had something to do with how something wrote out from Stuffit). ePub Zip did it perfectly.
    It has been a while since I did all this, and it was an all-nighter, so I may not have listed all the details here. If I have not explained something clearly or left something out, please let me know.
    Hope this helps. It wasn't much fun, but it was really awesome when it finally succeeded in uploading and validating on iTunesConnect. Then we had to wait at least a year for it to appear in the store. It was a little over two weeks, but it seemed close to a year. Good luck with your book!

  • Cross reference not working properly in epub exported from IDCC

    Hi,
    I'm not sure whether this is a known issue within ID so forgive me for bringing it up if it is. I couldn't find any satisfying answer on this forum, hence my question.
    It seems that cross references between the xhtml-docs created from split ID document during the epub export don't work properly. They link to the text anchors specified as relative links. My editor uses software compliant to many e-reader platforms that removes all the relative links between the xhtml files within any epub and replaces them by absolute hyperlinks (http://). The result is... broken links all over. Their specification asks for the the anchor entires in the content.opf file instead of the relative links. Is there a way to work it out in InDesign and have the content.opf file contain the navigation to the anchors in xhtml files within the epub?
    I'm working with IDCC 9.1 btw. Would appreciate any help...
    Kind regards, Kasia

    Hi,
       Not sure exactly where you gone wrong.
       If you want the running sum to start from beginning for each YEAR and each LINES. Use this
               =RunningSum([Sales revenue]; ([Year];[Lines]))   => Need Square brackets around Year and Lines. This forum site doesn't display square bracket correctly
       If you want the running sum to start from beginning only for each LINES (regardless of YEARS). Use this
                =RunningSum([Sales revenue]; ([Lines]))
       Not sure why you added ROW in your functions. Hope this help. Works for me, just tested using my efashion with the same structure are yours.
    Regards,
    Ken
    Edited by: Ken Low on May 9, 2011 8:15 AM
    Edited by: Ken Low on May 9, 2011 8:17 AM

  • How do I align photos in a slideshow?

    Hello,
    I have been trying to find out how to align photos in a slideshow so that they don't "jump around" in the page, when they have different formats. Unfortunately I just read this discussion and learned that it isn't possible.
    http://forums.adobe.com/message/6071838
    But Iguiva then writes: "Now I only can do it manually, one by one..."
    If I can't controll exactly where the photo is shown, I don't see that I can use Muse.
    So here is my question: How do I do it manually? 
    Thanks,
    Tine

    Hi Tine,
    You can go to the Hero Image level in the Slideshow and then double click the Hero Image.
    That would give you access to the actual Image (you will see the Control Strip left corner reads "Image" rather than "Hero Image").
    Once at that level you can manipulate and place your image inside the Hero Image container as you see fit and it will keep the position you set.
    Hope that helps.
    Cheers,
    Vikas

  • Question - How to Revise a Javascript for Printing a Dynamic Date in the Right Corner of the Page

    Hi Everyone,
    I am using Adobe Professional 8.0.
    How do I revise the JavaScript (not created by me) below in order to execute the two (2) following changes:
    1) Dynamic Print Date - 1.0 inch Up and 1.0 inch Over from the Right Corner of the Page.
    2) Dynamic Print Date - 0.5 inch Up and 1.0 inch Over from the Right Corner of the Page.
    The JavaScript I want to revise is the following:
    /* Put script title here */
    // Add field to each page of form
    var inch = 72;
    for (var p = 0; p < this.numPages; p++) {
    // create rectangle quads for field
    var aRect = this.getPageBox( {nPage: p} );
    aRect[1] = 1.0*inch;
    aRect[3] = aRect[1] - 72; // and 24 points high
    // now construct text field to fill with date information
    var f = this.addField("PrintField", "text", p, aRect )
    f.delay = true;
    f.textSize = 10;
    f.textFont="Arial,Bold";
    f.textColor = color.black;
    f.alignment = "right";
    f.readonly = true;
    f.print = true;
    f.hidden = true;
    f.delay = false;
    var myWillPrintScript = 'var f = this.getField("PrintField"); \r'
    + 'f.hidden = false; \r'
    + 'var d = new Date(); \r'
    + 'var year = d.getYear()+1900; \r'
    + 'f.value = "Print Out Date:" + (d.getMonth()+1) + "/" + d.getDate() + "/" + year; \r';
    var myDidPrintScript = 'var f = this.getField("PrintField"); \r'
    + 'f.value = ""; \r'
    + 'f.hidden = true; \r';
    this.setAction("WillPrint", myWillPrintScript);
    this.setAction("DidPrint", myDidPrintScript);
    Thank you for your help!
    Tracy

    this.addWatermarkFromText({
    cText: util.printd("mmmm dd, yyyy", new Date()),
    nTextAlign: app.constants.align.right,
    nHorizAlign: app.constants.align.right,
    nVertAlign: app.constants.align.bottom,
    nHorizValue: -72, nVertValue: 72
    Will insert the current Monday/Day/Year as a text watermark at the bottom of every page of a document, 1 inch up and 1 inch in from the right corner.

Maybe you are looking for

  • Display Custom Error Message in OIM 11g

    Hi, I'm trying to display an error message from a validation event handler but seems that am missing something. When the "oracle.iam.platform.kernel.ValidationFailedException" is thrown from a validation handler an error message is displayed: "An err

  • How to do a Flash chat on my website

    hi im new pls forgive my foolishness, but can you please tell me how to contruct a flash chat room for my site, i want to be able to talk to a lot of people with out them being able to talk to each other, so maybe something like meebo.com, which open

  • Troublw with Batch Capture

    I am currently reimporting a sequence I originally edited in ProRes Proxy from AVCHD camera originals. I have made an off line copy of the sequence in media manager with 1 sec handles. When I batch capture the new sequence log and transfer finds all

  • Validating XML with DTD ..... Urgent

    Hi all, I am using java 1.4 I have to validate the XML file with the external DTD. Can anyone give me the code for that. DTD should be external. Thanks, Vinayak.

  • Cannot get in to play canasta on pogo said you have pop up blockers, where do I go to turn it off thank you

    I WANT TO UNBLOCK POPUP SO I CAN PLAY GAMES ON POGO WHERE DO I GO TO DO THAT