Move the indicator to the end or beginning of project timeline

Using PE 13.1 in a WIN7 PC...

Is there an easy way to move the indicator in the timeline to the end of the project?  Or even at the beginning?

Whenever we use the button display the timeline indicator jumps at the beginning of the project, which can be a pain when we don't work at the end.

The only way I could go to the end of a project, once made by pressing the icon to go to the next edit Point several times.

HOTELECHOMIKE

Hittting the key Home take the timeline indicator to the beginning of the timeline.

And pressing the button end should take the indicator timeline until the end of the content of the timeline.

Any... click on the work area bar in the area you are in order at this point, the indicator of chronology.

There is yet another... go to edit Menu/preferences/general and remove the check mark next to the preference named "Play work area after previews." The timeline indicator will be in the same place before and after the timeline is rendered.

Please consult the bulletin and review, and then let us know if everything above worked for you.

Thank you.

RTA

Tags: Premiere

Similar Questions

  • How to move the ends of the lines slanted towards the limits of the purge

    Hi all

    I developed a script that deletes the page elements to the purge. To achieve this, that I collect all the elements of the page (with the exception of text blocks) located partially on the editing table, create a temporary mask and 'trim' with subtraction of Pathfinder function. However, this approach does not work with graphic lines so I'm trying to move the ends of the lines to the limits of the substantive area lost. (I guess these are simple straight lines consisting of two end points).

    screengrab.png

    I knew how to deal with orthogonal lines - it's pretty easy:

    if (theItem.constructor.name == "GraphicLine" && theItem.paths.length === 1) {
         path = theItem.paths[0];
         if (path.pathPoints.length === 2) {
              ep = path.entirePath;
              w = ep[1][0]-ep[0][0];
              h = ep[1][1]-ep[0 ][1];
              
              if (w > h) {
                   newEp = [ [ spreadWithBleedBounds[1], ep[0][1] ], [ spreadWithBleedBounds[3], ep[1][1] ] ];
                   path.entirePath = newEp;
              }
              else if (h > w) {
                   newEp = [ [ ep[0][0], spreadWithBleedBounds[0] ], [ ep[1][0], spreadWithBleedBounds[2] ] ];
                   path.entirePath = newEp;
              }
         }
    }
    

    This moves A1 - A2, B1 , B2, C1 , C2, D1 to D2.

    But how to treat skewed lines? How to calculate the coordinates of the point E2 and F2? Y at - it a magic formula? Or can someone point me to the right direction: for example a book to read?

    I assume this has something to do with geometry/trigonometry, but I haven't studied this kind of things at school. (I graduated from an art school - designed to draw naked models instead).

    If someone will answer my question, please do it on basic level since I'm a total noob in the present.

    Here's the script:

    if (Number(String(app.version).split(".")[0]) == 7) ErrorExit("This script can't work with InDesign CS5 so far.", true);
    
    var doc = app.activeDocument;
    var spreadBounds, spreadWithBleedBounds, gPartiallyOutOfSpreadItems;
    var ungroupErrors = 0;
    
    var originalHorUnits =  doc.viewPreferences.horizontalMeasurementUnits;
    var originalVerUnits =  doc.viewPreferences.verticalMeasurementUnits;
    doc.viewPreferences.horizontalMeasurementUnits = doc.viewPreferences.verticalMeasurementUnits = MeasurementUnits.INCHES;
    doc.viewPreferences.rulerOrigin = RulerOrigin.spreadOrigin;
    doc.zeroPoint = [0, 0];
    
    if (doc.layers.itemByName("Temporary Layer") == null ) {
         var tempLayer = doc.layers.add({name:"Temporary Layer"});
    }
    else {
         var tempLayer = doc.layers.itemByName("Temporary Layer");
    }
    
    UngroupAllGroups(doc.groups);
    
    DeleteObjectsOnPasteboard();
    ProcessSpreads(doc.spreads);
    ProcessSpreads(doc.masterSpreads);
    
    tempLayer.remove();
    
    doc.viewPreferences.horizontalMeasurementUnits = originalHorUnits;
    doc.viewPreferences.verticalMeasurementUnits = originalVerUnits;
    
    var msg = (ungroupErrors > 0) ? " Failed to ungroup " + ungroupErrors + " groups since they are too large." : "";
    alert("Done." + msg, "Trim Pages Script");
    
    //================================== FUNCTONS ===========================================
    function ProcessSpreads(spreads) {
         var spread, path, ep, w, h;
         for (var s = 0; s < spreads.length; s++) {
              spread = spreads[s];
              spreadBounds = GetSpreadBound(spread, false);
              spreadWithBleedBounds = GetSpreadBound(spread, true);
              
              gPartiallyOutOfSpreadItems = GetPartiallyOutOfSpreadItems(spread);
              
              var theItem, theMask, newItem;
              for (var i = gPartiallyOutOfSpreadItems.length-1; i >= 0; i--) {
                   theItem = gPartiallyOutOfSpreadItems[i];
                   if (theItem.constructor.name == "GraphicLine" && theItem.paths.length === 1) {
                        path = theItem.paths[0];
                        if (path.pathPoints.length === 2) {
                             ep = path.entirePath;
                             w = ep[1][0]-ep[0][0];
                             h = ep[1][1]-ep[0 ][1];
                             
                             if (w > h) {
                                  newEp = [ [ spreadWithBleedBounds[1], ep[0][1] ], [ spreadWithBleedBounds[3], ep[1][1] ] ];
                                  path.entirePath = newEp;
                             }
                             else if (h > w) {
                                  newEp = [ [ ep[0][0], spreadWithBleedBounds[0] ], [ ep[1][0], spreadWithBleedBounds[2] ] ];
                                  path.entirePath = newEp;
                             }
                        }
                   }
                   else {
                        theMask = CreateMask(spread);
                        try {
                             newItem = theMask.subtractPath(theItem);
                        }
                        catch (err) {
                             $.writeln("2 - " + err);
                             theMask.remove();
                        }
                   }
              }
         }
    }
    //--------------------------------------------------------------------------------------------------------------
    function IsPartiallyOutOfSpread(pageItem) {
         var result = false;
         if (pageItem.constructor.name == "TextFrame" ||
              pageItem.constructor.name == "Group" ||
              pageItem.parent.constructor.name == "Group")
         {
              return result;
         }
    
         var visBounds = pageItem.visibleBounds;
         if (visBounds[0] < spreadBounds[0] && visBounds[2] > spreadBounds[0] ||
              visBounds[1] < spreadBounds[1] && visBounds[3] > spreadBounds[1] ||
              visBounds[2] > spreadBounds[2] && visBounds[0] < spreadBounds[2] ||
              visBounds[3] > spreadBounds[3] && visBounds[1] < spreadBounds[3]  ) {
              result = true;
         }
         return result;
    }
    //--------------------------------------------------------------------------------------------------------------
    function GetSpreadBound(spread, bleed) { // including bleed -boolean
         if (bleed == undefined) bleed = false;
         
         with (doc.documentPreferences) {
              var topBleed = documentBleedTopOffset
              var leftBleed = documentBleedInsideOrLeftOffset;
              var bottomBleed = documentBleedBottomOffset;
              var rightBleed = documentBleedOutsideOrRightOffset;
         }
    
         var bFirst = spread.pages.item(0).bounds; // bounds of the first page
         var bLast = spread.pages.item(-1).bounds; // bounds of the last page
         return [     ((bleed) ? bFirst[0]-topBleed : bFirst[0]), 
                        ((bleed) ? bFirst[1]-leftBleed : bFirst[1]), 
                        ((bleed) ? bLast[2]+bottomBleed : bFirst[2]), 
                        ((bleed) ? bLast[3]+rightBleed : bLast[3])
                        ];
    }
    //--------------------------------------------------------------------------------------------------------------
    function CreateMask(spread) {
         var unitValue = new UnitValue (app.pasteboardPreferences.minimumSpaceAboveAndBelow, "mm");
         var unitValueAsInch = unitValue.as("in");
         var outerRectangleBounds = [spreadWithBleedBounds[0]-unitValueAsInch, 
                                                                spreadWithBleedBounds[1]-8.07, 
                                                                spreadWithBleedBounds[2]+unitValueAsInch, 
                                                                spreadWithBleedBounds[3]+8.07
                                                                ]; 
    
         var outerRectangle = spread.rectangles.add(tempLayer, undefined, undefined, {geometricBounds:outerRectangleBounds});
         var innerRectangle = spread.rectangles.add(tempLayer, undefined, undefined, {geometricBounds:spreadWithBleedBounds, fillColor:doc.swatches.item("Black"), fillTint:30});
         var mask = outerRectangle.excludeOverlapPath(innerRectangle);
         return mask;
    }
    //--------------------------------------------------------------------------------------------------------------
    function GetPartiallyOutOfSpreadItems(spread) {
         var allPageItems = spread.allPageItems;
         var partiallyOutOfSpreadItems = [];
         var currentItem;
         
         for (var i = 0; i < allPageItems.length; i++) {
              currentItem = allPageItems[i];
              if (IsPartiallyOutOfSpread(currentItem)) partiallyOutOfSpreadItems.push(currentItem);
         }
         
         return partiallyOutOfSpreadItems;
    }
    //--------------------------------------------------------------------------------------------------------------
    function DeleteObjectsOnPasteboard() {
         var objs = app.documents[0].pageItems.everyItem().getElements();
         while (obj=objs.pop()) {
              try {
                   if(obj.parent instanceof Spread || obj.parent instanceof MasterSpread){ obj.remove() }
              }
              catch(err) {
                   //$.writeln("2 - " + err);
              }
         }
    }
    //--------------------------------------------------------------------------------------------------------------
    function ErrorExit(myMessage, myIcon) {
         alert(myMessage, "Trim Pages Script", myIcon);
         exit();
    }
    //--------------------------------------------------------------------------------------------------------------
    function UngroupAllGroups(groups) {
         for (var i = groups.length-1; i >= 0; i--) {
              var gr = groups[i];
              if (gr.groups.length > 0) {
                   var subGroups = [];
                   for (var j = gr.groups.length-1; j >= 0; j--) {
                        subGroups.push(gr.groups[j].id);
                   }                    
                   try {
                        gr.ungroup();
                   }
                   catch(err) {
                        //$.writeln("1 - " + err);
                        ungroupErrors++;
                   }
              
                   for (var k = subGroups.length-1; k >= 0; k--) {
                        try {
                             doc.groups.itemByID(subGroups[k]).ungroup();
                        }
                        catch(err) {
                             //$.writeln("2 - " + err);
                             ungroupErrors++;
                        }
                   }
              }
              else {
                   try {
                        gr.ungroup();
                   }
                   catch(err) {
                        //$.writeln("1 - " + err);
                        ungroupErrors++;
                   }
              }
         }     
    }
    //--------------------------------------------------------------------------------------------------------------

    Thanks in advance.

    Kasyan

    Hi Kasyan!

    I was not trying to integrate this into your script, so you may need to adjust a little. The trick is to define a function that detects the point of intersection of two lines - and, of course, you must call it for lines that will not fail to cross the border of the page! (Otherwise, it would simply expand * any * the line upward and on the border.)

    I think it would be wise to predict a small mistake for lines that seem to run "up to" the edge of the page - I tested a line for 'x '.<= 0"="" on="" a="" line="" that="" appeared="" to="" start="" on="" 0;="" the="" control="" panel="" told="" me="" so.="" however,="" i="" didn't="" type="" that="" 0="" in;="" i="" dragged="" the="" line="" to="" the="" edge.="" apparently,="" it="" was="" *not*="" at="" precisely="" "0mm",="" but="" something="" like="" "0.001mm",="" because="" the="" script="" simply="" didn't="" "see"="" the="">

    My function comes from this page: http://local.wasp.uwa.edu.au/~pbourke/geometry/lineline2d/ and I did not test it does of orthogonal lines

    (but of course, you could add this in exceptional cases), and it's my script extending the line, with a small wrapper to configure things.

    The function tests * any * tail against * any * other line, so if we meet the page bounding box, I get the intersection with the purge of the side area where it crosses the bbox page.

    line = app.selection[0];
    // pg size in "regular" [y1,x1, y2,x2] format
    pagebbox = [0,0, app.activeDocument.documentPreferences.pageHeight,app.activeDocument.documentPreferences.pageWidth ];
    bleedDist = 5; //
    bleedbbox = [ pagebbox[0] - bleedDist, pagebbox[1] - bleedDist, pagebbox[2] + bleedDist, pagebbox[3] + bleedDist ];
    pt1 = line.paths[0].pathPoints[0].anchor;
    pt2 = line.paths[0].pathPoints.lastItem().anchor;
    // Start point:
    if (pt1[0] <= pagebbox[1] || pt1[0] >= pagebbox[3] ||
     pt1[1] <= pagebbox[0] || pt1[1] >= pagebbox[2])
    {
     if (pt1[0] <= pagebbox[1])
      intersectPt = IntersectionPt ( [pt1, pt2], [ [ bleedbbox[1], bleedbbox[0]], [bleedbbox[1], bleedbbox[2] ] ] );
    
     if (pt1[0] >= pagebbox[3])
      intersectPt = IntersectionPt ( [pt1, pt2], [ [ bleedbbox[3], bleedbbox[0]], [bleedbbox[3], bleedbbox[2] ] ] );
    
     if (pt1[1] <= pagebbox[0])
      intersectPt = IntersectionPt ( [pt1, pt2], [ [ bleedbbox[1], bleedbbox[0]], [bleedbbox[3], bleedbbox[0] ] ] );
     if (pt1[1] >= pagebbox[2])
      intersectPt = IntersectionPt ( [pt1, pt2], [ [ bleedbbox[1], bleedbbox[2]], [bleedbbox[3], bleedbbox[2] ] ] );
     line.paths[0].pathPoints[0].anchor = intersectPt;
    }
    // End point:
    if (pt2[0] <= pagebbox[1] || pt2[0] >= pagebbox[3] ||
     pt2[1] <= pagebbox[0] || pt2[1] >= pagebbox[2])
    {
     if (pt2[0] <= pagebbox[1])
      intersectPt = IntersectionPt ( [pt1, pt2], [ [ bleedbbox[1], bleedbbox[0]], [bleedbbox[1], bleedbbox[2] ] ] );
    
     if (pt2[0] >= pagebbox[3])
      intersectPt = IntersectionPt ( [pt1, pt2], [ [ bleedbbox[3], bleedbbox[0]], [bleedbbox[3], bleedbbox[2] ] ] );
    
     if (pt2[1] <= pagebbox[0])
      intersectPt = IntersectionPt ( [pt1, pt2], [ [ bleedbbox[1], bleedbbox[0]], [bleedbbox[3], bleedbbox[0] ] ] );
     if (pt2[1] >= pagebbox[2])
      intersectPt = IntersectionPt ( [pt1, pt2], [ [ bleedbbox[1], bleedbbox[2]], [bleedbbox[3], bleedbbox[2] ] ] );
     line.paths[0].pathPoints.lastItem().anchor = intersectPt;
    }
    
    function IntersectionPt (ln1, ln2)
    {
     var ua;
     var x1 = ln1[0][0], x2 = ln1[1][0], x3 = ln2[0][0], x4 = ln2[1][0];
     var y1 = ln1[0][1], y2 = ln1[1][1], y3 = ln2[0][1], y4 = ln2[1][1];
     ua = ((x4 - x3)*(y1 - y3) - (y4 - y3)*(x1 - x3))/((y4 - y3)*(x2 - x1) - (x4 - x3)*(y2 - y1));
    
     return [ x1 + ua*(x2-x1), y1 + ua*(y2-y1) ];
    }
    
  • Move the end of the text

    So, I'm on Safari on my iPhone.  Text fills the search bar on the top of the screen.  Is there a way to move to the beginning of the text?  Go to end of the text?  Or can move forward or backward without deleting the characters?  Thanks in advance.

    Tap the address bar and then press and hold your finger on it. A "magnifying glass" will come, you can use it to move the text insertion point. -AJ

  • Jump to Smartphones blackBerry for the beginning or the end of a line?

    Hello. Please anyone know how to jump fast with the cursor to the beginning or the end of a line in a text (message from Te etc.)? I do not always scroll the trackball on the entire screen.

    Thanks for your replies!

    Wow, Ive got it! Pressing Alt and roll the trackball at the same time will move the cursor to the end or beginning of the line. Great! Thank you, RIM

  • Can I need separate videos to allow a user to 'Play All' (from the beginning to the end) and select certain sequences (ceremony, reception which the sequence chosen start and end at the rest of the video and not the sequence, speech etc.)?

    Hi - I'm obviously new to yet, but that's what I want to do.

    In a wedding video, I want them to be able to:

    1 play the movie from start to finish.

    2. Select a sequence (say speech) who plays since the beginning of the sequence to the END of the whole video.

    So do I need 1 video for the room, as well as 4 sequences - reception, cake, speech, dance?

    Colin

    You can use separate videos or a single video. The only video is easier for your desired navigation. You will find more people asking how to get the 'chapter' or the video scene at the rear to a menu when it ends and also have a game all. So ignore the advice on those.

    Simple video:

    Your single video goes on a timeline. 'Play all' is a button in the timeline, and the timeline has an end action of "last menu."

    Menu of chapter has 4 buttons (plus a fifth to return to the main menu), going to each respective chapter marker. There is no action to end on chapter markers, so when a new chapter is reached, he continues to play as the piece all the.

    Several videos:

    Each video goes on his own script. The end of video action a timeline is timeline two video etc. Play all is a button that goes to the timeline one. The chapter menu also has a button go to chapter one, and it works identical to the play all. Each of the chapter buttons go to their respective chapter deadlines.

    Still may have some problems with a certain time lag, but I do not think that they affect either of these workflows. Don't rely on the preview again; burn a test disc and play on a DVD player.

  • By selecting a Word then cursor fails to go to the ends of the selection

    During the selection of words or a bunch of words and cursor in a direction, the keyboard in Illustrator 2015.2.0 on a Mac, the circumflex is unable to go to the end or beginning of the selection. This is not a standard behavior for any text editing and creates the cumulative inefficiencies in my workflow.

    You are right, but this isn't something, we can help you, then you'd better have pointed out that with help > Submit Bug/Feature Request.

  • Screen time, works the time indicated from the beginning or the end of the block

    When the selection of a block is both above the block of time limits screen, the start time or end, for example, I add a blue block under 19:00 made that led to the block will begin at 19:00 or 20:00 is really unclear.

    Thank you very much

    Tony

    Hi Tony,.

    All the blue blocks in time means that the child is unable to use the computer during that period. If 19:00 was shaded by blue, this means that the child cannot use the computer from 19:00. To learn more about this feature, please see the link below:

    http://Windows.Microsoft.com/en-us/Windows-8/limit-setting-kids-PC#1TC=T1

    If you have any other questions, please let us know.

    Thank you!

  • Windows Movie Maker - releasing only audio, is it possible to publish the exact length of the audio and does not include the lot of silent at the end?

    Windows Movie Maker - have 6 minutes of audio spliced, I would like to publish in the form of an audio clip with no video.  I heard that this is possible, and it all works, the 'framework' includes 6 more minutes of space without air circulation that gets compiled with the planned 6 minutes of audio matching 12 minutes of audio rather than the 6 minutes.  Is it possible to MovieMaker 'See' the end of my audio instend, to include 12 minutes in length with it default?  Should I include photos or video for the project to publish only 6 minutes, instead of the 12 minutes?   I hope this makes sense...

    I assume you are using Vista Movie Maker 6 and not Live Movie Maker?

    It is a problem that I've not seen before... the recorded length must be equal
    at times combined clips on the timeline. I guess it's possible
    If you've done a lot of editing/trimming clips... something was corrupted.

    I was wondering... If you import the .wma file saved in Movie Maker and drag
    it to the timeline... it shows the clip as being the length of 12 minutes? If it isn't...
    Perhaps you could he split and right click Delete unwanted 6 minutes and
    then re-save.

    Divide... drag the playback at the end of the music and the type indicator... CTRL + L
    .. .to split the file then right-click of the unwanted part and click on delete.

    Tip: Unlike clips video... audio clips can be dragged to the timeline, so don't forget
    they are dragged all the way to the left to prevent air from dead at the beginning or
    between the clips.

    It may be worth trying to go to... Tools / Options / compatibility... tab and the left click
    the "All default settings" button before the Save.

    And... If the clips audio source are not the. WMA format... it could be a useful
    try to convert them to WMA before you import into Movie Maker.

  • How to make new bookmarks appear at the end of the toolbar of bookmarks instead of beginning?

    I drag the bookmarks toolbar to add the tabs. They appear at the end, but now they appear at the beginning. I can't find a setting to change it back. I tried an add-on called spacious bookmarks, but who did the same thing and does not have a setting to change also.

    The tab bookmark must be placed at the point where you drop it on the toolbar of bookmarks.

    Do you at least see the selection arrows when you are between two bookmarks?

    You can drag a link or tab or the globe/lock (the Site identity button) on the bookmark star or 'Show your bookmarks' move the bookmark button to open the drop-down list in the position where you want.

    Start Firefox in Safe Mode to check if one of the extensions (Firefox, Tools/menu key > Modules > Extensions) or if hardware acceleration is the cause of the problem.

    • Put yourself in the DEFAULT theme: Firefox, Tools/menu key > Modules > appearance
    • Do NOT click on the reset button on the startup window Mode safe
  • How can move the indicated address browser on the left and to the right of the footer of mozilla in the add-on bar where is jused to be in previous versions as icon of Personas?

    How can I move the address indicated when I point to a link on the page of the browser on the left and to the right of the footer of mozilla in the add-on bar where is jused to be in previous versions as icon or the weather icons of Personas?

    You can install the following add-on to return some of the old features of the status bar. The module Bar must be turned on. The add-on will also stop the screening of the "tooltip" text of loading type State, and instead of it, show it in the bar of the add-on:

    • Evar-4-status: https://addons.mozilla.org/en-US/firefox/addon/status-4-evar/
    • After installation and reboot:
      • Open the Customze window (Firefox button > Options > toolbars OR view > toolbars > customize OR ALT + V + T + C OR right click in the empty space at the end of the tab bar and select Customize)
      • While customize window is open, drag 'Text State' (the URL for loading, as you mentioned), "Progress meter" and "Download Status" in the window customize to the bar of the add-on in order and the position that you want to display. Then click on the button "Done" at the bottom right on the window customize.

    If this answer solved your problem, please click 'Solved It' next to this response when connected to the forum.

  • Toshiba TV8245 - MediaPlayer does not play long movie to the end

    Hello
    I use the TV TV8245
    I want to take this to a presentation

    I create a ddd.wmv file. This file is located on a storage DLNA.
    I see this film one I can play this with MediaPlayer
    But at the end of the stop of the film and is NOT from the beginning.
    How can I fix with TV

    1. I create a movie file very Long
    2. I copy several files in the same directory

    The problem is very long film the file size is so BIG
    More one the Loding to the following decoding file is 1 Minute

    Anyone have an idea how I can solve this
    Kind regards
    Rog

    Hello again

    I have test it with photo.
    But this problem is after loading the image next I see on the screen the text of decoding for 2 seconds.

    How do I turn off this message...

    THX for the help

  • Why the movies I burn more freeze towards the end?

    I tried what is called free software burning like nero and imageburn, etc, etc. Add infinitum, you can't really do much unless you buy all while most of these lie just to get on a search page, so I bought a software called copy 123 & share and lets it freeze at the beginning a little, but only a few movies but almost everyone I did since then freezes and then jump towards the end of the film? Every now and then maybe it starts this way through 0. Is there something I can do? Someone said to slow down the burning process but I remember a while burning a movie in much less time than the time or so it already takes to burn with this software and I did not gel upward or jump? I have a friend who says he found a free burning software online that did all that in half an hour? does anyone have advice?      Thanks, Ben

    Video requires a lot of resources of the pc, for most memory & virtual

    memory. Is the pc maxed out with ram memory, video card, these

    parties must be in the performance category, similar to the game of online video.

    Also, in properties pc, advanced, virtual memory, make sure that its game of 'let '.

    management system... " ATI video cards get a free dvd encoder, fee to NVIDIA

    for one...

    You can also open the "Event Viewer" locate the freeze time, see what

    the operating system reported.

  • I am maing a movie with windows movie maker and you cannot add a song for the end credits. Whenever I get the song imported the system stops... Help!

    I'm doing a movie with windows movie maker and cannot add a song for the end credits. Whenever I get the song imported the system stops... Help!

    I'm doing a movie with windows movie maker and cannot add a song for the end credits. Whenever I get the song imported the system stops... Help!

    ===============================
    If a music file Movie Maker crashes
    in a format that is not compatible. If you convert
    the file to the format of .wma before importing, you
    can have a better result.

    The converter below might be helpful to try:

    (FWIW... it's always a good idea to create a system)
    Restore point before installing software or updates)

    Format Factory
    http://www.pcfreetime.com/
    (FWIW... you can uncheck
    all the boxes on the last screen)

    After downloading and installing Format Factory...
    Open the program and choose an output folder...
    (this is where you will find your files when they are
    converted)

    Drag and drop your audio clips on the main screen...

    Select "while"WMA"/ OK...

    Click on... Beginning... in the toolbar...

    That should do it...

    Good luck.
    John Inzer - MS - MVP - Digital Media Experience - Notice_This is not tech support_I'm volunteer - Solutions that work for me may not work for you - * proceed at your own risk *.

  • Current-time indicator will not go at the end of the comp in After Effects CS6

    The current-time indicator won't pass at the end of the comp in AE CS6. I install a new comp for 10 seconds. When I drag the Guide to current time OR press the end key to bring the current time at the end of the Model Locator, it stops at a value of 09:23. Is this a bug?

    No, your pace is obviously 23.976, or more likely TOcorrrectly 24.

    The first frame of the model is ZERO, as 00:00.  The last image is 09:23.  Which is what you defined.

    00:00 - 09:23 is ten seconds.  00:00 - 10:00 is 10 seconds and a picture.  If the beginning frame was ONEframe, you would be correct in your statement of misfortune.  but the beginning is ZERO.

  • How to move to the previous image at the end of the clip?

    Using Flash Professional 8. I have a menu with a Play Movie button on frame 1 and a clip on frame 2. On frame 1, the action script reads:

    Stop();

    myBtn_btn.onRelease = function() {}
    gotoAndStop (2);
    };

    So, on the release of the button on frame 1, it goes to frame 2 and begins to play the clip flv (using FLVPlayback). After 9 minutes, when the video is finished, it remains on frame 2 and the playback of the clip head began in the early.

    Should what action script I use to tell him to go to frame 1 at the end of the 9-minute clip?

    Thanks for any help.

    I got the answer to this question at actionscript.org

    Here's the answer below. Use the code below in the box 2 and replace FLVPlayBack with the instance of my (video) component name in image 2:

    function complete (evt) {}
    gotoAndStop (1);
    }
    FLVPlayBack.addEventListener ("complete", complete);

