Inserting Arrows In Video

I'm trying to insert arrows into a football highlight video.  (1) I want them to point to a player for 1 second before the play starts, let the play run, and do the same for all subsequent plays.  Can someone outline the steps or point me to a tutorial for this?  (2) Once done how do I export the video for optimal display on a CD and for the Internet?
Thanks in advance

Welcome to the forum.
Make a Title and then choose a font, like Webdings, which has a ton of arrows. Place that Title on a Video Track above the Clip of the players, and then you can animate it with the fixed Effects>Motion>Position and possibly Motion>Rotation.
One can also create the Title in PS/PSE, and use the included Smart Shapes for arrows, then do any necessary animation, as above.
Good luck,
Hunt

Similar Messages

  • Insert pictures and video

    Hello,
    How can I insert videocuts into a show I recorded myself? I am in the studio, presenting a show and during the presentation I want to show pictures and video to the audience.
    * I wil first record the show in our studio
    * And then I insert pictures and video on certain places in the recorded show.
    Is this possible in Imovie 8 or in one of the older imovies.
    Or must I use finalcut for this?
    Thanks! Richard - The Netherlands

    Hello, Richard,
    I have not used iMovie 8 much, so don't know about doing this in that version, but you can easily do this in iMovie HD 6.
    I am not sure exactly how you want to do this. It depends on whether you want to place those photos and other video clips OVER the recorded show, so that the audio from the recorded show plays while the photos and videos are displayed, or if you want to have them ADDED in the midst of the recorded show.
    If you just want to insert photos and videos in the midst of your recorded show, first import your recorded show into iMovie6. Put it in the timeline. Move the playhead to the point where you want the first photo, and do a 'split video at playhead' command, drag the photos/videos to the time line there. They will be added between the split video clips. Repeat for all the photos/videos.
    It sounds as if the option you want is 'Paste Over at Playhead' which allows the photos and videos you add to be seen over the recorded show, so that the audio plays continually. In tv and movies this is done when someone is talking about something and then there is a 'cut-away' to a photo or video clip of whatever the person is describing so the audience can visualize what he is saying while he is speaking.
    Here are instructions for doing that from iMovie HD6 Help:
    *Inserting video clips or photos in a passage while maintaining running audio*
    +You can paste a new video clip or photo over an existing clip while retaining the audio from the original clip. The video cuts away to a new picture, but you continue to hear the sound from the original clip.+
    +To replace images in a clip while maintaining running audio:+
    +Choose iMovie HD > Preferences, and then click General.+
    +Select the "Extract audio when using Paste Over at Playhead" checkbox.+
    +Select the video or photo that you want to insert.+
    +Choose Edit > Cut or Copy.+
    +Do one of the following:+
    +To paste the entire video you selected in step 3, position the playhead at the first frame to be replaced. When you paste the clip, it will replace a portion of video equal to its length.+
    +To paste over a specific segment of your movie, select the part of the video clip you want to paste over. (To learn more about selecting part of a video clip, see Related Topics below.)+
    +If the video you're pasting is longer than the selected frame range, the excess video will not be pasted. If the video you're pasting is shorter than the selected frame range, the extra space will be filled with a color clip (or the still image, if you paste a still image).+
    +Choose Advanced > "Paste Over at Playhead."+
    +The audio track of the original video is retained and appears in audio track 1 of the timeline viewer.+
    Post back if this does not address what you are trying to do.

  • Help inserting a flash video into my web page

    Hello!
    I'd love some help inserting a flash video into my web page. My web page is hosted by Viviti, templated, and edited online. I can add html to it, and I have the html source for my flash video. I also have uploaded the flash file to the server. Since I am very html illiterate, though, I need some help rewriting the html script so it can be published. There are two problems- firstly, no 'headers' or 'body' allowed in the script- these are already a part of the template. Secondly, I don't know how to rewrite it to refer to the uploaded files. It's also imperative that the full screen mode functions. I've pasted the source code for the flash video here. Please help!!!
    Thanks!
    <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Drag and drop labelling</title>
    <script language="JavaScript" type="text/javascript">
    <!--
    //v1.7
    // Flash Player Version Detection
    // Detect Client Browser type
    // Copyright 2005-2008 Adobe Systems Incorporated.  All rights reserved.
    var isIE  = (navigator.appVersion.indexOf("MSIE") != -1) ? true : false;
    var isWin = (navigator.appVersion.toLowerCase().indexOf("win") != -1) ? true : false;
    var isOpera = (navigator.userAgent.indexOf("Opera") != -1) ? true : false;
    function ControlVersion()
         var version;
         var axo;
         var e;
         // NOTE : new ActiveXObject(strFoo) throws an exception if strFoo isn't in the registry
         try {
              // version will be set for 7.X or greater players
              axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.7");
              version = axo.GetVariable("$version");
         } catch (e) {
         if (!version)
              try {
                   // version will be set for 6.X players only
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.6");
                   // installed player is some revision of 6.0
                   // GetVariable("$version") crashes for versions 6.0.22 through 6.0.29,
                   // so we have to be careful.
                   // default to the first public version
                   version = "WIN 6,0,21,0";
                   // throws if AllowScripAccess does not exist (introduced in 6.0r47)          
                   axo.AllowScriptAccess = "always";
                   // safe to call for 6.0r47 or greater
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 4.X or 5.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = axo.GetVariable("$version");
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 3.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash.3");
                   version = "WIN 3,0,18,0";
              } catch (e) {
         if (!version)
              try {
                   // version will be set for 2.X player
                   axo = new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
                   version = "WIN 2,0,0,11";
              } catch (e) {
                   version = -1;
         return version;
    // JavaScript helper required to detect Flash Player PlugIn version information
    function GetSwfVer(){
         // NS/Opera version >= 3 check for Flash plugin in plugin array
         var flashVer = -1;
         if (navigator.plugins != null && navigator.plugins.length > 0) {
              if (navigator.plugins["Shockwave Flash 2.0"] || navigator.plugins["Shockwave Flash"]) {
                   var swVer2 = navigator.plugins["Shockwave Flash 2.0"] ? " 2.0" : "";
                   var flashDescription = navigator.plugins["Shockwave Flash" + swVer2].description;
                   var descArray = flashDescription.split(" ");
                   var tempArrayMajor = descArray[2].split(".");               
                   var versionMajor = tempArrayMajor[0];
                   var versionMinor = tempArrayMajor[1];
                   var versionRevision = descArray[3];
                   if (versionRevision == "") {
                        versionRevision = descArray[4];
                   if (versionRevision[0] == "d") {
                        versionRevision = versionRevision.substring(1);
                   } else if (versionRevision[0] == "r") {
                        versionRevision = versionRevision.substring(1);
                        if (versionRevision.indexOf("d") > 0) {
                             versionRevision = versionRevision.substring(0, versionRevision.indexOf("d"));
                   var flashVer = versionMajor + "." + versionMinor + "." + versionRevision;
         // MSN/WebTV 2.6 supports Flash 4
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.6") != -1) flashVer = 4;
         // WebTV 2.5 supports Flash 3
         else if (navigator.userAgent.toLowerCase().indexOf("webtv/2.5") != -1) flashVer = 3;
         // older WebTV supports Flash 2
         else if (navigator.userAgent.toLowerCase().indexOf("webtv") != -1) flashVer = 2;
         else if ( isIE && isWin && !isOpera ) {
              flashVer = ControlVersion();
         return flashVer;
    // When called with reqMajorVer, reqMinorVer, reqRevision returns true if that version or greater is available
    function DetectFlashVer(reqMajorVer, reqMinorVer, reqRevision)
         versionStr = GetSwfVer();
         if (versionStr == -1 ) {
              return false;
         } else if (versionStr != 0) {
              if(isIE && isWin && !isOpera) {
                   // Given "WIN 2,0,0,11"
                   tempArray         = versionStr.split(" ");      // ["WIN", "2,0,0,11"]
                   tempString        = tempArray[1];               // "2,0,0,11"
                   versionArray      = tempString.split(",");     // ['2', '0', '0', '11']
              } else {
                   versionArray      = versionStr.split(".");
              var versionMajor      = versionArray[0];
              var versionMinor      = versionArray[1];
              var versionRevision   = versionArray[2];
                 // is the major.revision >= requested major.revision AND the minor version >= requested minor
              if (versionMajor > parseFloat(reqMajorVer)) {
                   return true;
              } else if (versionMajor == parseFloat(reqMajorVer)) {
                   if (versionMinor > parseFloat(reqMinorVer))
                        return true;
                   else if (versionMinor == parseFloat(reqMinorVer)) {
                        if (versionRevision >= parseFloat(reqRevision))
                             return true;
              return false;
    function AC_AddExtension(src, ext)
      if (src.indexOf('?') != -1)
        return src.replace(/\?/, ext+'?');
      else
        return src + ext;
    function AC_Generateobj(objAttrs, params, embedAttrs)
      var str = '';
      if (isIE && isWin && !isOpera)
        str += '<object ';
        for (var i in objAttrs)
          str += i + '="' + objAttrs[i] + '" ';
        str += '>';
        for (var i in params)
          str += '<param name="' + i + '" value="' + params[i] + '" /> ';
        str += '</object>';
      else
        str += '<embed ';
        for (var i in embedAttrs)
          str += i + '="' + embedAttrs[i] + '" ';
        str += '> </embed>';
      document.write(str);
    function AC_FL_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".swf", "movie", "clsid:d27cdb6e-ae6d-11cf-96b8-444553540000"
         , "application/x-shockwave-flash"
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_SW_RunContent(){
      var ret =
        AC_GetArgs
        (  arguments, ".dcr", "src", "clsid:166B1BCA-3F9C-11CF-8075-444553540000"
         , null
      AC_Generateobj(ret.objAttrs, ret.params, ret.embedAttrs);
    function AC_GetArgs(args, ext, srcParamName, classid, mimeType){
      var ret = new Object();
      ret.embedAttrs = new Object();
      ret.params = new Object();
      ret.objAttrs = new Object();
      for (var i=0; i < args.length; i=i+2){
        var currArg = args[i].toLowerCase();   
        switch (currArg){     
          case "classid":
            break;
          case "pluginspage":
            ret.embedAttrs[args[i]] = args[i+1];
            break;
          case "src":
          case "movie":     
            args[i+1] = AC_AddExtension(args[i+1], ext);
            ret.embedAttrs["src"] = args[i+1];
            ret.params[srcParamName] = args[i+1];
            break;
          case "onafterupdate":
          case "onbeforeupdate":
          case "onblur":
          case "oncellchange":
          case "onclick":
          case "ondblclick":
          case "ondrag":
          case "ondragend":
          case "ondragenter":
          case "ondragleave":
          case "ondragover":
          case "ondrop":
          case "onfinish":
          case "onfocus":
          case "onhelp":
          case "onmousedown":
          case "onmouseup":
          case "onmouseover":
          case "onmousemove":
          case "onmouseout":
          case "onkeypress":
          case "onkeydown":
          case "onkeyup":
          case "onload":
          case "onlosecapture":
          case "onpropertychange":
          case "onreadystatechange":
          case "onrowsdelete":
          case "onrowenter":
          case "onrowexit":
          case "onrowsinserted":
          case "onstart":
          case "onscroll":
          case "onbeforeeditfocus":
          case "onactivate":
          case "onbeforedeactivate":
          case "ondeactivate":
          case "type":
          case "codebase":
          case "id":
            ret.objAttrs[args[i]] = args[i+1];
            break;
          case "width":
          case "height":
          case "align":
          case "vspace":
          case "hspace":
          case "class":
          case "title":
          case "accesskey":
          case "name":
          case "tabindex":
            ret.embedAttrs[args[i]] = ret.objAttrs[args[i]] = args[i+1];
            break;
          default:
            ret.embedAttrs[args[i]] = ret.params[args[i]] = args[i+1];
      ret.objAttrs["classid"] = classid;
      if (mimeType) ret.embedAttrs["type"] = mimeType;
      return ret;
    // -->
    </script>
    </head>
    <body bgcolor="#ffffff">
    <!--url's used in the movie-->
    <!--text used in the movie-->
    <!-- saved from url=(0013)about:internet -->
    <script language="JavaScript" type="text/javascript">
         AC_FL_RunContent(
              'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0',
              'width', '720',
              'height', '440',
              'src', 'Drag and drop labelling',
              'quality', 'medium',
              'pluginspage', 'http://www.adobe.com/go/getflashplayer',
              'align', 'middle',
              'play', 'true',
              'loop', 'true',
              'scale', 'showall',
              'wmode', 'window',
              'devicefont', 'false',
              'id', 'Drag and drop labelling',
              'bgcolor', '#ffffff',
              'name', 'Drag and drop labelling',
              'menu', 'true',
              'allowFullScreen', 'true',
              'allowScriptAccess','sameDomain',
              'movie', 'Drag and drop labelling',
              'salign', ''
              ); //end AC code
    </script>
    <noscript>
         <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10,0,0,0" width="720" height="440" id="Drag and drop labelling" align="middle">
         <param name="allowScriptAccess" value="sameDomain" />
         <param name="allowFullScreen" value="true" />
         <param name="movie" value="Drag and drop labelling.swf" /><param name="quality" value="medium" /><param name="bgcolor" value="#ffffff" />     <embed src="Drag and drop labelling.swf" quality="medium" bgcolor="#ffffff" width="720" height="440" name="Drag and drop labelling" align="middle" allowScriptAccess="sameDomain" allowFullScreen="true" type="application/x-shockwave-flash" pluginspage="http://www.adobe.com/go/getflashplayer" />
         </object>
    </noscript>
    </body>
    </html>

    What you basically need to do is copy the sections of content from the code you show into the template (assuming the template already provides the <head> and <body> sections of the page.  So in the head section of what you show, take everything starting with...
    <script language="JavaScript" type="text/javascript">
    all the way down thru...
    </script>
    , inclusive (in the head section only), and paste that into the head section of your template.
    Similarly, take everything that lies between the <body> ... </body> tags (exclusive of the body tags) and paste it into the body section of your template wherever you plan to display the Flash file.

  • HT4623 can no longer insert photo or video in email

    Hi there new Iphone 5s latest update, can no longer insert photo or video in an email have to copy and paste which is tedious, any suggestions, thank you!

    Hi thanks elmac unfortunately has made no difference, I've rebooted everything and reset. I have the latest update so don't understand why it's not working?

  • Insert Media Flash Video

    I'm having trouble viewing a flash video that I've inserted
    using: Insert, Media, Flash Video. I can view the video ok in IE7
    and Firefox when I preview the page from Dreamweaver, but not
    online.
    http://www.swail.com/Untitled-1.html
    (sample page with problem)
    I have the video file uploaded to here:
    main/KenBowden_Swail_BN1.flv
    I have the Scripts folder uploaded in the root dir on the
    same level as the page.
    I've done this successfully in the past with other web
    sites....what am I missing here?
    Any help is appreciated!
    Marita

    >
    http://www.swail.com/Untitled-1.html
    (sample page with problem)
    I don't see a problem in either FF 2 or IE6 - it's there OK
    Jo
    "Marita" <[email protected]> wrote in
    message
    news:fjc642$s8t$[email protected]..
    > I'm having trouble viewing a flash video that I've
    inserted using: Insert,
    > Media, Flash Video. I can view the video ok in IE7 and
    Firefox when I
    > preview
    > the page from Dreamweaver, but not online.
    >
    >
    http://www.swail.com/Untitled-1.html
    (sample page with problem)
    >
    > I have the video file uploaded to here:
    main/KenBowden_Swail_BN1.flv
    >
    > I have the Scripts folder uploaded in the root dir on
    the same level as
    > the
    > page.
    >
    > I've done this successfully in the past with other web
    sites....what am I
    > missing here?
    >
    > Any help is appreciated!
    > Marita
    >

  • I inserted a HTML5 video in page, when I test it in a Browser, I see the poster image and controls, But when I click play button the video goes white, slider moves like its playing, but just white picture. There was no audio included in video. Please help

    I inserted a HTML5 video in page, when I test it in a Browser, I see the poster image and controls, But when I click play button the video goes white, slider moves like its playing, but just white picture. There was no audio included in video. Please help

    Without a link, it's anybody's guess.
    It could be a problem the video rendering itself.  Which software did you use?
    Did you export to the 3 file types -- MP4, OGG and WEBM to support all browsers?
    Does your web server support those 3 MIME file types?
    Nancy O.

  • Insert Media Flash Video... pre-loader question

    Hello everybody
    I'm desperately looking for a solution regarding the
    following problem: I've inserted a rather long flv video (insert -
    media - flash video) into my site. Visitors with smaller bandwith
    have to wait up to 30" until the video starts playing. I either
    want to show them a screen saying: "video is going to be buffered -
    please wait" or to include an adaptive preloader that shows the %
    until the video will start playing. How can this be achieved?
    Thanks for all of your input, because this issue is very important
    to me and time is running for the project...
    TCG

    Can you divide your long video into several small clips or
    chapters? Then
    just put all the clips into a common player like this one
    from Coffee Cup -
    and loop them together.
    http://www.coffeecup.com/video-player/
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "TeeCeeGee" <[email protected]> wrote in
    message
    news:g35efj$f81$[email protected]..
    > Hello everybody
    > I'm desperately looking for a solution regarding the
    following problem:
    I've
    > inserted a rather long flv video (insert - media - flash
    video) into my
    site.
    > Visitors with smaller bandwith have to wait up to 30"
    until the video
    starts
    > playing. I either want to show them a screen saying:
    "video is going to be
    > buffered - please wait" or to include an adaptive
    preloader that shows the
    > until the video will start playing. How can this be
    achieved? Thanks for
    all of
    > your input, because this issue is very important to me
    and time is running
    for
    > the project...
    > TCG
    >

  • Insert HTML 5 Video

    I am attempting to insert an mp4 video file. Several tutorials show a drop down menu for "insert html 5 video." This is not an option in my updated version of CS6. All assistance is greatly appreciated!

    Reed Media Group wrote:
    I am attempting to insert an mp4 video file. Several tutorials show a drop down menu for "insert html 5 video." This is not an option in my updated version of CS6. All assistance is greatly appreciated!
    That particular menu is only available in the Cloud Subscription version of DWCS6. If you have a perpetual license version, you do not get the menu updates. Here is a good reference for HTML5 <video>...
    http://www.w3schools.com/tags/tag_video.asp
    Keep in mind, you need more than one file type to cover all browsers.

  • Where can I find arrows to insert into a video in PE 12?

    I would like to know where I can find a variety of arrows, how to find them and then how to insert them.  Example; I do not know where and how to find Clip Art in case arrows might be located there.  I have searched the archives, but failed to find answers about where to find a variety of arrows or how to make my own in case the PE 12 program doesn't have any. I am using a 2013 Macbook with OS 10.9.2.

    ReaderTorture
    I am currently working on the how to details on what I am assuming that you are asking, that is, moving to Premiere Elements 12 the files for the Photoshop Elements 12 Full Editor Graphics arrow choices.
    The arrows are going to end up in the path
    Local Disk C
    Program Files
    Adobe
    Adobe Premiere Elements 12
    Clip Art
    Common
    and, in the Common Folder, you will be placing the arrow files (best as .png on transparent background) into one of the Category Folders, such as Miscellaneous for example.
    Once done, the arrow choices will be found in this example under the Graphics/Miscellaneous.
    Now here is the situation as of the moment. I am not locating individual files for arrow choices for the following
    I am suspecting that they all may be embedded in one Adobe file that cannot be opened. But, I am still looking into that.
    If what I suspect is true, then the answer may turn out to be to create a Photoshop Elements 12 document (transparent background) for each arrow choice (at wanted file size, I have seen 1600 x 1200 as well as 300 x 303 and others.) Then save each arrow document as a png file to be placed in the Premiere Elements 12 route...Common Folder Category Folder as indicated above.
    Just some thoughts for now. Please let us know if I have intepreted what you are seeking.
    More later.
    ATR

  • Inserting arrows into Imovie '11

    Hi
    I need to insert an arrow into a movie to highlight a certain point. Posts in Imovie '10 tell you how to do this very easily, this however does not work for Imovie'11. Any suggestions would be greatly appreciated.

    This is the iOS iMovie forum.
    You need to go to the iMovie Mac forum.
    But you should check your export settings.
    The preview that you see on the edit window is a preview, and not meant to be the final quality.
    Also if you are editing an SD project it will resize to SD resolution.
    If you're losing bit depth then look at what quality you are editing at.
    Video is not 48 bit, and will never look as good as a full resolution photo still.

  • Insert audio and video icons is split

    why are these 2 buttons divided and that there is a single button that makes it possible to insert video and audio at once into the timeline

    As Jim says...use the Insert / Overlay Icons to do what you want.
    Those other two are handy for separately dragging audio or video.
    As Harm says...you can drag both by click and hold in the centre of the Source Monitor.  You can drag to the timeline or the Program Monitor (and also use the CTRL mofifier key)
    I always wished that when one clicked the Audio Icon..it would show the audio waveform in the Source Monitor.  Unfortunately ...it doesnt!

  • Inserting image in video clip

    How do I maintain the original soundtrack of the video clip and insert a photo with transitions on either end of the insertion? I can achieve this procedure with success without the transitions but as soon as I try to add the transitions the audio of the original video clip goes out of synchronization? Is this possible?

    Welcome to the discussions.
    Most (but not all) transitions uses footage from both clips. For instance, a one second transition uses 1 second footage from clip A and overlaps with one second from clip B, making the movie one second shorter.
    So it you make the still two seconds longer than the clip you remove, you can add two one-second transitions and wind up with the audio in sync.

  • Inserting a Flash video and the Bandwidth Monitor

    I am new to Captivate, and I want to be sure I'm following
    some practical guidelines for inserting Flash video in my Captivate
    slides.
    I know there are quite a few variables relating to practical
    bandwidth usage--basically, we are creating elearning presenations
    that will have "talking head" videos embedded within. These
    presentations will be available for download via our LMS site, both
    within the US and overseas.
    I have utilized Captivate's Bandwidth Monitor to gauge the
    bandwidth hit each video slide is responsible for. However, I don't
    believe the numbers I'm getting back: because I've set each
    embedded video to "Pause slide till end of video", all the slides
    are reporting the same length in seconds, KB per sec and Video KB
    numbers.
    Can someone suggest a practical method for setting up the
    videos such that the Bandwidth Monitor can interpret them
    correctly? Can you also suggest a rule of thumb for maximum length
    for each slide with an embedded video (320 X 240) in it?
    Thanks in advance,
    Carl

    I am new to Captivate, and I want to be sure I'm following
    some practical guidelines for inserting Flash video in my Captivate
    slides.
    I know there are quite a few variables relating to practical
    bandwidth usage--basically, we are creating elearning presenations
    that will have "talking head" videos embedded within. These
    presentations will be available for download via our LMS site, both
    within the US and overseas.
    I have utilized Captivate's Bandwidth Monitor to gauge the
    bandwidth hit each video slide is responsible for. However, I don't
    believe the numbers I'm getting back: because I've set each
    embedded video to "Pause slide till end of video", all the slides
    are reporting the same length in seconds, KB per sec and Video KB
    numbers.
    Can someone suggest a practical method for setting up the
    videos such that the Bandwidth Monitor can interpret them
    correctly? Can you also suggest a rule of thumb for maximum length
    for each slide with an embedded video (320 X 240) in it?
    Thanks in advance,
    Carl

  • Inserting photos in video

    How can I insert a photo (or photos) in the middle of a video strip in Imovie 11 (9.0.4), leaving the audio intact while the pictures "play", then be able to return to view the rest of the filmstrip? When I drag a photo to the filmstrip, I indicate that I want to "insert" it, but it breaks the filmstrip and the audio stops.

    First, go to iMovie/Preferences and make sure that the Advanced Tools are enabled.
    Next, drag your photo and drop it on the video clip where you want it to start. A popup menu will appear. Choose "Cutaway".

  • Missing start arrow in video/movie

    Hallo,
    in my iBook I would like to use videos opening up in full screen mode, when touched.
    When I select "fullscreen mode" in the inspector, the little arrow in the middle of start photo of the movie disappears!
    How can I prevent this? I would like to see it, so that people know that they will have to touch an the movie will start.

    All actions start with a tap or a swipe. This is fundamental. There is no need to add redundent instructions. Am I addressing your concern or is there something else? Note the movie window must be selected for the Full-Screen Only check box to be active. - Fabe

Maybe you are looking for