Layer/composition time slide rule analogy

I made a thing:
In case someone other than me was confused by positioning clips with extend script.
In the GUI, I select the part of a video that I want to use by editing it in the footage panel. Essentially, I am trying to make frame n appear at time n in the timeline.
But, the javascript API doesn't do this and as far as I can the documentation does not describe how it works. It refers to the start time and the in point
An analogy that I find helpful is that the composition is like a slide rule (an ancient device your grandmother used. look it up).
Footage is referenced from a layer. Each layer is within a track that is fixed with respect to the composition's timeline and layers contain items.
Using extendscript you effectively push the clip along the track to make what is called the "in point" line up with the place in the timeline where you want it to occur.
As you can see, to make frame 3 occur at frame 2 in the composition, you specify that the in point is 0 and the start time is -1. That was very confusing for me.
So, start time is where in the layer the start of available footage is. The in point is where in the layer the start of video to be rendered will occur.

alt/option + ] for out point
alt/option + [ for in point
Just position the CTI and press the keys.

Similar Messages

  • Taking too much time in Rules(DTP Schedule run)

    Hi,
    I am Scheduling the DTP which have filters to minimize the load data.
    when i run the DTP it is taking too much time in the "rules" (i can see the  DTP monitor ststus package by pakage and step by step like "Start routine" "rules" and "End Routine")
    here it is consuming too much time in Rules Mapping.
    what is the problem and any solutions please...
    regards,
    sree

    Hi,
    Time taken at "rules" depends on the complexity involved there in ur routine. If it is a complex calculation it will take time.
    Also check ur DTP batch settings, ie how many no. of background processes used to perform  DTP, Job class.
    U can find these :
    goto DTP, select goto menu and select "Settings for Batch Manager".
    In the screen increase no of Processes from 3 to higher no(max 9).
    ChaNGE job class to 'A'.
    If ur DTP is still running , cancel it ie Kill the DTP, delete from the Cube,
    Change these settings and run ur DTP one more time.
    U can observer the difference.
    Reddy

  • Can you create a interactive slide rule as an interactive PDF in InDesign?

    I'm trying to create an slide rule tool as an interactive PDF (or swf if need be). So an object needs to be able to be selected and dragged vertically with a mask above it. I created this years ago in flash but ActionScript 2.0 no longer works and an interactive PDF would be a better format.

    Thanks for your response. Yes, I think it would be best to create it in InDesign and export as a swf. Do you know if is there a script I could use drag the objects InDesign? Below is a link to the old swf created with ActionScript 2.0. I was just trying to avoid having to recreate it with Actionscript 3.0. Also, I placed the old one in InDesign and exported as an interactive PDF, and it worked. FYI
    Here is a link of the current swf:
    http://www.afireflystudio.com/HJ3_sh_slide_prod_v1.swf

  • Custom Fast formula for Time Entry Rule in OTL

    Hi,
    i have created custom validation for time entry rules. I need to validate where Project and task fields are null or not? If Yes, it has to fire the custom message that i have mentioned in function. Please check the below code and help me whether i am on right path:
    CREATE OR REPLACE FUNCTION NON_pto_against_projects (
    p_time_category_id NUMBER,
    p_person_id NUMBER
    RETURN VARCHAR2
    IS
    --Variables used for retrieving timecard id and ovn
    l_db_pre_period_start DATE;
    l_db_pre_period_stop DATE;
    l_time_building_block_id hxc_time_building_blocks.time_building_block_id%TYPE;
    l_object_version_number hxc_time_building_blocks.object_version_number%TYPE;
    --Variables used for loading timecard tables
    l_time_building_blocks hxc_self_service_time_deposit.timecard_info;
    l_time_app_attributes hxc_self_service_time_deposit.app_attributes_info;
    l_attributes hxc_self_service_time_deposit.building_block_attribute_info;
    --Variables used for getting exploded time details
    v_blocks_tab hxc_block_table_type;
    v_attr_tab hxc_attribute_table_type;
    l_messages_tab hxc_message_table_type;
    l_detail_blocks hxc_self_service_time_deposit.timecard_info;
    l_detail_messages hxc_self_service_time_deposit.message_table;
    CURSOR csr_category_elements (p_category_id NUMBER)
    IS
    SELECT 'ELEMENT - ' || TO_CHAR (value_id) element_type_string
    FROM hxc_time_category_comps_v
    WHERE time_category_id = p_category_id;
    l_cat_elements_string VARCHAR2 (2000);
    l_temp VARCHAR2 (1000); --Trace message
    l_success_flag CHAR (1); --Return values
    BEGIN
    --Initialize variables
    l_success_flag := 'S';
    l_time_building_blocks := hxc_self_service_time_deposit.get_building_blocks;
    l_attributes := hxc_self_service_time_deposit.get_block_attributes;
    v_blocks_tab :=
    hxc_deposit_wrapper_utilities.blocks_to_array (l_time_building_blocks);
    v_attr_tab :=
    hxc_deposit_wrapper_utilities.attributes_to_array (l_attributes);
    IF v_blocks_tab.FIRST IS NOT NULL
    THEN
    Take each ELEMENT type attribute, and search whether PROJECTS type attribute exists for the SAME BLOCK-START
    FOR index1 IN v_attr_tab.FIRST .. v_attr_tab.LAST
    LOOP
    IF v_attr_tab (index1).attribute_category = 'ELEMENT - %'
    THEN --Element attr
    FOR element_rec IN csr_category_elements (p_time_category_id)
    LOOP
    If Element Attribute matches any of the NON-TOP elements in the Time Category-START
    IF v_attr_tab (index1).attribute_category =
    element_rec.element_type_string
    THEN
    Check PROJECTS Attributes project and task belonging to ELEMENT attribute's owner block-START
    l_success_flag := 'E';
    FOR index2 IN v_attr_tab.FIRST .. v_attr_tab.LAST
    LOOP
    IF v_attr_tab (index2).attribute_category LIKE
    'PROJECT - %'
    AND v_attr_tab (index2).building_block_id =
    v_attr_tab (index1).building_block_id
    AND v_attr_tab (index2).attribute1 IS NOT NULL
    AND v_attr_tab (index2).attribute2 IS NOT NULL
    THEN
    l_success_flag := 'S';
    EXIT;
    END IF;
    END LOOP;
    IF l_success_flag = 'E'
    THEN
    RETURN 'E';
    END IF;
    Check PROJECTS Attributes project and task belonging to ELEMENT attribute's owner block-END
    END IF;
    If Element Attribute matches any of the NON-TOP elements in the Time Category-END
    END LOOP;
    END IF; --Element attr
    END LOOP;
    Take each ELEMENT type attribute, and search whether PROJECTS type attribute exists for the SAME BLOCK-END
    END IF;
    RETURN l_success_flag;
    EXCEPTION
    WHEN OTHERS
    THEN
    RAISE;
    END NON_pto_against_projects;

    INPUTS ARE resource_id (number)
    , submission_date (text)these inputs are passed in PLSQL Code and some of them in formula context
    2. While we define a new context for a time entry rule. How is the data that we enter in the time entry rule passed to the fast formula?See the time Rule entry screen and you will find the parameters window there.

  • Not able to jump to a specific time on a music track (time slider has disappeared!)

    I don't know how it happened (update of iOS version?) but the time indicator saying how far into the music track as well as the time slider allowing me to 'scratch' to a specific time have both disappeared.
    Only the volume slider remains! How can I reinstate the time feature?

    thanks... i suddenly feel rather silly. although i swear i tried everything previously and it didn't work. oh well.

  • Time restricted rule not working.

    BM 3.9 NW 6.5 SP7 iManager 2.6.
    I have a time restricted rule on a couple of web sites so that they can only be accessed outside working hours but they dont appear to work properly. Sometimes the site will be blocked and other times it goes straight to it. Also if I get the access denied page 403 as soon as you hit the back button the site will load and ignore the rule ! Is this a bug or is my rule incorrect ?
    Rule is set for allowable hours between 6pm to 7am with a lunch break between 12 and 2pm. It is alos set on a particular NDS container and I have specified the urls to be blocked. The allow box is ticked as I presumed that this meant it would only allow acces during the specified time. If I switch to deny it doesnt seem to make any difference. I know that if the page has been previously cached it will look for it there first so can I disable cache for this site ?
    Ay help to any part of this problem is much appreciated.

    I can't see the time being an issue as the page originates from the UK which is also where I am. It doesn't appear to work full stop. I added new rules for different web sites and none of them obey the time restrictions. I also tried deleting and recreating, using wildcards and substrings exclusions but nothing appears to make any difference. I have cleared the PC and BM cache as well. Now I cant seem to replicate the initial error when using the back button as the page is displayed anyway. Is there a definition for setting time rules as I cant seem to find much info on it. ie when setting the time restrictions you hughlight the bixes to allow access at those times. Then do you allow access or deny access on the rule ? What do you specify as the url you want to restrict. I itried Source, destination, url just about all options so what are the rule components needed to make it complete. If it helps I want to block Sky Sports | Home during working hours 6am to 12pm and 2pm to 6pm.
    Thanks,
    Jeff

  • Error importing composite with business rules into SVN

    Hello,
    When I import a composite with business rules into Tortoise SVN I get below error.
    Error: Commit blocked by pre-commit hook (exit code 1) with output:
    Error: Path
    Error: '/trunk/ProjectName_SCA/.rulesdesigner/jaxb_classes/com/ProjectName/package-info.class'
    Error: is restricted for commit by pattern '\.class$' for the current user.
    I could import other composites(w/o business rules)
    Thanks

    Further invesitgation bears this problem out.
    Oracle support recommend wrapping the SimpleType in a ComplexType. This does work, but now I have an extra wrapper element to deal with. I either have to use the wrapped type in my other complex, composed Types and/or add an external wrapping element when trying to create Business Services in BPM to call the BusinessRules I've created.
    This is a bit messy.
    To be clear, this does not seem to be an issue with Business Rules; the BR editor and generation of Facts (including simple restricted types -> JAXB 2.0/Java Enumerations) seems to work correctly. There seems to be an issue exposing DFs as Services. The code which generated the WSDL and its supporting types seems to choke on restricted SimpleTypes.
    As a side note, it seems that HumanTasks have a similar limitation
    Edited by: wylderbeast on May 31, 2011 3:27 PM

  • Urgent:Time Entry Rule Creating Issue on Hitting Back Button

    Hello,
    We have created a Time Entry Rule to see if one of the Field either a Department or Project on the TimeCard is entered. The validation works fine for the first time when hitting the continue button.
    However on hitting the back button the validation fires again although department is there. Here is the snippet of the code.
    Can somebody please tell me what is the additional check that i need to perform so as to ensure that it doesnt fir again on hitting the back button.
    i NUMBER := 0;
    j NUMBER := 0;
    l_status NUMBER := 0;
    tc_blocks                Hxc_Self_Service_Time_Deposit.timecard_info;
    tc_attribs                Hxc_Self_Service_Time_Deposit.building_block_attribute_info;
    pragma autonomous_transaction;
    BEGIN
    tc_blocks := Hxc_Self_Service_Time_Deposit.get_building_blocks;
    tc_attribs := Hxc_Self_Service_Time_Deposit.get_block_attributes;
    hr_utility.set_location ('Prior Loop',1);
    i := tc_blocks.FIRST;
    --hr_utility.trace_on(null,'ORACLE');
    hr_utility.set_location ('Entering ff_formulas_pkg.OGER_CHK_TIMECARD_FIELDS', 1);
    WHILE i IS NOT NULL
    LOOP
    IF(tc_blocks(i).scope = 'TIMECARD') THEN
    j:=tc_attribs.FIRST;
    WHILE j IS NOT NULL
    LOOP
    BEGIN
    INSERT INTO LOG VALUES(UPPER(tc_attribs(j).attribute_category)||' '||tc_attribs(j).attribute6);
    commit;
    IF (UPPER(tc_attribs(j).attribute_category) = 'ELEMENT - 176' and (tc_attribs(j).attribute6 IS NOT NULL OR tc_attribs(j).ATTRIBUTE3 IS NOT NULL)) THEN
    l_status := 1;
    EXIT;
    END IF;
    END;
    j:=tc_attribs.NEXT(j);
    END LOOP;
    END IF;
    i:=tc_blocks.NEXT(i);
    END LOOP;
    RETURN l_status;
    Regards,
    Gayatri

    Hello Tim,
    Thanks for the response. The TER is set to Submission/Resubmission.
    Can you please suggest me if this is correct? Also could you pls take a look at the code pasted above and let me know if that is correct.
    Regards,
    Gayatri

  • Importing quick time slide shows to dreamweaver site

    I can't seem to import a mac osx quick time slide show to my
    web site. Anyone know how to do this?

    There is a part of the website here referred to as the
    Exchange:
    http://www.adobe.com/cfusion/exchange/?ogn=EN_US-gntray_comm_exchange_home
    It is under the Community drop-down up at the top of this
    site. This is a resource that allows you to find and download
    plugins for all of the Adobe programs. If you go to that link, then
    on the right click on Advanced Search. Then search for "quicktime"
    for the exchange "Dreamweaver". Just searching now, the second one
    is what you need:
    http://www.adobe.com/cfusion/exchange/index.cfm?event=extensionDetail&extid=16025
    Just download the file and double-click on the file that you
    save to your computer. The Adobe Extension Manager will launch and
    should install it automatically for you (please note that DW must
    be shut down for the install to work).
    I gave you both links so you can find what you need quickly
    and so that you can search through the exchange later in case there
    are other extensions that might help you out.

  • On my mac I have both Quicktime X and Quicktime 7 pro. Both applications seem to be crashing quite often lately. This happens when playing all files types. I notice it more with .flv file. It usually happens when i grab the time slider bar and try to move

    On my mac I have both Quicktime X and Quicktime 7 pro. Both applications seem to be crashing quite often lately. This happens when playing all files types. I notice it more with .flv file. It usually happens when i grab the time slider bar and try to move it. The apps will freeze and I have to "force quit" to get them to close. Sometimes putting the computer to sleep and waking it up helps. Is there a way to remedy this?

    Oops, I needed to update my profile. I have snow leopard now

  • Any alternative to the Time Slider ?

    I am trying to import with my iMovie 09 video editor so that each thumbnail represents the first image of each "take" and lasts the number of seconds elapsed until I pressed "Standby" on my Sony Video Handycam again. In other words I would like if each thumb-nail covered the duration of the clip between each "Run" and "Standby" instruction pressed on my camera, using the very first frame as thumbnail identification.
    Instead, I find that I am stuck with the time-slider which covers a precise number of seconds without reference to the duration of individual video "takes."
    Can I adjust this by using "Preferences" ?
    Please help.

    Well, thank you for a very prompt reply.
    But my problem persists. When I place the time slider to All in the Events section I get just one thumbnail covering upto 30 minutes of video-ing which had many run and standby instructions. When I do the same thing within the Project (which incidentally I am currently editing) I get a selection of thumb-nails, - some covering a single take (perhaps because I have edited that far) and some covering a series of takes. It is a very tiresome process scanning each clip in the time slider until I reach a genuine change and having to make a "split clip" edit at that point. AND then having to ensure the new clip has a representative thumbnail. My iMovie 09 is up-to-date with version 8.0.6.
    Perhaps you have further suggestions.
    Many thanks in advance.
    Patrick
    Am I alone ?

  • How do I stop Photoshop CS4 from creating a new layer each time I use the line tool?

    How do I stop Photoshop CS4 from creating a new layer each time I use the line tool?
    Each time I use the line tool, a new layer is created. How can I stop this? No settings were changed.
    Thanks in advance.

    Look at the three options in the top bar.

  • How a time entry rules based on mapping works?

    Thanks a lot in advance for your help. I need to understand a seeded time entry rule Overlapping Time Entries. it looks like this:
    Name: Overlapping Time Entries
    Description: Seeded Overlapping Time Entries
    Usage: Submission / Resubmission / Delete
    Formula: NA
    Mapping: OTL Deposit Process Mapping
    I have done several time entry rule based on fast formula, but I don't understand this one that based on Mapping, could someone help me understand how it works?
    Thanks!
    -Bill

    Hello All,
    We are also having a Similar Issue , where Employees can enter work Hours on Holidays also.
    Eg:
    Sunday
    Regular: 08:00 to 10:00
    2hrs
    Holiday: 08:00 to 17:00
    8hrs
    Total 10 Hrs
    Iam getting the Overlapping Error when trying to save/continue.
    Can anyone Please help on this ?
    Hi Bill,
    were u able to resolve the issue.
    thanks,
    Rams
    Apps Consultant

  • OTL Custom Formula not visible in Time Entry Rule window

    Hi Friends,
    I have created a custom Fast Formula of type 'OTL Time Entry Rules'. Created a context with segments for the OTL Formulas Flex Field with formula name same as of the context. But the formula is not visible in the in the time entry rule window.
    Can any one please suggest what is the reason for this?
    Many many thanks in advance.

    Hi,
    Check whether you have given the description for your custom Fast formula while defining the FF in the Write Formula screen.
    Coz, In the Time Entry rules window you will see the description of the fast formula .
    Though the description iss not a mandatory field while defining the FF in the Write Formula screen the time entry rule will take only the description of the FF instead of the FF Name.
    Get beack to me if you need further info.
    Thanks,
    Anuradha

  • Otl time entry rule

    how can i remove validation(time entry rules)?
    thanks

    The time entry rules for your user are defined by the preferences.
    These can be attached at a number of different levels.
    Kind regards,
    Andrew

Maybe you are looking for

  • Slow performance of JDBC - ODBC MS ACCESS

    I experience a very slow performance for jdbc-odbc using ms access as the database. This program works fine with other computer (in term of performance). However, the harddrive is cranking big time with this computer (this is the fastest one among th

  • While creating external table getting KUP-01005 error

    ORA-29913: error in executing ODCIEXTTABLEOPEN callout ORA-29400: data cartridge error KUP-00554: error encountered while parsing access parameters KUP-01005: syntax error: found "identifier": expecting one of: "badfile, byteord ermark, characterset,

  • Table name in which return item data is stored of a PO

    Can some please specify the table name in which return item data is stored of a PO? Thanks in advance;

  • Passing Search Parameter to SRM-MDM Through the URL

    Greeting all, I would like to know how I can pass a search parameter to SRM-MDM using the URL in the web browser. This is needed to display the result directly instead of listing the whole catalog contents. I am trying to pass a search parameter (Tex

  • Adobe Form Print Problem - Header is cut off without print preview

    We are currently experiencing a problem when trying to print Adobe forms.  We have created several forms and are experiencing the same issue with all forms.  The issue occurs when we are trying to print a form.  If we choose a print preview prior to