Maybe you are looking for

  • How can I get my favorites that ran through the top of my screen to computer back?

    They are always in my bookmarks faucet, but space at the top of the page is empty now.Thanks for your help!

  • Impossible to connect an external display

    Hello I have a MacBook pro 13 "with the latest software and updates to the OS. I tried unsuccessfully to connect my laptop to an external display, a Dell P2414H. Unfortunately, this screen has a hdmi connector. I used the VGA cable with a VGA adapter

  • HP247tu: Need drivers for HP247tu

    Hello I installed windows 8.1 64-bit on the laptop HP247tu. I need on drivers: 1 - Acquisition of ICP data and Signal Processing controller PCI\VEN_8086 & DEV_9CA4 & SUBSYS_2336103C & REV_03PCI\VEN_8086 & DEV_9CA4 & SUBSYS_2336103CPCI\VEN_8086 & DEV_

  • Invalid claims VCCO level LabVIEW module IO

    On my PC the module IO of our company and the module NOR 6581 appear correctly in the dialog box properties of Module e/s. On our PXI machine in the lab, LabVIEW complains that both modules have specified invalid VCCO levels (probably in the .tbc) I

  • Windows XP, why she is frozen in the configuration?

    downloaded updates. 3/3 full. the configuration. 0 0 full. rotating laptop market by itself. SINCE THE NIGHT LAST. How is it? tried to start it in safe mode. updates always takes over and stops and starts up the laptop. Why is - that it is frozen in