Embed Flash artwork but no design preview

I can successfully embed some simple flash artworkby
following the directions in the Adobe documentation Importing Flash
CS3 assets into Flex (no scripting just a plain old static
movieclip). When I run the application, it is fine. Should I be
seeing this imported artwork in design mode? I only see a small
image icon but no preview. Is this correct?

You can't see a swf in design mode, no. You have to run the
app.

Similar Messages

  • Embed flash video on website...

    About a month ago, I asked for a code to embed a flash video
    on my website, but now I am stuck. I was told to convert the videos
    to .FLV, which is fine. I can do that, BUT in the coding, I am
    confused because the 'file name' in the code ends with .swf. I am
    SO lost because if the video is converted to .flv how would it work
    if the name in the code ended with .swf? I am VERY new at flash,
    and beyond converting the videos to .flv, I'm lost.
    Also, if I can figure this out, would I need to add any other
    details to make sure the code works in both IE and firefox?
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
    b#version=6,0,29,0" width="400" height="400" >
    <param name="movie" value="videoplayer.swf">
    <param name="quality" value="high" >
    <param name="LOOP" value="false">
    <embed src="videoplayer.swf" width="400" height="400"
    loop="false"
    quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"></ embed >
    </ object >
    Thank you!!!

    You will need to use the following <object> code for IE
    and <embed> code for
    Mozilla browsers. Replace "your_video_file.swf" with your
    actual file name
    in both places.
    <object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"
    codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.ca
    b#version=6,0,29,0" width="400" height="400" >
    <param name="movie" value="your_video_file.swf">
    <param name="quality" value="high" >
    <param name="LOOP" value="false">
    <embed src="your_video_file.swf" width="400" height="400"
    loop="false"
    quality="high" pluginspage="
    http://www.macromedia.com/go/getflashplayer"
    type="application/x-shockwave-flash"></ embed >
    </ object >
    --Nancy O.
    Alt-Web Design & Publishing
    www.alt-web.com
    "Miss_Angela" <[email protected]> wrote in
    message
    news:ffnl8c$i7d$[email protected]..
    > In looking at the response I got a month ago, a "Nancy
    O" replied and also
    said
    > this:
    > "To embed Flash Video in your web page, you'll link to
    an SWF
    > file which contains the player info and skin."
    >
    > I am not sure how to do that all or what it means.
    Thanks
    >

  • Need code to embed Flash Movie in Web Page

    1 - We want to embed a Flash Movie into a regular web page
    and need the HTML code snippit sample on how to do it...
    2 - What is the difference in HTML coding for a Flash Movie
    and a regular SWF Flash File?
    3 - Is the Flash Movie file format designed just for video
    while swf is designed more for animation?
    Thanks for any help.

    Thanks for the help. Yes I uploaded all of the exported versions:
    MVI_1235-Desktop.m4v
    MVI_1235-iPhone-cell.3gp
    MVI_1235-iPhone.m4v
    MVI_1235-poster.jpg
    MVI_1235.mov
    All are residing in the folder with the reference movie and were not renamed. I noticed in the instructions there is a comment of including the <style> and <script> tags in the <head> of the page so that it validates as XHTML. I copied and pasted the <script> code, but I am not using any <style> tags. I wondered if that is contributing to the issue. Thanks again for the help.

  • Link works in Flash 8 but it does not work in Dreamweaver

    I made a Flash swf file which contains button and ball. When
    I put mouse over the button, the ball jumps up.
    And also I have managed to attach a link to the button using
    action script.
    Strange thing is the link works fine when I use test movie
    with Flash 8 but when I insert it into Dreamweaver, although the
    ball works fine with mouse over but the link does not work at all.
    Can anybody tell me why?
    Why it work with test movie in Flash 8 but not in Dreamwever.
    Thank you very much in advance.

    I have just solve my question myself.
    In a Dreamweaver preview the link does not work but once the
    page is published it works.
    Thank you.

  • How to embed flash in html

    I have been trying to embed a flash swf document in a free
    website hosting site called Weebly. You can add html code to it and
    i have been reading up about the ways to embed flash in html. I
    have tried all the codes but when you first save the file where
    does it have to be saved?

    Felixhj wrote:
    > I have been trying to embed a flash swf document in a
    free website hosting site
    > called Weebly. You can add html code to it and i have
    been reading up about the
    > ways to embed flash in html. I have tried all the codes
    but when you first save
    > the file where does it have to be saved?
    >
    I'm sure weebly have instruction for it and would be best to
    try to search the site.
    In most cases you upload the file to some folder and define
    the path in your embed tag,
    or upload to your hosting space and direct that path to the
    file there.
    As I said, each company practice differently, check with
    them.
    Best Regards
    Urami
    "Never play Leap-Frog with a Unicorn."
    <urami>
    If you want to mail me - DO NOT LAUGH AT MY ADDRESS
    </urami>

  • Script in template using SOAP: Works in designer preview, not in rendering from LC Output

    I did a script in a livecycle ES2 Template in the event layout::ready. It call a web service using the SOAP method to get a base64 image from another server.
    The code is (the service called is fake, but it is not the problem):
    var sOptions = "";
    var imageType="JPEG";
    var input= {imageType:sItype,
            options:sOptions};
    var svcResponse;
    try
         var oListURL = "http://someserver.somedomain.com:8080/service?wsdl";
         SOAP.wireDump = true;
         var service = SOAP.connect(oListURL);
         //call the service
         svcResponse = service.getImageBinary(input);
         //transfer image in grahic object
         this.GraphImage.rawValue=svcResponse;   
    }catch(e){
         svcResponse = e.message ;
         root.PaginaUNO.TextField1.rawValue = e.message;
    This script WORKS PERFECTLY using the Livecycle Designer Preview. The image is got and correctly showed.
    When I want to render the PDF via Livecycle Server (calling the output service), I got an error:
    "SOAP is undefined."
    The server on which runs Livecycle has Acrobat 9 pro installed; is the same server on which I run Workbench and Designer. It seems that, trying to execute the script it misses something, maybe a class or something where is declared the SOAP object.
    Can someone give me a hint, please?

    Hi,
    I think the LC Output does not use Acrobat to render XDP's and the LC Output does not have a SOAP object and this is why I think you are getting the error.
    I can't think how to work around this, other that to try and make the code only run once it is opened in the Acrobat host and not on the server while it is being rendered.
    Regards
    Malcolm

  • Flash Builder 4 - Beta / Design view sporadic at best

    Okay, so I have installed the beta, and running through the Catalyst / Flash BUilder 4 tutorial, all is well, unitl i try to get the imprted fxp file to consistently display in the design mode. Not only that, but switching from code view to design view will break it just about 95% of the time, and then it will not display the created items that the tutorial has you put on them (i.e. the databinds to the names, etc etc).
    Has anyone else experienced this? Other than a few little things like this, so far so good guys(ADOBE).
    Thanks,
    Craig Newroth

    eh_adobe wrote:
    Please be aware that using a newer SDK with Flash Builder Beta's Design View may have unpredictable results. I can't say specifically since I don't know what version you tried and what your document contained, but... let's pretend for a second that the SDK changed something in a component - its name, its package, or any method or properties in it.  Design View was compiled with a specific version of the SDK, and would not know about that change, and so might not react very well to the document. Yes this is not ideal, but it's hard to avoid when the SDK is changing rapidly (at some point it will settle down, and this won't be an issue). We can look at ways to mitigate this.
    I have had less unpredicatable results with recent builds of the SDK the latest being build 7988- I basically update from the svn trunk every 2-3 days look through the changes run the checkintests just to make sure all is ok then see what happens to be small testbed apps, I have been doing this for several months. I don't mind the IDE not dealing with the changes as long as it tells me why it can't. But the code should not break the IDE. Also i'm getting a little confused as some of the responses to some issues (not the design mode one) in this forum have suggested seeing what happens with updated SDK's.
    Anyway I have reverted everything back to a standard FB4 install and the first thing that happened yet another new flaw in design mode rears its head, no errors but this time a visually definable issue. The component appears as a 1 dimension line in the top left hand corner of the design editor window, not even on the design view working canvas. Attached is a screen shot and the associated code that caused it. Please note the IDE didn't draw the big red ring around the visual glitch so thats one less bug to worry about.
         the app.
    <?xml version="1.0" encoding="utf-8"?>
    <s:Application xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark" xmlns:mx="library://ns.adobe.com/flex/halo" minWidth="1024" minHeight="768">
         <s:HSlider x="50" y="50" width="200" height="30" skinClass="skins.HSliderSkin"/>     
    </s:Application>
         skin part A.
    <?xml version="1.0" encoding="utf-8"?>
    <!--
         ADOBE SYSTEMS INCORPORATED
         Copyright 2008 Adobe Systems Incorporated
         All Rights Reserved.
         NOTICE: Adobe permits you to use, modify, and distribute this file
         in accordance with the terms of the license agreement accompanying it.
    -->
    <!--- The default skin class for the Spark HSlider component. The thumb and track skins are defined by the
    HSliderThumbSkin and HSliderTrackSkin classes, respectively. -->
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark"
           minHeight="11" minWidth="100"
           alpha.disabled="0.5">
        <fx:Metadata>
        <![CDATA[
          * @copy spark.skins.default.ApplicationSkin#hostComponent
             [HostComponent("spark.components.HSlider")]
        ]]>
        </fx:Metadata>
        <fx:Script>
            /* Define the skin elements that should not be colorized.
               For slider, the skin itself is colorized but the individual parts are not. */
            static private const exclusions:Array = ["track", "thumb"];
          * @copy spark.skins.SparkSkin#colorizeExclusions
            override public function get colorizeExclusions():Array {return exclusions;}
        </fx:Script>
        <s:states>
             <s:State name="normal" />
             <s:State name="disabled" />
        </s:states>
        <fx:Declarations>
         <!--- Defines the appearance of the the Slider's DataTip. To customize the DataTip's appearance, create a custom HSliderSkin class. -->
            <fx:Component id="dataTip">         
                <s:MXMLComponent minHeight="24" minWidth="40" y="-34"> 
                    <s:Rect top="0" left="0" right="0" bottom="0">
                             <s:fill>
                                  <s:SolidColor color="0x000000" alpha=".9"/>
                             </s:fill>
                             <s:filters>
                                 <s:DropShadowFilter angle="90" color="0x999999" distance="3"/>
                            </s:filters>
                        </s:Rect>
                        <s:SimpleText id="labelElement" text="{data}"
                             horizontalCenter="0" verticalCenter="1"
                             left="5" right="5" top="5" bottom="5"
                             textAlign="center" verticalAlign="middle"
                             fontWeight="normal" color="white" fontSize="11">
                    </s:SimpleText>
                </s:MXMLComponent>
            </fx:Component>
         </fx:Declarations>
        <!--- Defines the skin class for the HSliderSkin's track. The default skin class is HSliderTrackSkin. -->
        <s:Button id="track" left="0" right="0" top="0" bottom="0"
                  skinClass="skins.HSliderTrackSkin"/>
        <!--- Defines the skin class for the HSliderSkin's thumb. The default skin class is HSliderThumbSkin. -->
        <s:Button id="thumb" top="1" bottom="1" width="{hostComponent.height*1.5}" skinClass="skins.HSliderThumbSkin"/>
    </s:SparkSkin>
         Skin Part B
    <?xml version="1.0" encoding="utf-8"?>
    <!--
         ADOBE SYSTEMS INCORPORATED
         Copyright 2008 Adobe Systems Incorporated
         All Rights Reserved.
         NOTICE: Adobe permits you to use, modify, and distribute this file
         in accordance with the terms of the license agreement accompanying it.
    -->
    <!--- The default skin class for the thumb of a Spark HSlider component. -->
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">
        <fx:Metadata>
        <![CDATA[
          * @copy spark.skins.default.ApplicationSkin#hostComponent
             [HostComponent("spark.components.Button")]
        ]]>
        </fx:Metadata>
        <s:states>
            <s:State name="up" />
            <s:State name="over" />
            <s:State name="down" />
            <s:State name="disabled" />
        </s:states>
        <!-- border -->
        <s:Rect left="0" right="0" top="0" bottom="0" radiusX="{hostComponent.height/2}" radiusY="{hostComponent.height/2}">
            <s:fill>
                <s:SolidColor color="0x4F4F4F"  />
            </s:fill>
        </s:Rect>
         <!-- fill -->
         <s:Rect left="0.5" right="0.5" top="0.5" bottom="0.5" radiusX="{hostComponent.height/2}" radiusY="{hostComponent.height/2}">
              <s:stroke>
                   <s:LinearGradientStroke rotation="90" weight="1">
                        <s:GradientEntry color="0x000000" alpha="0" />
                        <s:GradientEntry color="0x000000" alpha="0.33" />
                   </s:LinearGradientStroke>
              </s:stroke>
              <s:fill>
                   <s:LinearGradient rotation="90">
                        <s:GradientEntry color="0xFFFFFF"
                                          color.over="0xE5E5E5"
                                          color.down="0x999999" />
                        <s:GradientEntry color="0xD8D8D8"
                                          color.over="0x7D7D7D"
                                          color.down="0x555555" />
                   </s:LinearGradient>
              </s:fill>
         </s:Rect>
         <!-- highlight -->
    </s:SparkSkin>
         Skin Part C
    <?xml version="1.0" encoding="utf-8"?>
    <!--
         ADOBE SYSTEMS INCORPORATED
         Copyright 2008 Adobe Systems Incorporated
         All Rights Reserved.
         NOTICE: Adobe permits you to use, modify, and distribute this file
         in accordance with the terms of the license agreement accompanying it.
    -->
    <!--- The default skin class for the track of a Spark HSlider component. -->
    <s:SparkSkin xmlns:fx="http://ns.adobe.com/mxml/2009" xmlns:s="library://ns.adobe.com/flex/spark">
        <fx:Metadata>
        <![CDATA[
          * @copy spark.skins.default.ApplicationSkin#hostComponent
             [HostComponent("spark.components.Button")]
        ]]>
        </fx:Metadata>
        <s:states>
            <s:State name="up" />
            <s:State name="down" />
            <s:State name="over" />
            <s:State name="disabled" />
        </s:states>
         <!-- border -->
        <s:Rect left="-1" right="-1" top="0" bottom="-1" radiusX="{hostComponent.height/2}" radiusY="{hostComponent.height/2}">
            <s:fill>
                <s:LinearGradient rotation="90" >
                     <s:GradientEntry color="0x000000" alpha="0.55" />
                     <s:GradientEntry color="0xFFFFFF" alpha="0.55" ratio="0.8" />
                </s:LinearGradient>
            </s:fill>
        </s:Rect>
        <!-- fill -->
        <s:Rect left="0" right="0" top="1" bottom="0" radiusX="{hostComponent.height/2}" radiusY="{hostComponent.height/2}">
            <s:fill>
                <s:SolidColor color="0xCACACA" />
            </s:fill>
        </s:Rect>
         <!-- hit area -->
         <s:Rect left="0" right="0" top="0" bottom="0" radiusX="{hostComponent.height/2}" radiusY="{hostComponent.height/2}">
              <s:fill>
                   <s:SolidColor alpha="0"/>
              </s:fill>
         </s:Rect>
    </s:SparkSkin>

  • Has anyone managed to embed flash content within there responsive HTML5 website?

    Has anyone managed to embed flash content within there responsive HTML5 website? I'm aiming to get my client gallery Flash based but don't want to sacrifice my responsive HTML5 layout to achieve this.
    I feel the Flash gallery would be more secure than my current option,
    Thanks in advance
    Katie xx
    http://www.katiegarcha.com

    It dawned on me what the problem was, in my Actionscript, I am using a XML sheet to call the pictures in the gallery. The XML sheet is located in the same folder as the actionscript, but not in the same folder as the html page, hence the Flash working when it is directly called but not when it is somewhere else. Once this dawned on me, I remembered that I used "short" urls for the images thinking of them all being in the same folder as the actionscript, but not thinking about their relative link from the location of the HTML page. So, I believe that if I change the relative urls to fit the location of the HTML instead of the location of the SWF page, it should work.

  • How can I embed album artwork into files in bulk?

    I am using iTunes 11.1 and have imported a bunch of CDs.  The artwork is associated the album in iTunes, but I would like to embed the artwork ino each song file.  I know how to do it one album at a time, but I am wondering if there is a way to have the artwork embedded into multiple albums (or all) at once.
    Oh, I am running iTunes on a Windows machine.
    Thanks,
    John

    If iCal can not publish a calendar, then with or without iWeb, the calendar is not available.
    Find another calendar, such as Google's :
    http://www.google.com/search?q=google+calendar
    Edit :
    http://www.google.com/search?q=html+calendar

  • Is there a way to EMBED Flash player?

    Hello Earth-lings,
    Good Day!
    First of all, I have created a website for a client of mine
    but whenever they wanted to
    visit their 100% Flash website, they can see the 'Flash
    Detection - Download Flash
    Player from Adobe' prompt but they could not install the
    downloaded Flash Player
    as they got an error something like ' You don't have
    privilages . Please contact your
    Admin.'
    Is there any way to solve this issue?
    PS. Sorry for the 2x posts.

    But is there a way to embed Flash Player in it so that it's
    easier for
    them - what I meant was the trouble to inform their admin
    just for
    this.

  • Can Servlet embed flash??

    hi,all
    Recently,I've start write servlet code,and client UI which use flash application.But I have problem with write out page through servlet.
    I want to know can servlet embed flash (swf.file).Below I post some section of my code.
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException,IOException
    response.setContentType("text/html");
    PrintWriter out = response.getWriter();
    out.println("<html>");
    out.println("<head>");
    out.println("<meta http-equiv=Content-Type content='text/html>");
    out.println("<title>XXX</title>");
    out.println("<script language='JavaScript'>");
    out.println("function openNewWindow(URLtoOpen, windowName, windowFeatures){");
    out.println("newWindow=window.open(URLtoOpen, windowName, windowFeatures); } </script>");
    out.println("<script language='JavaScript' type='text/JavaScript'>");
    out.println("<!-- ");
    out.println("function setFlashVars() {");
    out.println("enterprise.SetVariable('userid'," + UserID + "); }");
    out.println("function openBrWindow(theURL) {");
    out.println("window.open(theURL,'desc','width=588,height=285'); }") ;
    out.println("//--> </script>");
    out.println("</head>");
    out.println("<BODY bgcolor='#999999' onLoad=\"setFlashVars()\">");
    out.println("<A HREF=javascript:top.close()></A> <A HREF=e-date.swf></A> <!-- text used in the movie-->");
    out.println("<OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0\" WIDTH='100%' HEIGHT=\"100%\" id=\"enterprise\" ALIGN=\"\">");
    out.println("<PARAM NAME=movie VALUE=\"enterprise.swf\">");
    out.println("<PARAM NAME=quality VALUE=high>");
    out.println("<PARAM NAME=scale VALUE=exactfit>");
    out.println("<PARAM NAME=devicefont VALUE=true>");
    out.println("<PARAM NAME=bgcolor VALUE=#999999>");
    out.println("<PARAM name=flashvars value=\"gatewayURL=" + gatewayURL + "&Userid=" + UserID + "&Today=" + today + "\">");
    out.println("<EMBED src=\"enterprise.swf\" quality=high scale=exactfit devicefont=true bgcolor=#999999 WIDTH='100%' HEIGHT='100%' NAME=\"enterprise\" ALIGN=\"\" TYPE=\"application/x-shockwave-flash\" flashvars=\"gatewayURL=" + gatewayURL + "&Userid=" + UserID + "&Today=" + today + "\" PLUGINSPAGE=\"http://www.macromedia.com/go/getflashplayer\"> </EMBED>");
    out.println("</OBJECT>");
    out.println("</BODY>");
    out.println("</html>");
    out.close();

    You should use the path to the .swf file, i.e. /myapp/flash/whatever.swf

  • Spartan support Flash Player but not silverlight!.

    why spartan(0.11.10061.0), support Flash player but not silverlight?

    Chrome supports flash natively.
    I guess they don't want consumers to move to Chrome because some web sites work on Chrome and not Spartan.
    Spartan is supposed to be a cut down super lightweight super fast browser.
    Running Silverlight/ActiveX in the browser is considered low priority by Microsoft.
    I think the idea is you use IE11 if you want Silverlight.
    http://blogs.msdn.com/b/ie/archive/2015/01/22/project-spartan-and-the-windows-10-january-preview-build.aspx
    Should you work in one of those enterprise companies.
    Or want to use Netflix, SkyGo etc etc.
    Hope that helps.
    Technet articles: Uneventful MVVM;
    All my Technet Articles

  • Embed album artwork to single track?

    I know that album artwork can be embedded into an album by selecting all the tracks, right clicking, selecting get info and then pasting the picture into the artwork box within the info tab.  However, I have some single tracks that are proving to be a challenge.  When I right click, and select get info, the info tab doesn't have an artwork box.  It does have an artwork tab, but pasting a picture in that doesn't result in the artwork getting embedded in the file.
    What am I missing...is there a way to embed artwork in a single track?
    Thanks

    It is a minor inconvienence depending on how small your library is. It is not very logical for people with large libraries to copy paste 800 times to get every album its artwork in id3. I was able to find a solid 3rd party solution http://itsfv.sourceforge.net/ However I think iTunes should have an option to embed the artwork and write the artwork to the album's folder. I guess this has been more of a feature request than a question.

  • My background image isn't lining up between my design, preview, and web preview. HELP!

    I'm new to using Muse and have spent the afternoon going through online tutorials etc. I understand the fundamentals of adding an image to use as a background, but when I upload the image, it lines up completely different in design, preview, and web preview screens. I've been playing around with different settings but I can't for the life of me figure how to make my preview and web preview look like my design page.
    Below are design page, preview page, web preview.
    I'm sure there is some fundamental piece I'm missing here as I can't seem to find any threads with the same question being posed. If I had hair, I'd be pulling it our right about now.

    1) Resize your image in Photoshop to the maximum width you require for browser display (probably ~1600px, but certainly less than than 2560px) and use Save for Web to create a JPEG of it with the lowest JPEG quality rating you can stand (or your initial page load times will be slow) and import that back into Muse. (The most likely reason the Muse Preview is blank is that this image is too large, in terms of number of total number of pixels.)
    2) In the Browser Fill panel in the Fitting options popup menu choose "Scale to Fill". Scale to fill will scale the image up proportionally such that none of the black background shows. If the aspect ratio of the browser window is different than the image, then a portion of the width or height of the image will be cropped. What portion is determined by how the image is aligned using the "Position:" control in the Browser Fill panel.
    Because browser window sizes vary (since they're user resizable) the display of the image will be different than what is seen in Muse Design view. However, the letterboxing/pillarboxing effect in the screenshot you provided is due to the Fitting Option being set to "Scale to Fit" rather than "Scale to Fill".

  • Acrobat X Pro Embed Flash & Powerpoint 2010

    The only reason I upgraded to Acrobat X Pro from standard was to be able to embed cine loops/video into Powerpoint slides that would play upon conversion to PDFs via PDFMaker.
    I've made some small test ppts and converted them. Sometimes they convert, sometimes they don't.
    Of the converted files, I embedded two videos converted from mp4 via the "Embed Flash" option under the Acrobat heading on the Powerpoint ribbon.
    One plays as it should.  The other just displays an all black window.  Both files were MP4s.  Got no error messages.  Both MP4s look fine/play fine in Powerpoint.  So why won't one convert correctly - no error message so PDFMaker seems to think it converted fine.  Seems like it is very unreliable.
    Can anyone help?
    Thanks,
    j

    Hi,
    Thank you for trying to help.  I have Powerpoint 2010 32 bit version.  I have made some progress, but spent an inordinate amount of time doing so.
    I can't embed directly into Acrobat using the commands you provided in your first message. This is what I am trying:
    Insert new page. While on that page go to tools>Content>Multimedia>Video...  I click video  Nothing actually happens.  Not sure how this is supposed to work or be helpful.  There is no prompt to select a file, no dialog box, nothing...the selection just has a check mark next to it and stares back at me.
    But if I select, Insert Page from Another File, and then adjust, "files of type" to be the video files, I can load the video directly into the PDF.  Of course then I don't have them formatted in the same slide background, etc. as the rest of the presentation and, "IT AIN'T PRETTY!".  And the insert only lets me insert "before" or "after" current slide, not onto the current slide...
    I found that the inserted MP4 files displayed in jerky fashion and appear to have fewer frames than the original. In Powerpoint they play fine and move smoothly.  Another problem was that the files "blinked" before playing. In other words, image 1 is displayed.  If I click on the image, it goes black for a second and then the image comes back and plays its loop.  After much trial and error and loss of hours of my life I will never get back, I found that iif I turned off hardware acceleration and let it play in "software," the files played fine with no blinking.  However, how will I know how viewers of my content have their computers set up? This is pretty sketchy implementation, or, more likely, I just don't know what I'm doing.
    Also, I see no way to make the slide play continuously.  I get one loop per click.  I did edit the properties so that it would "Disable when:" "The page containing the content is closed." This doesn't seem to make any difference and it still stops after one loop even while the page is displayed.  Is there a way to make the files that are directly embedded into the PDF play continuously once triggered?  Actually, I guess I don't care about that so much as, overall, inserting the cine loops directly into the PDF is a bad solution as the slide doesn't have the Powerpoint theme and formatting and such.
    Concerning the embed process in Powerpoint using the Adobe Acrobat X Pro add-in:  I converted the test video to MP4 and MOV from an original AVI using Prism Video File Converter and each displayed just fine in their native format in Powerpoint (and I could loop them continuously!)
    However during the embed process in Powerpoint,  when I use the Acrobat "Embed Flash" tool, the video is inserted as an all black window on the slide...I can't see the content at all.  If I save the file as a PPTm, the images do appear  in the Powerpoint slideshow and play, albeit with the initial blank image problem/Flicker despite hardware acceleration still being turned off.  Again I can see no way to make an embedded image loop continuously as long as the slide is displayed.  I get one loop and have to trigger it again.  Also, once I play the show, the image then does appear on the slide in the, "normal" editing mode. Pretty weird that I have to play the show to get the image and controls to appear in edit mode...
    So, bottom line questions:
    1  Can I do an "embed flash" and get the image to play continuously unless stopped by the user using the controls? 
    2. Can I do an "embed flash" and avoid the business where the cine box goes blank before displaying the embedded video?
    3.  Can I do an "embed flash" that doesn't start off life in the PPT presentation as an empty black box that only displays the video after it has been put through a slide show experience?
    BTW, I am a physician and I'm trying to embed cine loops of 3D medical images from my radiology practice into secure PDF files for distribution to interested health care professionals. Since the images reflect my practice, I want them and the entire presentation to be as professional as possible.  I have to tell you, this is pretty frustrating since I paid for the Acrobat X PRO out of pocket and it isn't a business expense/tax deductible, etc.  I would never have thought this process would be so convoluted in such a mature product.  Any additional help that you or others on the forum can provide would be much appreciated, and of course I do appreciate your efforts to date.
    Best regards,
    John

Maybe you are looking for

  • Digital audio via USB no longer works since IOS8

    Hi, I use the "Lightning to USB Camera Adapter" (ref MD821ZM) to connect my iPhone or the iPad to my Bowers and Wilkins speakers MM-1 USB cable. This allowed to use the B&W internal DAC. It has worked fine in IOS 7 and it was a fantastic feature and

  • Can't scan from epson workforce 845

    I can't scan documents from my epson workforce 845 printer.  I use a wireless home network to connect to printer.  Printing works fine, but epson software shows communication error when I try to scan. 

  • Goods Receipt for Inbound Delivery through MIGO

    Hi All, Can anyone pl. explain me in steps the process of GR for Inbound Delivery from MIGO transaction. Also I need the process of reversing this goods receipt done. For certain inbound deliveries a dump occurs in the program SAPLIE01 in 'EQUIPMENT_

  • Doubt in bdc program session method

    hi, I tried to execute this program..i am getting error in the bolded line..can you give suggestions.. REPORT  ZPRABA1. TABLES:LFA1. DATA:BEGIN OF IT_ITAB OCCURS 0,      LIFNR LIKE LFA1-LIFNR,      LAND1 LIKE LFA1-LAND1,      NAME1 LIKE LFA1-NAME1,  

  • Interpreting Trace File.

    Hi i am using 10.2.0.4.0 version of oracle. I am having trace file info as below, for one of the query. So how should i interpret the trace file? What is the issue in the query, and the scope of improvement in the query? please note that , i have rem