Modifying layout of Slide+Notes view

I need to print out my presentation in Slide+Notes view for distribution (give lots of add'l information in the presenter notes section). Is there a way to modify the layout of the resulting Slide+Notes format (eg. add headers, footers, modify margins, enlarge 'notes' area, etc.)? Thanks.

Yes ... and this is a nice feature for presenting the slides. Unfortunately, I don't think it will impact the printouts. Thanks for the response!

Similar Messages

  • Indicators are not viewed

    in p6v7 Indicators cannot be viewed !
    I've created UDF to use indicator but when that UDF is used in layout , indicators are not viewed on the screen (words coming out)
    is there any option or something like that to make it work on the screen?
    and also I'd like to get indicators on he print out .
    your support will be appriciated.
    he.

    Hello,
    just a little question: is your notebook working properly. (Except this indicator thing)? If yes, you have two options:
    1. You can accept it.
    2. You can try another AC-Adapter (if available)
    3. You can try it without battery inserted. Just remove it.
    2. You can send your machine to an authorized service partner for a hardware checkup (If you need a link to find the nearest service partner, here it is: http://eu.computers.toshiba-europe.com/cgi-bin/ToshibaCSG/generic_content.jsp?service=EU&ID=ASP_SUPPORT)
    Otherwise I have no suggestion for you since I really dont know whats wrong with your machine but I assume that something with your powersystem is not OK.
    Greets

  • Can not view primary layout

    I am using Robohelp HTML X5 build 584, with windows XP and
    IE6. I have used robohelp inthe past to generate web pages with
    help info which all worked well. I recently added new pages to the
    project and now it is not working. In the meantime I have
    transferred to a new pc and reinstalled robohelp and activated it,
    so maybe that isthe problem.
    When addinghe new web pages I can generate the primary layout
    but I can not view it. WHenj looking at the files created it is
    missing the main html page that shoudl be the ne that opens, plus
    some of the data and xdata folders inthe skins. I restored from
    backup a few thinjgs which I noticed wer missing but that does not
    seem to help.
    I created a brand new test project in case size was a
    problem, and added about 30 topics. Again it willnot view primary
    layout and does not create the main .htm page.
    Any ideas on how to fix?

    Hi Di W
    This certainly sounds as if RoboHelp isn't correctly
    installed or that you don't have sufficient permissions. I'd be
    checking with my IT staff to see if they recently changed anything
    from a security or permissions perspective. I'm not slamming IT, as
    they do have valid reasons for endlessly tweaking these settings,
    but it's quite common.
    You may also wish to review fellow Adobe Community Expert
    Peter Grainge's site by
    clicking
    this magickal link
    Cheers... Rick

  • In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    In the slide show view how can you pin the "next" Arrow to the ultimate edge so it is in the same place as the full screen image, it will pin to the left edge but not the right.

    Hello,
    Please make sure that the next button is pinned to the right side as there in the attached image.
    If it is already pinned, you can try removing any embedded HTML code and checking it.
    Regards,
    Neha

  • With PPT 2007 when I print my PPT file to Notes view why does the slide portion become an image

    I am trying to print a ppt file using PowerPoint 2007 notes view to PDF with Distiller and create a full text searchable PDF.
    Everytime I do, the slide portion becomes an image. The only textual portion of the PDF are the page numbers and the actual notes.
    This was not the case with Office 2003. The slide portion was full text searchable. Does anyone know why this is.

    Irma,
    Show the file in Finder with the pps or ppt extension, you want Powerpoint to open.
    Get info on the file, using command-I, and change the application to open all documents like this to Powerpoint.

  • Can I view the slide notes and timeline together?

    I've finally gotten around to trying Captivate 5 after having used version 4 for a year or so. I noticed the interface changed where I have a choice of seeing the timeline or the notes. I'm used to seeing both together and I rather like it that way. Is this something I can control/change?
    Thanks!

    Hi there
    Looks like if you click the Slide Notes tab and drag it up it will float. Maybe that will do what you want?
    Cheers... Rick
    Helpful and Handy Links
    Captivate Wish Form/Bug Reporting Form
    Adobe Certified Captivate Training
    SorcerStone Blog
    Captivate eBooks

  • Window that slides into view

    Hi all, I'm looking to add a little bit of Swing eye-candy.
    I have a little pop-up window that informs the user that their file has saved after they hit "save" or Ctr-S. I need it to be noticeable (so that they are assured that their file did indeed save), yet out of the way and not requiring any action on their part (no "Ok" button).
    Currently I have a little JWindow that appears at the bottom of the frame when they save, and disappears after two seconds. However, I'm looking to make the application look a little polished, so I wanted something a little fancier.
    Does anyone know of a way to get a JWindow (or any other kind of internal, non-modal frame or dialog) to slide in from the edge of a parent frame? I'd want it to look like it was being pushed in, so the whole thing would slide into view in one piece (i.e. not stretching). Or a similar kind of eye-candy that would be simple to implement (maybe fade-in fade-out)?
    Any help greatly appreciated, thanks!

    Hey that works great! Using null layout makes a lot of sense.
    I couldn't get it to be both fast and smooth -- changing the delay/repeat time to 0 doesn't make it significantly faster, so instead I had to increase the amount by which it moves each time, so it's less smooth. It still looks pretty good, though.
    For anyone else who's looking for this, I'm posting an excerpt of my code below, which slides the window up from the bottom right corner and then back down again a couple seconds later. I haven't made it into an SSCE, since that's above.
    Thanks again!
    final JWindow savedWindow = new JWindow();
    JLabel savedLabel = new JLabel("File saved");
    savedLabel.setFont(saveStateLabel.getFont().deriveFont(Font.BOLD));
    String fileName = currentAuthoredFile.getAbsolutePath();
                                       // .... bunch of layout omitted
    savedWindow.add(savedPanel);
    savedWindow.pack();
    final int desiredHeight = savedWindow.getHeight();
    savedWindow.getContentPane().setLayout(null);
    savedWindow.setSize(savedWindow.getWidth(), 0);
    bottomCorner = new Point(mainFrame.getLocationOnScreen().x + mainFrame.getWidth(),
         mainFrame.getLocationOnScreen().y + mainFrame.getHeight());
    savedWindow.setLocation(bottomCorner.x - savedWindow.getWidth(), bottomCorner.y);
    savedWindow.setVisible(true);
    javax.swing.Timer timer = new javax.swing.Timer(0, new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            int newHeight = Math.min(savedWindow.getHeight()+6, desiredHeight);
            savedWindow.setSize(savedWindow.getWidth(),newHeight);
            savedWindow.setLocation(bottomCorner.x - savedWindow.getWidth(), bottomCorner.y-savedWindow.getHeight());
            savedPanel.repaint();
            if(newHeight >= desiredHeight) {
                ((javax.swing.Timer) e.getSource()).stop();
                //restore original layout
                savedWindow.getContentPane().setLayout(new BorderLayout());
                savedWindow.validate();
    timer.start();
    javax.swing.Timer timer2 = new javax.swing.Timer(0, new ActionListener() {
        public void actionPerformed(ActionEvent e) {
            int newHeight = Math.max(savedWindow.getHeight()-6, 0);
            savedWindow.setSize(savedWindow.getWidth(),newHeight);
            savedWindow.setLocation(bottomCorner.x - savedWindow.getWidth(), bottomCorner.y-savedWindow.getHeight());
            savedPanel.repaint();
            if(newHeight <= 0) {
                ((javax.swing.Timer) e.getSource()).stop();
                savedWindow.dispose();
    timer2.setInitialDelay(2500);
    timer2.start();

  • Modify XML string of a view before output

    Hi!
    I'm still working in the view IUICMD/CreatePerson, when you're in the CreatePerson.htm, you will found  
    DATA lv_xml TYPE string.
      lv_xml = controller->configuration_descr->get_config_data( ).
    In the string I can se all the layout for my view, is there method to work around with this string to change the properties of the atributes so I can change the layout dinamically?
    Reward points will be granted for useful answers!
    Thanks N' Best Regards
    Luís
    Edited by: Luis pérez on May 7, 2008 9:25 AM

    Hello Luis,
    The XML string is the result of the View Configuration you made yourself
    In the BSP WD Component Workbench (BSP_WD_CMPWB) you can find for each view of that component a tab called 'Configuration' where you can modify
    - what fields are visible on that page (add/remove fields)
    - how the fields are ordered on the field
    - how the fields look like (display length, ...)
    The results of that configuration is stored as XML in the system and called in the view (.htm) by the code you mentioned (lv_xml = controller->configuration_descr->get_config_data( ).) So if you want to change the layout of that specific view, just open the configuration tab of that view!
    If you still want more flexibility you can totally disable that line of code and program everything yourself in the view with either <htmlb> <crm_bsp_ic> or one of the other (or a combination of) BSP tags, like it was in CRM 5.0. SAP still uses that way of programming for some components, maybe take a look at them, then you'll see what I mean. (Open component BT126H_MAIL in the BSP_WD_CMPWB; then double click on the 'send_screen' view and open the 'send_screen.htm' in the right pane by double clicking on it, here you see that no XML is used, instead all visible components are coded using HTML and SAP tags)
    If you're not used to program in BOL / HTMLB I strongly suggest to use the SAP 'Configuration' XML mechanism. It saves you a huge amount of coding (and time)!
    Hope this makes things clear!
    Reward points if useful!
    Regards,
    Joost

  • Can not view downloaded jpg photos after ios 7 install

    I installed ios 7 on my ipad 3. Now I can not view my jpg picture. They show blank.

    Try a Restart.
    Press and hold the Sleep/Wake button for a few seconds until the red "slide to power off" slider appears, and then slide the slider. Press and hold the Sleep/Wake button until the Apple logo appears.
    Resetting your settings
    You can also try resetting all settings. Settings>General>Reset>Reset All Settings. You will have to enter all of your device settings again.... All of the settings in the settings app will have to be re-entered. You won't lose any data, but it takes time to enter all of the settings again.
    Resetting your device
    Press and hold the Sleep/Wake button and the Home button together for at least ten seconds, until the Apple logo appears. Apple recommends this only if you are unable to restart it.
    Or if this doesn't work and nobody else on the blog doesn't have a better idea you can contact Apple.
    Here is a link to their contacts with most of the information below.
    http://www.apple.com/contact/

  • I can not view ANY videos on Vimeo, I have 'reset' the Ipad, original IOS 5, cleared the history and cookies, I have changed the DNS number to 8.8.8.8, I have worked on this for 2 days and still can't find a fix, HELP!!

    I can not view ANY videos on Vimeo, I have 'reset' the Ipad, original IOS 5, cleared the history and cookies, I haves changed the DNs number to 8.8.8.8, I have worked on this for 3 days now, HELP!!!!

    Try a reset: Simultaneously hold down the Home and On buttons until the device shuts down. Ignore the off slider if it appears. Once shut down is complete, if it doesn't restart on it own, turn the device back on using the On button. In some cases it also helps to double click the Home button and close all apps BEFORE doing the reset.

  • Cross browser testing : Modifier Keys playback actions not working in chrome and Firefox

    Hi,
    In my work flow I have to select multiple items in list.So I have recorded 'Ctrl+Click' action to select list items.In Chrome and Firefox it is not selecting multiple Items.
    Even Ctrl+A,Ctrl+C,Ctrl+V also not working in chrome and Firefox.Complete modifier keys support is not observed in chrome and Firefox.Let me Know how to automate modifier keys actions in cross browser?
    Regards,
    Nagasree.

    Hi Nagasree,
    Welcome to MSDN forums.
    First,please make sure the Chrome and Firefox is supported by cross browser testing.
    Latest version of Chrome and Firefox supported by cross browser testing are Chrome version 38.0.2125.111 and
    Firefox 33.
    I doubt whether Chrome and Firefox in cross browser testing don’t support automating modifier keys or there is anything wrong on it if you are using supported browser. Since this issue is related to the Extensions tool
    Selenium components for Coded UI Cross Browser Testing, if possible, I suggest you post this
    issue here, click “Q AND A”, and then you could post this issue there, you would get dedicated
    support there.
    Thanks for your understanding.
    Best regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Is there anyway to publish each slide build in Captivate 5.5 to a word doc with slide notes?

    I am looking for a way to print out my slides in a word document so that my copy editor can not only read my slide notes, but also view what is on my slide making sure there are not any errors. When I build my slides, I stack images up with things fading in and out enabling me to record audio for only one slide as opposed to each build. However when I publish to the handouts, my copy editor receives a slide with a lot of things built up on it and she can not see everthing that is on the slide (only what's on top). Does anyone have any advice or information they can give me relating to publising to handouts or storyboarding so that each slide build is seen?
    Thank you in advance! I appreciate any help on this!

    Captivate's handouts work in much the same way as PPT handouts.  If you had a lot of objects and animation on a single PPT slide it wouldn't look much different to a Captivate slide.
    One good thing about Captivate though is that if you hide objects on the timeline for a given slide, the way that slide looks in Edit mode is pretty much what it will look like in the Handout doc graphic.  With judicious hiding of extraneous objects your slide printout won't look too bad.  The reviewers should at this stage mostly be just looking at the voiceover script anyway.  The NEXT stage of the review cycle would be to check the animation and syncing with the approved voiceover.
    There's no way you can give your reviewer a Word doc straight out of Captivate that will show how you've animated the objects (fade ins and fade outs or effects etc).  If it's essential tey see this in action then consider sending them a PDF output from the project with TTS speech from the voiceover script and objects roughly synced to the TTS.  I don't see any point wasting too much time on getting everything synced perfectly at this stage because reviewers are just as likely to change a lot of the voiceover and render a lot of work useless.  But some reviewers have no imagination and can't get an idea of how the elearning will turn out until they see it almost finished.  Managers are the most likely to be like this.  And the higher up in management they are, the less imagination they have.

  • Can I modify a question slide to include more than 5 qs in same slide

    Hey everyone.
    I'd like to know If I can modify a question slide to include more than one question in the same slide.
    I'd like to include a slide with audio and some video in the left page and on the right page I'd like to include a q slide that can have more than one question to pertain to the input in the left page. But I wouldnt want to dupicate the left page.I'd like to include one page with input and the other page (right) with questions ( fill in the blank, multiple choice etc) just one slide of course.
    I don't want to fill up the project with a bunch of question slides. The purpose of the activity is for the participant to listen to the input only once and start getting quizzed ( extracting detailed info, forecasting etc etc)
    Thanks

    Please take a look at the screenshots,
    you can see how I have selected to execute the following advanced action on the submi tbutton howver there are a number of things going wrong and I doubt it's cause of the syntax as I've done ertythig as instructed!
    I'm executing the actions once the Submit button is clicked.
    I've placed the actions in the same "file" TF1 -TF5.
    After TF5 I've placed the show to shoe the results ...
    QUESTION:
    This action was created seperateley cause it's  a standard action and autmatically sent me elsewhere, not the same file... ???
    Is that right?
    I'm not getting a slide to show the feedback.
    Why?
    Timeline in question...???

  • How to modify a Master Slide on a single page.

    I am wondering how to modify the master slide on a particular slide.
    Like in InDesign when you hold shift + ctrl you can select items from the master page and modify them on that particular page only, without making the changes to every page where that Maser page is applied.
    Trying to figure out how to accomplish this simple task in Captivate 5. (Windows 7)

    As far as I know that option is not avaiable.
    You could duplicate your master slide, make the changes to it, then assign that new master to the individual slide.
    This works if there's only one, but if you had many variations of master slides it would get unwieldy after a while and defeat the purpose of using master slides, IMO.

  • How can I send a copy of my Keynote Presentation to someone else so that it will include my slide notes (uploading it to iWork seems to exclude my notes and only shows the slides). A quick response would be greatly appreciated!

    How can I send a copy of my Keynote Presentation to someone else so that it will include my slide notes (uploading it to iWork seems to exclude my notes and only shows the slides). A quick response would be greatly appreciated!

    I'd try Dropbox (http://www.dropbox.com/), which you and your recipient both have to have. It's easy, and the free version would probably be enough. There are any number of other services available for emailing large files (google that). Of course, your recipient must have KN installed to be able to view it correctly, or can view it in PP, but with some loss, primarily transitions/animations.

Maybe you are looking for

  • MIRO accounting document GR/IR not updated

    Hi, User posted Invoice verification ( MIRO) and in accounting document i have seen that 1)vendor account - Credited 2) But there is no GR/IR account updated instead of that purchase order G/L Account updated as Debit Ideally GR/IR account should cre

  • Should I use a temp buffer to gunzip bytes to bytes?

    Folks, I need a method to gunzip (uncompress) a zipped-byte-array into a plain-byte-array ... The below method (based on that used for file-i/o-streams) works, but I can't figure out if using the buf  "interveening temporary buffer" is good, bad, or

  • FCP Project import creates duplicates of existing assets

    I posed another question similar to this in Sept but had to go into the field for a couple month. I have set up my Media device as an edit in place device (device type is Filesystem). Mac URI file://localhost/Volumes/MyDisk/PRODUCTION MEDIA/Media/ I

  • Can't install Bluetooth Enhanced Data Rate Software II

    Can't install Bluetooth Enhanced Data Rate Software II. When I try to install the software it says that there are no Bluetooth in my notebook, but it present in my configuration:       0A69630   SBB INTCR I7-2620M PROC USB3.0       45M3092   VBB GENW

  • SYSTEM Tablespace corrupt blocks !!!!!!!!!

    Hi, Oracle version 10gR2 - 10.2.0.1.0 The database which i am running in 10g is having few corrupt data blocks in system data files. I have no backup of full database and neither the database is in archive log mode. I know the situation of my develop