How to set a framework for model A as the backdrop of model B, when A is shorter than B?

I have a composition of 3 seconds, within another composition of a few minutes. It ends with a frame without movement. I can't extend its length after the last image, what I want to do, I can use it as a backdrop for the composition more than time. The only solution I can find is to extend the duration of the scale model of the opening, and that seems redundant.

COMP A completed, it disappears, I can't extend its length in scenario B COMP beyond the total length of COMP.

I could also export the alembic and re - import, but I don't want to do that.

The average time-remapping or duplication CompA (washing at the end framework) > right click > time > Freeze Frame - and the cup double to adapt to the necessary remaining length

Tags: After Effects

Similar Questions

  • How to set a framework for a duration specified ("how-to")

    Another question "How - to".

    How set a clip in a video of a specific length?

    Do I have to do is have 4 successive clips with text, each the same length (say 4 seconds).

    Using 'Titles & text' I select "Default Text" (general) and that dragged down to my calendar - 4 times.  In fact in the 2 video as this text is to overlay the main video - in this particular case, a map of the State of Washington.  Each clip "Default Text" is to display the name of each volcano (fading in & out name I had to work through the right-mouse-button, Fade In Video & Fade Out Video - only problem is you can't see what fade options if one is active).

    Can I change the length of each text element by dragging the slider, but it is rather random.  How can I set the time to an exact number of seconds (or frames)?

    HEM

    HEM

    Thanks for the reply. Glad you did what you wanted. How did you that if my personalized answer has not worked for you?

    What I described working for the details you provided.

    Change the duration of 4 clips moved to the chronology of titles & text so that the duration of each was 4 seconds instead of each having the same default of the project during still image. the default value of the project.

    If what I wrote did not work for you, my impression is that you have not said or didn't know that all 4 clips do not have the same duration to start with. Which shouldn't be the case if you just dragged the 4 default of securities and the text to the timeline. Everyone should have the same default value still life image.

    What I described works as described for what you described, that is, all four clip selection, change duration of Time Stretch

    I have the first elements 13/13.1 on Windows 7 64 bit. The above attempts to recreate what you call your situation.

    Note the text selected on the video 2 track titles (each duration 5 seconds in my case), video clips under the video 1 track, and the length of Time Stretch set to 4 seconds in the Time Stretch dialog box.

    Please review and consider.

    Thank you.

    RTA

  • How to set global variables for use by all THE #subform [0] items of form1. ?

    Hi all

    I don't know how to code javascript but am new to Adobe LiveCycle.  When I open the script editor, I have the following code (the code is in United Nations in bold):

    -form1. #subform [0]: initialize :-(FormCalc, client).

    //////////////////////////////
    TO START: SET GLOBAL PRICES.
    //////////////////////////////

    var Cityscope_Sydney_CostUser1 = 60,39;
    var Cityscope_Sydney_CostUsers2to5 = 3.02;
    var Cityscope_Sydney_CostUsers6to20 = 1.21;
    var Cityscope_Sydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_Sydney_CostHardCopyWithoutOnline = 54,67;
    var Cityscope_Sydney_CostHardCopyAdditional = 14.59;

    var Cityscope_NorthSydney_CostUser1 = 48,40;
    var Cityscope_NorthSydney_CostUsers2to5 = 2.42;
    var Cityscope_NorthSydney_CostUsers6to20 = 0.97;
    var Cityscope_NorthSydney_CostHardCopyWithOnline = 14.59;
    var Cityscope_NorthSydney_CostHardCopyWithoutOnline = 43,54;
    var Cityscope_NorthSydney_CostHardCopyAdditional = 14.59;


    ////////////////////////////
    END: SET GLOBAL PRICES.
    ////////////////////////////

    -form1. #subform [0]: enter :-(FormCalc, client).

    -form1. #subform [0]: output :-(FormCalc, client).

    -form1. #subform [0]: calculate :-(FormCalc, client).

    -form1. #subform [0]: validate :-(FormCalc, client).

    -form1. #subform [0]: preSave - (FormCalc, client).

    < < = etc etc etc = > >

    -form1. #subform [0]. Item1Cost::initialize :-(JavaScript, client).

    -form1. #subform [0]. Item1Cost::enter :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::exit :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

    Store the values of the form of friendly names.
    var AreaSelected = Item1Area.rawValue;
    var NumberOfUsersSelected = Item1Users.rawValue;

    Declare other variables.
    var Users1Calculation;
    var Users2to5Calculation;
    var Users6to20Calculation;


    Calculate the cost to the "components" user will depend on the number of users selected for the region.
    Switch (true)
    {
    If (NumberOfUsersSelected < 2):
    Users1Calculation = NumberOfUsersSelected * Cityscope_Sydney_CostUser1;
    Users2to5Calculation = 0.00;
    Users6to20Calculation = 0.00;
    break;
    If (NumberOfUsersSelected > 1 & & NumberOfUsersSelected < 6):
    Users1Calculation = Cityscope_Sydney_CostUser1;
    Users2to5Calculation = (NumberOfUsersSelected - 1) * Cityscope_Sydney_CostUsers2to5;
    Users6to20Calculation = 0.00;
    break;
    If (NumberOfUsersSelected > 5):
    Users1Calculation = Cityscope_Sydney_CostUser1;
    Users2to5Calculation = 4 * Cityscope_Sydney_CostUsers2to5;
    Users6to20Calculation = (NumberOfUsersSelected - 5) * Cityscope_Sydney_CostUsers6to20;
    break;
    by default:
    Alert ("BROKEN: calculate the individual components of cost of use will depend on the number of users selected for the region.");

    }

    apply the total cost for this article
    Item1Cost.RawValue = Users1Calculation + Users2to5Calculation + Users6to20Calculation;

    -form1. #subform [0]. Item1Cost::validate :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseEnter :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::mouseExit :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::change :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::full :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseUp :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::MouseDown :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::click :-(FormCalc, client).

    -form1. #subform [0]. Item1Cost::preSave - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::postSave - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::prePrint - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::postPrint - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::preSubmit:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Cost::docReady - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::docClose - (FormCalc, client).

    -form1. #subform [0]. Item1Cost::ready:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Cost::ready:layout - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::initialize :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::enter :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::exit :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::calculate :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::validate :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseEnter :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::mouseExit :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::change :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::full :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseUp :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::MouseDown :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::click :-(FormCalc, client).

    -form1. #subform [0]. Item1Users::preSave - (FormCalc, client).

    -form1. #subform [0]. Item1Users::postSave - (FormCalc, client).

    -form1. #subform [0]. Item1Users::prePrint - (FormCalc, client).

    -form1. #subform [0]. Item1Users::postPrint - (FormCalc, client).

    -form1. #subform [0]. Item1Users::preSubmit:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::docReady - (FormCalc, client).

    -form1. #subform [0]. Item1Users::docClose - (FormCalc, client).

    -form1. #subform [0]. Item1Users::ready:form - (FormCalc, client)-

    -form1. #subform [0]. Item1Users::ready:layout - (FormCalc, client)-

    .. and so on and so forth...

    In short, I want the code in:

    -form1. #subform [0]. Item1Cost::calculate :-(JavaScript, client).

    .. .to be able to access the variables I created in:

    -form1. #subform [0]: initialize :-(FormCalc, client).


    (I guess that's where I store global variables)

    At this point, global variables are not accessible with the above configuration.  Was the only one I can get this working is to cut and paste the Globals in each item of form1. #subform [0], which of course defeats the purpose of global variables!  I intend to have a lot more items so wouldn't duplicate global variables for each of them!

    Can someone show me how to do this?

    Any help is very appreciated!

    Thank you

    Stanbridge

    Post edited by: stanbridgej - colors and fonts or not will not save.  Are bolded my question make (non-fat) code easier to read (I hope).

    I haven't used Formccalc, but I thought it would be the same regardless. Insert a script object to the top of the hierarchy and call it, for example "sco." Paste the Globals. Then refer to variables of the extent that sco. Cityscope_Sydney_CostUser1, etc. Make one

    App.Alert (sco. Cityscope_Sydney_CostUser1);

    one of the fields. If the debugger is activated, it will tell you if it cannot resolve the reference as "sco. In this case, you may need to use the som expression to reference the script object, for example

    var scoScript = xfa.resolveNode ("topOfHierarchy.sco");

    scoScript.Cityscope_Sydney_CostUser1

    But if as close as possible to the top of the hierarchy above should work.

  • How to set up checkboxes for SelectManyCheckbox programmatically?

    Hello experts!

    Please help me with my question.

    I work with Jdeveloper 12.2.1.0.0

    I have SelectManyCheckboxaf:selectManyCheckbox

    <af:selectManyCheckbox id="my_selectManyCheckbox"
                      valueChangeListener="#{TasksFilterBean.onTasksFilterPriorityChanged}"
                      autoSubmit="true"
                      required="false">
                          <af:selectItem label="High" value="1" id="si4"/>
                          <af:selectItem label="Middle" value="2" id="si5"/>
                          <af:selectItem label="Low" value="3" id="si6"/>
    </af:selectManyCheckbox>
    
    

    And I need to configure programmatically check boxes.

    I found this item the bean.

    ***
    RichSelectManyCheckbox my_selectManyCheckbox = (RichSelectManyCheckbox)task_page.findComponent("my_selectManyCheckbox");
    
    
    _logger.info("my_selectManyCheckbox: " + my_selectManyCheckbox);
    
    

    And question.

    How to set up checkboxes for SelectManyCheckbox programmatically?

    For example.

    I want to configure environment checkbox to activate.

    How to do this?

    PS. I'm tempted to find the solution, before you create new discussion.

    I added the SelectManyCheckbox property:

    value="#{TasksFilterBean.selectedCheckboxes}"
    

    And I added some methods in the bean:

        private List selectedCheckboxes;
    
        public void setSelectedCheckboxes(List selectedCheckboxes) {
            this.selectedCheckboxes = selectedCheckboxes;
        }
    
        public List getSelectedCheckboxes() {
    
            List selectedCheckboxes = new ArrayList();
            selectedCheckboxes.add("2");
    
            return selectedCheckboxes;
        }
    

    And now everything works.

    =================================

    Now I CAT change bean like this:

        private List selectedCheckboxes;
    
        public void setSelectedCheckboxes(List selectedCheckboxes) {
            this.selectedCheckboxes = selectedCheckboxes;
        }
    
        public List getSelectedCheckboxes() {
    //        List selectedCheckboxes = new ArrayList();
    //        selectedCheckboxes.add("2");
            return selectedCheckboxes;
        }
    

    And now I can then use:

            RichSelectManyCheckbox my_selectManyCheckbox= (RichSelectManyCheckbox)task_filter_page_template.findComponent("my_selectManyCheckbox");
    
            my_selectManyCheckbox.setValue("1");
    

    That all.

    Thank you all.

    Especially at Jiri.Machotka - Oracle

    ===========

    UPD. I'm sorry. It looks like I can configure values to 1 item on SelectManyCheckbox without bean methods.

    And with the above example, I had problems when I unckeked all the check boxes.

  • How to set a password for the networks?

    Original title: related networks

    Hi, my request is how to set a password for networks

    Hello Manu,

    I suggest to follow the steps below and check the steps in the section to change the homegroup password , if it helps.

    Homegroup from start to finish

    http://Windows.Microsoft.com/en-us/Windows/HomeGroup-help#HomeGroup-start-to-finish=Windows-81&V1H=win81tab7&V2H=win7tab1

    Let us know the status.

  • How to set up email for provider VDC alerts

    Hi any advise how to set up alerts for vdc provider as low on storage etc. on VCD?

    Thanks for any info

    Emails are sent when a data store changes from green to yellow, yellow to red.

    To change WHEN these data storages are at these levels, you can get the properties on a data store.  These are set by the GB left on the data store.

    System-> monitor-> data warehouses and handle-> RightClick:Properties

    * Yellow disk space threshold:

    * Red disk space threshold:

    I hope this helps.

  • How to write a script for date get to the Clipboard

    Hi experts,

    How to write a script for date get to the Clipboard.

    the date format will be like this:

    05 - may

    respect of

    John

    Thanks guys, thanks Sanon

    I finally use the .bat doc

    like this:

    @@echo off
    for /f "delims =" % in (' wmic OS Get localdatetime ^ | find ".") "") Set "dt = %% a"
    the value "YYYY = % dt: ~ 0, 4%.
    the value "MM = % dt: ~ 4, 2%.

    If MM % is 01 set MM = January
    If % MM == 02 set MM = February
    If MM % is MM value = March 03
    If MM % is 04 MM value = April
    If MM % is 05 MM value = may
    If MM % is 06 MM value = June
    If MM % == 07 set MM = July
    If MM % is MM value = August 08
    If MM % is MM value = September 09
    If MM % is 10 MM value = October
    If MM % is 11A set MM = November
    If MM % is game MM 12 = December

    the value "DD = % dt: ~ 6, 2%.
    the value "HH = % dt: ~ 8, 2%.
    the value "Min = % dt: ~ 10, 2%.
    Set "s = % dt: ~ 12, 2%.

    Echo DD - MM HH % %% % Min | Clip

    It works

    respect of

    John

  • How to set up a canon ip2600 printer without the cd?

    How to set up a canon ip2600 printer without the cd?

    Windows 8

  • How to set up bluetooth for Windows by toshiba stack

    Trying to install different fireplaces / drivers in order to use the bluetooth features.

    These instructions are incredibly confusing for something seemingly simple. I think I have all the chimneys of nesicery / driver updates however

    Im not very good at this stage. I could use a little help here.

    Hello

    Most Toshiba have start - programs - Toshiba - BlueTooth.

    Check with Toshiba Support, their drivers and documentation online and ask in their forums where he
    others will be with the same or similar models.

    Toshiba - Forums
    http://laptopforums.Toshiba.com/

    Toshiba - Contacts
    http://www.CSD.Toshiba.com/cgi-bin/TAIS/support/JSP/navShell.jsp?CF=su_contact

    Toshiba - drivers - access your model - value downloads - so all operating systems - BlueTooth
    http://www.CSD.Toshiba.com/cgi-bin/TAIS/support/JSP/home.jsp?NAV=download

    Toshiba - Support
    http://www.CSD.Toshiba.com/cgi-bin/TAIS/support/JSP/home.jsp

    ------------------------------------------------------------------------------------------------------------------------

    Information to help you if you need problems (use Toshiba configuration methods to activate BT).

    Hardware devices not detected or does not work - a Mr Fixit
    http://support.Microsoft.com/GP/hardware_device_problems

    Add a BlueTooth device to your computer
    http://Windows.Microsoft.com/en-us/Windows7/add-a-Bluetooth-enabled-device-to-your-computer

    Set up a Bluetooth compatible device
    http://Windows.Microsoft.com/en-us/Windows-Vista/set-up-a-Bluetooth-enabled-device

    The problems with Bluetooth devices
    http://Windows.Microsoft.com/en-us/Windows-Vista/troubleshoot-problems-with-Bluetooth-enabled-devices

    How to set up a Bluetooth connection
    http://www.vista4beginners.com/how-to-setup-a-Bluetooth-connection

    The Bluetooth item in Control Panel on a Windows Vista SP2 computer does not
    as expected when you click on the element - for Windows 7 this check manually
    http://support.Microsoft.com/kb/960531/en-us

    If you need drivers try the support site for the manufacturer of your system and/or the site of the manufacturer of the real device.

    BluetoothView is a small utility that runs in the background and monitor the activity of Bluetooth technology
    devices around you. For each detected Bluetooth device, it displays the following information:
    The device name, address Bluetooth, Major Device Type, minor device Type, first detection time,
    Last detection time and more. BluetoothView can also warn when a new Bluetooth device
    is detected, by displaying a balloon in your bar tasks or playing a little beep. -FREE
    http://www.NirSoft.NET/utils/bluetooth_viewer.html

    BluetoothCL is a small console application that transforms all differential of bluetooth devices detected in
    the standard output. For each Bluetooth device, the following information is displayed: MAC
    Address, name, Major Device Type, minor device Type and possibly the name of the company of
    the device (if the external file of MAC addresses - oui.txt is provided) - FREE
    http://www.NirSoft.NET/utils/bluetoothcl.html

    ---------------------------------------------------------------------

    Change settings for a Bluetooth compatible device
    http://Windows.Microsoft.com/en-us/Windows7/change-settings-for-a-Bluetooth-enabled-device

    Add a Bluetooth device to your computer
    http://Windows.Microsoft.com/en-us/Windows7/add-a-Bluetooth-enabled-device-to-your-computer

    Add a Bluetooth device or other wireless or network device: frequently asked questions
    http://Windows.Microsoft.com/en-us/Windows7/add-a-Bluetooth-or-other-wireless-or-network-device-frequently-asked-questions

    ---------------------------------------------------------------------

    More information of possible interest to some:

    What is a Bluetooth personal area network (PAN) network?
    http://Windows.Microsoft.com/en-us/Windows-Vista/what-is-a-Bluetooth-personal-area-network-Pan

    Connect to a Bluetooth personal area network (PAN) network
    http://Windows.Microsoft.com/en-us/Windows-Vista/connect-to-a-Bluetooth-personal-area-network-Pan

    I hope this helps.

    Rob Brown - Microsoft MVP<- profile="" -="" windows="" expert="" -="" consumer="" :="" bicycle="" -="" mark="" twain="" said="" it="">

  • How to set parental controls for the zone

    Im trying to set up parental controls for children. I have set up for the clock, but they got smart and started to change the time zone. Does anyone know how to set up parental controls for the time zone... At least the name of the program for the time zone. Any help is appreciated, thanks.

    Im trying to set up parental controls for children. I have set up for the clock, but they got smart and started to change the time zone. Does anyone know how to set up parental controls for the time zone... At least the name of the program for the time zone. Any help is appreciated, thanks.

    If you have a superior taste of Windows 7 you can / must define the rights to change the time system and time zone via the policy editor gpedit.msc. They are defined in the strategy/Security Settings user rights assignments / Local. Ensure that only administrators and the Local Service can change these settings.

    If you have a taste less then you need to do it via a number of commands in the console, i.e.
    net localgroup
    NTRights users - r seSystemtimePrivilege-u
    NTRights u users - r seTimezonePrivilege

    You can download ntrights.exe here: http://www.microsoft.com/download/en/details.aspx?id=17657. If you choose this option, you may need to then more detailed instructions. Post again if this is the case.

    Note also that your children are more intelligent, they will find additional methods to bypass your restrictions. If you let me sit in front of your machine then I would be able to do as I please in less than five minutes, without knowing a single password. This means that you may need to solve this problem by teaching ways rather than technical.

  • How to set a checkbox for an indefinite period in a TableView?

    I want to set a TableView with a column that contains a check box.

    This can be done with a statement like this: myColum.setCellFactory (CheckBoxTableCell.forTableColumn (myColumn);

    The problem is how to specify that the display check box is indeterminate?

    You will have to roll you own. The box is buried inside the CheckBoxTableCell. In addition, how you set the indeterminate state is based on the data, and the CheckBoxTableCell is based on a boolean, so only two States property.

    Here is an example that shows a check if the person is frequented your party a dash if they are not, a box unchecked if you just do not know:

        enum Attending { YES, NO, UNKNOWN }
    
        static class Person {
            final String lastName;
            final String firstName;
            ObjectProperty attending = new SimpleObjectProperty<>(Attending.UNKNOWN);
    
            public ObjectProperty attendingProperty() { return attending; }
    
            Person(String lastName, String firstName) {
                this.lastName = lastName;
                this.firstName = firstName;
            }
        }
    

    So for the table, do you something like this:

            Table table = new Table<>();
    
            table.setItems(FXCollections.observableArrayList(new Person("Data", "Test")));
    
            TableColumn attendingColumn = new TableColumn();
            attendingColumn.setCellValueFactory(param -> param.getValue().attendingProperty());
            attendingColumn.setCellFactory(param -> new TableCell() {
                final CheckBox checkBox = new CheckBox() { {
                    setAllowIndeterminate(true);
                }};
    
                @Override public void updateItem(Attending item, boolean empty) {
                    super.updateItem(item, empty);
                    if (empty) {
                        setGraphic(null);
                    } else {
                        switch (item) {
                            case YES:
                                checkBox.setSelected(true);
                                break;
                            case NO:
                                checkBox.setIndeterminate(true);
                                break;
                            case UNKNOWN:
                                checkBox.setSelected(false);
                                break;
                        }
                        setGraphic(checkBox);
                    }
                }
            });
            table.getColumns().addAll(attendingColumn);
    
  • How to set up voicemail for iphone in India 6

    I have airtel postpaid in the iphone 6. My position is in Hyderabad, India. I wanted to set up voicemail for iphone 6. When I treid click phone--> voicemail it displays "call failed".

    I followed a few steps presented on various long. But nothing has worked for me. Please solve the problem

    Hi Anthony sarabu,.

    Given that voice mail is a service provided by your operator, I suggest you contact first to ensure that there are no problems with your account.  This is one of the measures included in the Basic for voicemail troubleshooting.

    Get help with voicemail on your iPhone

    Try these troubleshooting steps for issues with the voicemail on your iPhone:

    1. Restart your iPhone.
    2. Looking for a carrier settings update.
    3. Update your iPhone to the latest version of iOS.
    4. Make sure that your voicemail is set up. You can check this by calling your phone number of your iPhone.
    5. Make sure you have a good cell connection. You can check this by trying to make an outgoing call.
    6. Call your iPhone from another phone and try to leave you a voice message.
    7. Reset your network settings by clicking Settings > General > reset > reset network settings.
    8. Reset your voicemail password.
    9. Contact your carrier and make sure that you have the functionality of voicemail on your plan.

    Take care

  • How to set different color for the table column header

    Can I set different colors for the 4 following as being attached.

    -color of the header text

    -the head of the column of the background color

    -color of the text of the content

    -color of background content

    The value of the cluster - 2, -2 to define all of the cells,

    Then go back and the cluster the value-1, -2 to simply set the line header.

    (If you also had a column of row headers, then -2,-1 would set them.  Course the upper left corner which is the intersection of the column header and row header will change with any of them.)

  • How to set up power for several management options hard drives individually

    original title: Power management for several hard drives

    Power management for hard drive in the control panel offer 1 framework that applies to all readers.

    1. assuming that all readers have disabled for inactivity. If one of the disks are requested locally or on the network, will be then just that turn a drive upward or all readers on the spin from the computer to the top?

    2. is it possible to manage power for readers options individually?

    3 - is the feature of power for hard disk management change between XP, Vista and 7?

    Thank you
    Anders MP.

    Hi amps2007,

    Windows XP, Vista and 7 do not support this feature.
    You have to look at 3rd party management of electricity in order to have the Player control you're wanting.
    I hope this helps.
  • How to set anchor points for objects that have appiled effects scroll?

    I design a one page website with several sections. Each section is scrolled upward at different speeds. Each section also has the key frame different starting points. Most of the sections overlap in fact when in Design view. None of the sections scroll left or right... just straight up.

    How do I set anchor points so that when displaying in the top browser of each section is at the top of the browser window?

    Answered my own question...

    I made my own rule using the tool box and simply marked the length of pixel in design mode, I then saw in the browser and worked on how far down the page that I had scrolled gave me an exact figure to set the anchor point.

Maybe you are looking for