Use pages from other templates...not just the one you chose.

Is there a way to choose a page from another template besides the one I started with. For example if I choose the "School Report" template, but want to also use a page from the "Lesson Plan" template, how can I do this. If you click add new page, it only gives you the initial template pages. I tried opening a new template and copying and pasting the page I wanted, but it does not work.

My guess is that it's because the objects are floating ones.
If you switch them as inline one, you will be able to copy the page, sometimes after inserting section breaks.
Yvan KOENIG (from FRANCE mardi 10 février 2009 21:19:34)

Similar Messages

  • Help can we download songs from other computer s beside the one you have on

    i downloaded songs on my brothers itune and when i got home i connected my ipod to my itunes and a few mins later all 3thous something somgs were gone help anyone what am i doing wrong

    I have already tried following those steps. I went back and tried to follow them again but they did not work. Some of my songs have synced, some have not. And I am still not seeing the Autofill icon on the bottom of the menu or anywhere else. I fear something has been corrupted here and I need to start afresh.

  • Results slide showing all question pool results not just the ones completed.

    I have several question pools which have the option to be taken independently or separately.
    If the user does not take all seven of the modules then the quiz results slide at the end is incorrect as it will report all of the questions not just the ones attempted.
    I have tried the Branch aware option in the quiz results option but that did not worth.
    It this an easy fix or does it require me to add a variable count for each correct answer.
    Many thanks
    Rick

    Branch aware should be just fine for that case, why do you tell it is not working? Branch Aware Quiz - Captivate blog
    When you say 'score slide is not reporting correctly', I had no such problems.
    You could create a custom score slide indeed, using variables, but what if you have to report as a SCORM? Only possibility in that case is Branch aware.

  • CAN I ENLARGE THE SIZE OF ALL TRACKS AND NOT JUST THE ONE TRACK AT A TIME

    I would like to enlarge the tracks on the top half of the mix screen and not just the one track I'm working on. I find that most times I'm working in 2 or 3 tracks only and it would be great if I could enlarge the size of those to work with rather than the thin tracks they appear as. I realize if I click on one that it will appear larger below to edit but can I have all the tracks recorded appear larger?
    [email protected]
    Ross

    NO

  • My iPad email is showing all emails in my "important" not just the ones I put there.  How do I make this stop?

    My iPad email is showing all emails in my "important" not just the ones I put there.  How do I make this stop?

    Its problem saving.
    *http://kb.mozillazine.org/Preferences_not_saved
    *https://support.mozilla.org/en-US/kb/how-to-fix-preferences-wont-save

  • Why does my back arrow close out the whole site and not just the one page?

    I just replaced my old MacbookPro with a new one.  The one difference that is driving me crazy is that the back arrow (button) closes the whole site, not just the page that I am on.  Is there a way to change this.  My old computer just sent me back to the previous page.  Thanks in advance!
    Cindy

    Red buttons, back buttons, I guess specifics matter.
    Glad you figured it out.

  • Dialogue tick boxes un-hiding all fields, not just the ones where value has changed to true

    I am hoping someone can help me make what I want to happen, happen if certain check boxes are ticked withing the dialogue box
    right now I can see on the console print that the tick box turns the value from false to true but the OK button is also un-hiding all my fields rather than just the ones where the value has turned to true. What am I missing here
    //Create a Dialogue box for staff to state how many of the account owners are in branch in order for the names to show in the signing section
    var Signors =
        result:"cancel",
        DoDialog: function(){return app.execDialog(this);},
        bChk2:false,
        bChk3:false,
        bChk4:false,
        bChk5:false,
        initialize: function(dialog)
            var dlgInit =
                    "Chk2": this.bChk2,
                    "Chk3": this.bChk3,
                    "Chk4": this.bChk4,
            dialog.load(dlgInit);
        commit: function(dialog)
            var oRslt = dialog.store();
            this.bChk2 = oRslt["Chk2"];
            this.bChk3 = oRslt["Chk3"];
            this.bChk4 = oRslt["Chk4"];
        description:
            name: "Signors",
            elements:
                    type: "view",
                    elements:
                            type: "view",
                            char_height: 10,
                            elements:
                                    type: "static_text",
                                    item_id: "stat",
                                    name: "Who is here to sign:",
                                    char_width: 15,
                                    alignment: "align_fill",
                                    font: "dialog",
                                    type: "view",
                                    char_width: 8,
                                    char_height: 8,
                                    align_children: "align_top",
                                    elements:
                                            type: "view",
                                            char_width: 8,
                                            char_height: 8,
                                            elements:
                                                    type: "check_box",
                                                    item_id: "Chk2",
                                                    name: "Primary Applicant",
                                                    type: "check_box",
                                                    item_id: "Chk3",
                                                    name: "Associate 1",
                                                    type: "check_box",
                                                    item_id: "Chk4",
                                                    name: "Associate 2",
                            type: "ok_cancel",
    // did the value change when ticked - lets check
    Signors.bChk2 = false;
    Signors.bChk3 = false;
    Signors.bChk4 = false;
    if("ok" == Signors.DoDialog())
        if (Signors.bChk2 = true)
    getField("Signor1").hidden = false;
    getField("Staff1").hidden = false;
    getField("Date1").hidden = false;
    getField("Date2").hidden = false;
    if (Signors.bChk3 = true)
    getField("Signor2").hidden = false;
    getField("Staff2").hidden = false;
    getField("Date3").hidden = false;
    getField("Date4").hidden = false;
    if (Signors.bChk4 = true)
    getField("Signor3").hidden = false;
    getField("Staff3").hidden = false;
    getField("Date5").hidden = false;
    getField("Date6").hidden = false;
        console.println("Chk2:" + Signors.bChk2);
        console.println("Chk3:" + Signors.bChk3);
        console.println("Chk4:" + Signors.bChk4);
        console.println("Chk5:" + Signors.bChk5);
    //console.println shows if bChk.. is true or false
        console.println("Chk2:" + Signors.bChk2);
        console.println("Chk3:" + Signors.bChk3);
        console.println("Chk4:" + Signors.bChk4);
        console.println("Chk5:" + Signors.bChk5);
    //Yeah, confirmed values have changed, now show fields based on staff input
    //was primary applicant ticked
    doWhatIWant: function(results) {
    if (results [Signors.bChk2] = true)
    getField("Signor1").hidden = false;
    getField("Staff1").hidden = false;
    getField("Date1").hidden = false;
    getField("Date2").hidden = false;
    //was Associate 1 ticked
    if (results [Signors.bChk3] = true)
    getField("Signor2").hidden = false;
    getField("Staff2").hidden = false;
    getField("Date3").hidden = false;
    getField("Date4").hidden = false;
    //was Associate 2 ticked
    if (Signors.bChk4 = true)
    getField("Signor3").hidden = false;
    if (Signors.bChk4 = true)  
    ("Staff3").hidden = false;
    if (Signors.bChk4 = true)
    ("Date5").hidden = false;
    if (Signors.bChk4 = true)
    ("Date6").hidden = false;

    You're missing some curly brackets, using the incorrect equality operator, and using the long deprecated field.hidden property. Try this:
    if ("ok" == Signors.DoDialog()) {
        if (Signors.bChk2) {
            getField("Signor1").display = display.visible;
            getField("Staff1").display = display.visible;
            getField("Date1").display = display.visible;
            getField("Date2").display = display.visible;
        if (Signors.bChk3) {
            getField("Signor2").display = display.visible;
            getField("Staff2").display = display.visible;
            getField("Date3").display = display.visible;
            getField("Date4").display = display.visible;
        if (Signors.bChk4) {
            getField("Signor3").display = display.visible;
            getField("Staff3").display = display.visible;
            getField("Date5").display = display.visible;
            getField("Date6").display = display.visible;
        console.println("Chk2:" + Signors.bChk2);
        console.println("Chk3:" + Signors.bChk3);
        console.println("Chk4:" + Signors.bChk4);
        console.println("Chk5:" + Signors.bChk5);
    I don't know if that will deal with all of the problems, but it's a good start.

  • I need to rotate my text in pages - in a template - not just a text box

    I am trying to make labels in Pages using a template I downloaded from the place I bought the labels.  Problem is I cannot rotate the text! And I cannot select the text box - it is not working.  WHY PAGES WHY???? Does anyone know how to deal with this? 

    If you already designed a label art and need to rotate it to fit the label itself you can select all the elements from the design and select "group" then on the  "format" tab of the Inspector you can rotate it. If you wish to print more than one label just copy, paste and move them to the label area. Hope this helps.
    Can you also post a print screen so we can better understand what you are trying to achieve.
    Alex

  • Using Pages - Images disappear when not on the 'paper' part of display

    using pages for a poster design - need to 'park' some images not on the page itself but to the side - when moved off the 'paper' disappear - just left with the 'outline indicators' - how can I keep the image visible whilst not on the 'page' I'm setting out?

    Rod,
    To simulate that behavior in Pages, open a blank Page Layout document and arrange the new document window to the side of your working document. To "park" a graphic, select and Command-X in the working document and Command-V in the "parking lot" documemt.
    Jerry

  • When I use "tabs from other computers," some of the tabs from the other computer show (7/11) and others don't, and going the other way, it keeps showing some tabs that have been closed.

    Desktop is running Windows XP and laptop is using Windows 7. Both have the latest version of Firefox.
    I press the Synch buttom before I press the "show tabs" button.

    I think I may have solved the problem. I cleared the cache, and then the old tabs no longer appeared. I think the ones that weren't showing were tabs that were already on the other computer.
    Haven't yet checked thoroughly.
    I can't upgrade easily because I have HughesNet, which limits downloads. Last time I downloaded Windows upgrade to my laptop, I went over the limit and got slowed down to slower than dial-up. And as mentioned in question, I *did* press Synch Now before asking for tabs.
    Also, if I did all the upgrades that various pieces of software want me to do, I'd have no time to get any work done.
    But thanks for the ideas.

  • How can I get a digital WDT that includes all samples, not just the one for the current time step...?

    See block labeled ''digital data'' in my attachment for reference. Currently, only the digital data point for the current time step can be seen (it is deleted before the next one appears). However, I would like it display all the samples in the table like in the example found at this link under ''Digital Waveform Control'':
    http://zone.ni.com/reference/en-XX/help/371361H-01/lvconcepts/fp_controls_indicators/ 
    Many thanks for any suggestions! I am new to Labview, so I appreciate your help.
    Solved!
    Go to Solution.
    Attachments:
    myproject.vi ‏220 KB

    Hey westerman111,
    If you're looking to produce have your display include the solution information from previous solver steps, you will need to buffer the previous data. The way to implement this in a Control Design & Simulation Loop is using the Memory.vi found under Control Design & Simulation > Simulation > Utilities > Memory.vi. It will allow you to save previous information generated in the simulation environment for letter solution steps.
    I've attached an example that should get you started in using the Memory.vi.
    I would also make sure that what you're looking to accomplish is suitable for the Control & Simulation Loop. I know you mentioned you were new to LabVIEW so I wanted to make sure you were heading off in the right direction. Is there a particular reason why you are using the Control & Simulation Loop instead of a standard While or For Loop? The Control Design & Simulation loop is unique in that it calculates the solution of a dynamic system at a prescribed time step and ODE solver. It also provides the tools to interact with the model you are solving during execution. However, if you are simply looking to perform data acquisition and measurements (instead of dynamic model simulation) I would recommend using standard LabVIEW functions.
    Here are some useful references for getting start with both LabVIEW and the Control Design and Simulation Module.
    Tutorial: Getting Started with Simulation (Control Design and Simulation Module)
    http://zone.ni.com/reference/en-XX/help/371894G-01/lvsimhowto/sim_h_gs/
    Getting Started with LabVIEW
    http://digital.ni.com/manuals.nsf/websearch/ba2fb433a7940e7a862579d40070cc2c
    Tim A.
    National Instruments
    Attachments:
    myproject_edit.vi ‏249 KB

  • How do I view all my movies, not just the ones I have downloaded

    I have a few movies I downloaded off the Itunes store but I cant seem to find them on my itunes movie  list. All that is listed are the movies I have downloaded to the hard drive and not  the ones I have in the cloud. THe movies show up on my other devices. 

    Recovering your iTunes library from your iPod or iOS device: Apple Support Communities

  • Using the HTML Validator for Firefox, I have found that every page I open has errors, not just the ones I have designed; why?

    Even using it on this page there are 5 errors geneated.
    I am using HTML Tidy.
    Is there something wrong? Am I using it incorrectly?

    I checked and agree this page does not pass validation
    * http://validator.w3.org/unicorn/check?ucn_uri=https%3A%2F%2Fsupport.mozilla.org%2Fen-US%2Fquestions%2F992639%23answer-551039&doctype=Inline&charset=%28detect%20automatically%29&ucn_task=conformance#
    That validator is an official w3.org validator
    *http://simple.wikipedia.org/wiki/World_Wide_Web_Consortium
    * http://www.w3.org/
    I suppose it could be expected these pages would pass validation. I will mark this for escalation lets see what HelpDesk's observations are on that.
    I also note that ''html tidy'' appears to be a utility originating from w3.org
    * http://www.w3.org/People/Raggett/tidy/
    As for your own problems with web design that would best be discussed elsewhere. <br />Ordinarily I would say a Mozillazine forum may be a good place to try
    * http://forums.mozillazine.org/viewforum.php?f=25
    Now that Webmaker have a presence on this forum it may actually be worth asking again and specifically asking from
    * https://support.mozilla.org/en-US/questions/new/webmaker
    IF you are attempting to use any Webmaker advice or product
    * https://webmaker.org/

  • Sending Calendar Appointment from Macbook to my wife's PC with Outlook 2013 and it sends a whole calendar and not just the one appointment.

    I have a Macbook Pro Late 2013, running OS X 10 Yosemite 10.10.1 and my wife has a PC with Windows 7. I use calendar that comes with my Macbook and she uses Outlook 2013 calendar. When I email from Mail on my Macbook an appointment event and my wife opens the email with the appointment, it wants to add a whole new calendar for this one event, why is this? I just want to send her a single appointment not a whole calendar.
    I tried to see if Apple Calendar on my Macbook has any options to help with this issue and I can't see anything that will help.
    Should I check out the Outlook 2013 on my wife computer to see what options if any that I need to change to help with this problem?

    closing in favour of https://support.mozilla.org/en-US/questions/1024353

  • Where can I find a list of all available add-ons, not just the ones I already have?

    It is incredibly frustrating to go through hundreds (thousands?) of addons, even if they are broken down in sub-categories. I understand that new ones are being added regularly, but surely a list in some format might be available every month or so?
    Thank you for your efforts.
    Aurel Guillemette

    ''aurel2015 [[#question-1055162|said]]''
    <blockquote>
    It is incredibly frustrating to go through hundreds (thousands?) of addons, even if they are broken down in sub-categories. I understand that new ones are being added regularly, but surely a list in some format might be available every month or so?
    Thank you for your efforts.
    Aurel Guillemette
    </blockquote>
    a list of only the new additions DOESN'T solve the problem, this would mean that I would have to do a very LONG search of the entire listings, THEN do a regular search of the new additions. It makes me wonder if the creators of the system, or the creators of the addons don't want to be noticed and chosen?

Maybe you are looking for