Setting a marker duration

Hello,
I'm using the PProPanel as a base.  In the 'Add Sequence Markers' there is code that can set a marker.  It looks like this:
var new_web_marker  = markers.createMarker(14.345);
new_web_marker.name = 'Web marker created by PProPanel.';
new_web_marker.comments = 'Here are some comments, inserted by PProPanel.';
new_web_marker.end.seconds = 15.6789;
new_web_marker.setTypeAsWebLink("http://www.adobe.com", "frame target");
The piece that is not working for me is the duration or marker.end.
Has anyone tried this with success?
thanks,
Kelly

@bbb_999
Hey bruce Just been checking updates from GIT
- I installed 'PProPannel.zxp' I see some possible discrepancies between imported markers in sample plugin with EXPORT > Markers - CSV
1. Expected values import via plugin
var new_comment_marker = markers.createMarker(12.345);
new_comment_marker.name  = 'Marker created by PProPanel.';
new_comment_marker.comments = 'Here are some comments, inserted by PProPanel.';
new_comment_marker.end = 15.6789;
var new_web_marker = markers.createMarker(14.345);
new_web_marker.name  = 'Web marker created by PProPanel.';
new_web_marker.comments = 'Here are some comments, inserted by PProPanel.';
new_web_marker.end = 15.6789;
new_web_marker.setTypeAsWebLink("http://www.adobe.com", "frame target");
2. Markers added to premiere (as expected)
Full screen version
CSV Export output (issues as highlighted)
Marker Name
Description
In
Out
Duration
Marker Type
00:20:59:18
00:20:59:18
00:00:00:00
Comment
00:40:55:00
00:40:55:00
00:00:00:00
Comment
Remarks
Im on cc 2014.1/PPro Version: PPro 8.1.0x81 (so couple of updates behind).
Hope this is enough to be useful (01:37 here ; )

Similar Messages

  • Set Marker Duration (In/Out Points of Marker) Keyboard Shortcut

    Is there a keyboard shortcut for setting the In and Out point of a Marker?
    I am editing interviews and would like to use Marker Ranges to indicate responses/topics.
    So, I would like to have a keyboard shortcut as easy as "I" or "O" to set the In and Out point of a Marker Range.
    The only option that I can see is to pull up the Edit Marker Box and manually adjust Duration.
    This won't work because I want to set this Marker Range on the fly as I watch the clip.

    That would be a nice feature.
    FEATURE request 

  • Problem in setting dynamic expiration duration from Human Task

    Hi,
    I have a BPEL process, in which the Human task expiration has to be set dynamically..
    In the , I have set the expiration duration with this :-
    <copy>
    <from expression="xp20:format-dateTime(xp20:current-dateTime(),'PT1M')"/>
    <to variable="initiateTaskInput" part="payload"
    query="/taskservice:initiateTask/task:task/task:systemAttributes/task:expirationDuration"/>
    </copy>
    Do not get confused with 'PT1M' .. I want the duration to be 1 minute... Had I used 'PT1M' as a String and assign to the expirationDuration var, it would have caused an error... It needs to be fromatted as a Date..That's y i took this approach ... I am sure this is working fine as I have checked the payload of the task..
    It has a proper duration..
    <initiateTaskInput><part xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" name="payload"><initiateTask xmlns="http://xmlns.oracle.com/bpel/workflow/taskService">
    <task xmlns="http://xmlns.oracle.com/bpel/workflow/task">
    <systemAttributes>
    <expirationDuration>PT1M</expirationDuration>
    Now in the Human task definition(.task file), I have set the expiration duration with "By Expression" option in this way..
    <globalConfiguration>
    <owner>oc4jadmin</owner>
    <expirationDuration duration="/task:task/task:systemAttributes/task:expirationDuration"
    type="XPATH"/>
    </globalConfiguration>
    The problem is the task(at runtime) cannot evaluate the expirationDuration from the XPATH..
    I checked with the WF_TASK table in the orabpel schema ...
    When I use a static duration EXPIRATIONDURATION cloumn gets assigned properly (ie PT1M).. But when i take the XPATH approach, it translates to PT0S.
    Can someone look into this please ?
    Struggling with this for quite sometime...
    saptarishi

    If the Human Task shows status complete, then it's possible that there was an error in the output data association in the process. In EM do you see a fault on the output for the Human Task activity, or if PS4FP the process will go to suspended state if the data association fails.

  • How to set the transition duration of a slide in keynote with applescript

    hi
    how to set the transition duration of a slide in keynote with applescript
    i made an applescript script which converts a numbers file to a keynote presentation
    figured out how to set the transitions but cant find how to set the time
    +set appTransition of slideTransition of current slide to "apple:dissolve"+
    anyone?

    you can send keystrokes to invoke menu commands via shortcuts but as for transition time not sure. You've check the dictionary right? Scripting support is very limited in KN.

  • How can I set up week duration fom Monday up to Sunday?

    Hi to all!
    I have a problem. When I'm trying to approve Sunday's working time in MSS I don't see right full hours for the past week for my subordinates. In my opinion this is because I've got week duration from sunday up to suturday in my SAP HR customizing, therefore Sunday is a first day of new week, but not last day of past week.
    Let me know please how can I set up week duration fom Monday up to Sunday and fix my problem?
    Thanks.

    Hi,
    Check the Daily work schedule (DWS)   & period work schedule (PWS) in your time config....
    Regards,
    Mahesh

  • Set Case-Milestone duration in java: update not seen in workspace

    Hi
    I created the following method to set the duration of a phase's end-milestone based on the start milestone being attained:
        public static void setFaseDeadline(Connector connector, CaseIdentifier caseIdentifier, String phaseStartMilestoneName, String phaseEndMilestoneName) throws CaseServiceException {
            CaseMilestone startMilestone = getCaseMileStone(connector, caseIdentifier, phaseStartMilestoneName);
            if (startMilestone != null) {
                pl("State startMilestone: " + startMilestone.getState());
                CaseMilestone endMilestone = getCaseMileStone(connector, caseIdentifier, phaseEndMilestoneName);
                pl("State endMilestone: " + endMilestone.getState());
                if ("ATTAINED".equals(startMilestone.getState()) &&
                    "NOT_ATTAINED".equals(endMilestone.getState())) {
                    Calendar deadLine = startMilestone.getUpdatedDate();
                    pl("Start Milestone updated: " + formatCalendar(deadLine));
                    deadLine.add(Calendar.MINUTE, 5);
                    endMilestone.setDeadline(deadLine);                
                    pl("End Milestone Deadline: " + formatCalendar(endMilestone.getDeadline()));
                    pl("End Milestone Deadline Duration: " + endMilestone.getDeadlineDuration());
    It seems to work fine, duration gets set, however in the workspace I don't see that the milestone is updated.
    The milestones are fetched by
            ICaseService caseService = getCaseService();
            List caseMilestoneList = caseService.getCaseMileStones(context, caseIdentifier);
    This is because the getMilestones method from the case does not deliver me any milestone.
    It seems that this gets me a copy of the milestones instead of the actual milestones
    Anyone an idea how to set the actual duration?
    Thanks in advance.

    In code above you see that I print the duration after that I set it.
    I created an example class that lists all the milestones:
            List caseMilestoneList = connector.getListOfCaseMilestones(caseIdentifier);
            pl("Case Milestone List size = " + caseMilestoneList.size());
            for (CaseMilestone caseMilestone : caseMilestoneList) {
                pl("Case Milestone Name: " + caseMilestone.getObjectName());
                pl("Case Milestone DisplayName: " + caseMilestone.getObjectDisplayName());
                pl("Case Milestone State: " + caseMilestone.getState());
                pl("Case Milestone Deadline: " + caseMilestone.getDeadline());
                pl("Case Milestone Deadline Duration: " + caseMilestone.getDeadlineDuration());
    This shows that the changed caseMilestone does not get saved to the case. Does anyone know how to save this change to the actual case?
    Oh, by the way, I'm using BPM 12c (12.1.3)

  • How do i set the event duration default

    how do i set the event duration default on my iphone calendar.  it is preset to 1 hour and i want to change the dafault duration time

    Every Printer driver allow you to save a set of settings.
    For instance,
    I defined
    A4 black & white
    A4 colors
    listings black & white (which prints two pages on an A4 sheet)
    listing colors (which prints two pages on an A4 sheet)
    Do the same with your settings.
    Use the item Enregistrer or the item Enregistrer sous to save your settings.
    Yvan KOENIG (VALLAURIS, France) jeudi 15 septembre 2011 18:40:26
    iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8 and 10.7.0
    My iDisk is : <http://public.me.com/koenigyvan>
    Please : Search for questions similar to your own before submitting them to the community

  • How to set water marking in sharepoint 2010 document library

    hi,
    we have one requirement for Water marking. i have one document library in that document documents is there when downloading documents that time we have set water marking to  download document using programmatically

    You can check this link:
    http://social.msdn.microsoft.com/Forums/sharepoint/en-US/180acc9f-b7f2-467a-84e0-db78b2cdf793/how-to-set-a-water-mark-for-a-new-document-uploading-a-document-in-document-libary?forum=sharepointcustomizationlegacy
    _eNo_,
    Moderator Note: Never propose your own posts as answers. The "Propose as Answer" function is for people to propose the good answers of other people. It is not for self-proposing.

  • How to set Account Lockout Duration at 5 minutes.

    please suggest how to set Account Lockout Duration at 5 minutes.?

    Your question is not very clear but I assume you are referring to setting of the Account Lockout Duration for a user in weblogic realm.
    Please refer to the below link for the same:-
    http://docs.oracle.com/cd/E13222_01/wls/docs81/secmanage/passwords.html
    -Sandeep

  • Set Marker 'Duration' Attribute

    Hey there,
    I am having serious problems with a seemingly easy task: I want to set the Layer Marker's "Duration" Attribute via ExtendScript. The Scripting Guide tells me two things:
    1) There is a setValueAtTime method, which does work with the Marker–Property. But the Duration is not listed unter the MarkerValue parameters! They are (CS6 Scripting Guide page 102):
    new MarkerValue(comment, chapter, url, frameTarget, cuePointName, params)
    2) But only one page later it tells me that there is a Duration Attribute, which is read/write (CS6 Scripting Guide page 103)
    MarkerValue duration attribute
    app.project.item(index).layer(index).property("Marker").keyValue(index).duration
    Description
    The marker’s duration, in seconds. The duration appears in the Timeline panel as a short bar extending from the marker location.
    Type
    Floating point; read/write.
    How the ** can i set this?

    I think something like this will work:
    var myLayer = app.project.activeItem.layer(1);
    var myMarkerVal = new MarkerValue("test comment");
    myMarkerVal.duration = 1.5;
    myLayer.property("Marker").setValueAtTime(2, myMarkerVal);
    Dan

  • N8 Can I set a time duration on Profiles?

    Is there a way to set the duration of a Profile? Whenever I put it on Silent, I usually forget to set it back to General! 

    Nokia bubbles from beta labs also supports timing on profiles and is also really cool betalabs.nokia.com/apps/nokia-bubbles/download_and_installation
    If I have helped at all, a click on the White Star is always appreciated :
    you can also help others by marking 'accept as solution' 

  • Set Trim Marks distance

    Hi all!
    I have a problem. I have to create an add for a magazine.
    In the technical requirements they say that "the size of the ad file equals to the trim size of the magazine plus 15mm from each side (5mm of bleed box plus 10 mm for trim marks, file name, date and time). The trim box is to be centered strictly in the PDF file".
    So I wonder how (and if) it's possible to set the  10mm-size for the trim marks.
    Thanks in advance

    ID will allow you to change the offset of the automatic crop marks when you export a PDF, but the automatic marks are shorter than 10 mm, so my inclination would be to use manually generated marks instead, and this is the workflow I would use:
    Set up the new file with the document size at the trim dimensions. Click the more options button to show the Bleed and Slug field if they are not showing already, and enter 5mm in the bleed size fields (by default these fileds are linked, so you can enter the number in the first field then move on to the Slug and they will all fill) then ente 15 mm in the first Slug box and click the chainlink symbol to fill the other three. Press OK.
    Your document will show boxes for the the page edge (and any margins you set), and outside that a red line indsicating the Bleed, and a cyan line indicating the slug area. Add a text box and type any page info you like into it in the slug area outside the bleed box, or you can use the Page Info automatic marks during export to add the filename, date and time.
    Build your ad, being sure to extend any color that hits the page edge out to the bleed guide.
    When you are finished, add a frame with no fill and no stroke the size of the page (trim) and select it. Open the Scripts panel and under Application find the Sample Scripts folder, then Javascript, and finally CropMarks.jsx. Double click the script. In the dialog, set the length of the marks to 10mm and the offset to 5mm (thpe in the units, ID will convert them to points), and click the "entire selection" radio button, and uncheck the Registration Marks box:
    The script will add a layer with the marks.
    When you export, go to the Marks and Bleeds screen and be sure you check the Include Slug Area box under bleed (the bleed size itself is now irrelevant). Also set the crop mark offset to 5mm and check the box for Page info if you didn't include that manually.

  • Skipping weekends while setting the expiration duration in Human task

    Hi,
    I need the task to expire after 5 days.
    If I give a 'Fixed Duration' of 5 days, that would mean weekends are included as well.
    How can I avoid this?
    Any help will be greatly appreciated.
    Thanks,
    Vivek

    Hi Bill,
    Thanks for the reply.
    I have done the the first part of what you suggested, namely:
    - Created a calendar called QCalendar (Monday to Friday, 8 hours)
    - Created a Organizational Unit called QUnit and associated the QCalendar with it.
    - Added a group called QGroup to the Org Unit
    - Created a task with one stage, and assignee as QGroup. Task Expiration is set at 10 days. 'UseBusinessCalendar' attribute is set to true.
    This does not work. Weekends are still considered.
    I felt I was missing something, and I believe that is what you mention when you say - 'Here's where I'm not entirely certain about this... I believe you will have to map the name of the org unit into the task payload using an association.'
    Can you please elaborate on that part?
    Thanks again,
    Vivek

  • Easy question, I hope: how do I set crop marks?

    I  just want to specify where the bleed will be. Thaaank you.

    in the print dialog box you can grab the Color Managment drop down and get to the output options.
    set your bleed and turn on the Crop Marks toggle and you will be able to see where you bleed marker is landing.

  • Problems setting still photo duration??

    How do you REALLY change and fit the transition and clip duration to what you want it to be? I have tried everything and researched it long enough.This has been a long-time problem with a lot of users - I'm surprised and disappointed Apple hasn't helped anyone through this by giving a solution THAT WORKS.
    The last thing I tried was...
    delete all transitions
    set the still photo duration to what I want it to be (3.0sec)
    add transitions back
    But when I add them the still photo duration jumps to 4.0sec?? When I then go back and click on the photo to change duration for all photos, the time increases by 1.0 sec every time I adjust it back to my original 3.0 input. Right now it is at 8.0 sec???!!
    Can someone help me with the steps to do this? I really don't want to start all over, I'd rather input photo settings for each picture then find the pictures again to add to my project.
    *Yes I realize that the project settings (command+J) probably need to correspond - that is what makes sense to me, at least *

    Wait!
    I think I figured it out - If anyone has this problem, go to preferences and "unclick" - ADD AUTOMATIC TRANSITION DURATION in Browser catagory at the bottom. Then hit command+J to go to project properties and know that PHOTO DURATION + TRANSITION DURATION = the number of seconds you see when you click on your still photo.
    Hopefully that helps someone out there.

Maybe you are looking for