Dynamic Embeded Assets

So I have a class with a bunch of embedded assets for my
project. I now want to re-use this same code base for another
project and dynamically switch out these dynamic assets depending
on the project. Is there a way to insert a variable in the source
of these embedded assets.
[Embed(source=myBackground)]
[Bindable]
public static var background:Class;
I

did you try adding width/height attributes to the image.  they say the img tag is experimental still, so with the symbol reference it might not know the width and height to use, it still displays properly (the image piece only) but the rest of the html text doesn't know how to deal with it?

Similar Messages

  • Embedded Assets and app size

    Hi,
    I am embedding assets into our Air app. The same asset will be embedded in several components. It is my understanding that this would lead to multiple copies embedded in the .swc file and it would be better to create a file which declares a class of each embedded asset to be refered to by the components. Is my understanding correct or is the compiler smart enough to see that the same file is embedded multiple times and embed it once and optimize?
    Thanks
    Claires

    Yes, you can dynamically load the needed fonts at run time.
    Doc is here:
    http://livedocs.adobe.com/flex/3/html/styles_10.html
    hth,
    matt horn
    flex docs

  • How Automate Dynamically Embedding Customer Names from a List into PDF Footer?

    Mavens,
    After discovering that a PDF training workbook of mine has been widely copied (without authorization), I'd like to "personalize" future versions of this artifact with the customer/user name dynamically embedded in each PDF's footer.
    Based on your experience, what is the easiest, quickest & most economical way to: generate a set of PDFs (from a "Master") where each individual PDF is personalized with a user/customer name in the footer (e.g., "This document is licensed to {FRED BLOTZ} at {BIG COMPANY, Inc.}. Duplication or distribution is not authorized.").
    The desired workflow is:
    1. Create an MS-Excel Workbook with a list of all trainee (user) names.
    2. Open some type of "PDF Personalization" tool.
    3. Provide the path to the "Master PDF" to the tool.
    4. Provide the name of the customer (company) to the tool.
    5. Provide a path to the MS-Excel Workbook with list of individual's names.
    6. Provide a path to a folder where the tool should write the generated PDFs.
    7. Click a button ("Generate Personalized PDFs").
    Then...distribute individualized PDFs to trainees.
    Is there a tool out there somewhere which provides the desired solution?
    Thank you in advance for your experienced-based suggestions.
    Plane Wryter
    PS: While I fully appreciate the on-going discussions regarding the merits/lack-of-merits of DRM, etc...if you elect to reply to this request...please be so kind as to focus on the question as presented and avoid clambering onto a soapbox to "rant" about DRM...or suggest increasing the fee to the customer (a big firm that only pays "per-trainee" fees) to cover distribution. Thank you.

    go to database, show sql query. please paste the query in here it will be easier to help you
    if you cant seem to get it from there, go to database, database expert and edit the command file. (if that is the dataset you are using) copy and paste that.

  • Dynamic embedding of view in used component

    Hi All,
    I have a scenario were i have to provide print functionality to all the views of an existing web dynpro component. This component has around 20 views. I have developed a new component for the print functionality were i am using BSP to fire the CTRL+P function.
    But the problem is how do i get the view at runtime in my print component.....?
    I tried passing the view controller reference to the print component through context binding, but i am unable to embed the view through the reference in to the print component view container element.
    Is there any way i can acheive this....???
    Any help will be appreciated..!
    Regards,
    Runal

    hi Runal ,
    have a look at this video presntation for dynamic embedding of views :
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/5cb731e7-0b01-0010-1792-fbe5f55e39d2
    or
    I wud suggest u to procced like this :
    1 In design time , insert all ur views inside ur tansparent container
    2 * initially set all ur view to invisible* , for this :
    Re: Making UI elements visible at runtime based on events.
    a) make a context attribute of type WDUI_VISIBILITY
    b) bind this attribute wid ur view
    c) set the view to invisible by setting the context attribute to '01' using set_attribute method
       DATA lo_nd_cn_visiblesuper TYPE REF TO if_wd_context_node.
        DATA lo_el_cn_visiblesuper TYPE REF TO if_wd_context_element.
        DATA ls_cn_visiblesuper TYPE wd_this->element_cn_visiblesuper.
        DATA lv_ca_visible LIKE ls_cn_visiblesuper-ca_visible.
    *   navigate from <CONTEXT> to <CN_VISIBLESUPER> via lead selection
        lo_nd_cn_visiblesuper = wd_context->get_child_node( name = wd_this->wdctx_cn_visiblesuper ).
    *   get element via lead selection
        lo_el_cn_visiblesuper = lo_nd_cn_visiblesuper->get_element(  ).
    *   get single attribute
        lo_el_cn_visiblesuper->set_attribute(
          EXPORTING
            name =  `CA_VISIBLE`
            value = '01').
    // context attribute CA_VISIBLE under node cn_visible set to invisible
    3 nw based pn ur condition , whn u wanted to do dynamic embedding , at tht time make ur view visible inside ur appropriate method
    this wud do
    rgds,
    amit

  • Bug in InlineGraphicElement with embedded asset

    embedded asset set to source of InlineGraphicElement does not
    show up until a real edit operation occurs
    src:
    var bullet:InlineGraphicElement = new InlineGraphicElement();
    bullet.source = "
    http://www.adobe.com/shockwave/download/images/flashplayer_100x100.jpg";
    //new bulletClass();
    bullet.width = 15;
    bullet.height = 15;
    var pf:ParagraphFormat = new ParagraphFormat();
    pf.marginLeft = 20;
    pf.textIndent = 0;
    p.paragraphFormat = pf;
    var sp:SpanElement = new SpanElement();
    sp.digitWidth='10';
    sp.fontFamily='courier';
    sp.fontSize = 10;
    sp.textAlpha = 0.1;
    sp.text='.';
    p.addChildAt(0,sp);
    p.addChildAt(0,bullet);
    _textFlow.flowComposer.updateAllContainers();
    private function
    graphicStatusChangeEvent(e:StatusChangeEvent):void
    for each(var bm:bulletMap in map)
    if(bm.bullet == e.element)
    trace('found');
    bm.para.textIndent =
    -InlineGraphicElement(bm.bullet).actualWidth -12;
    _textFlow.flowComposer.updateAllContainers();
    //InlineGraphicElement(e.element).graphic.addEventListener(MouseEvent.CLICK,
    onBulletClick);
    _textFlow.flowComposer.updateAllContainers();
    if i replaced embed source with normal url , it loads and
    shows up correctly.
    Any idea on it ? A bug ?

    FYI: What's happening here is that composition is being
    recursively called. With the embedded graphic the status is being
    set during the first call to updateAllContainers and then the event
    handler recursively calls into updateAllContainers. That is
    confusing the composer.
    Rather than requiring the caller to figure that out I'm
    adding a boolean to the composer so that calls such as
    updateAllContainers etc simply return on recursive calls. Once
    that's done the example is working.
    It'll take a while for the fix to percolate through the
    system and be posted.
    Note that simply adding your own booleans around the first
    call to updateAllContainers may not quite work. You'll need to also
    call compose again if you see a recursive call - there is one more
    internal change to do with delayed handling of the format change
    made in the event handler.
    By the way you are using a fairly old build - I think it
    would be worth updating to buid 370.
    Richard

  • Dynamic embedding of DTD in DOM

    Hi
    I am parsing the below XML which is uploaded by the user.
    <?xml version="1.0"?>
    <carList  name=””>
    <car>
    <name/>
    <model/>
    <cost/>
    </car>
    </carList> Similarly user can upload even truck.xml or flight.xml, which are having seprate DTDs for validation.
    I have a DTD to validate the XML file provided by the user. But I dont want the user to know about this validation and DOCTYPE element will not be available in XML file
    ( <!DOCTYPE car SYSTEM "someurl/car.dtd"> ).
    DOM provides option only to enable validating (setValidating(boolean). But, Is it possible to set the DTD file too dynamically ???

    hi Runal ,
    have a look at this video presntation for dynamic embedding of views :
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/media/uuid/5cb731e7-0b01-0010-1792-fbe5f55e39d2
    or
    I wud suggest u to procced like this :
    1 In design time , insert all ur views inside ur tansparent container
    2 * initially set all ur view to invisible* , for this :
    Re: Making UI elements visible at runtime based on events.
    a) make a context attribute of type WDUI_VISIBILITY
    b) bind this attribute wid ur view
    c) set the view to invisible by setting the context attribute to '01' using set_attribute method
       DATA lo_nd_cn_visiblesuper TYPE REF TO if_wd_context_node.
        DATA lo_el_cn_visiblesuper TYPE REF TO if_wd_context_element.
        DATA ls_cn_visiblesuper TYPE wd_this->element_cn_visiblesuper.
        DATA lv_ca_visible LIKE ls_cn_visiblesuper-ca_visible.
    *   navigate from <CONTEXT> to <CN_VISIBLESUPER> via lead selection
        lo_nd_cn_visiblesuper = wd_context->get_child_node( name = wd_this->wdctx_cn_visiblesuper ).
    *   get element via lead selection
        lo_el_cn_visiblesuper = lo_nd_cn_visiblesuper->get_element(  ).
    *   get single attribute
        lo_el_cn_visiblesuper->set_attribute(
          EXPORTING
            name =  `CA_VISIBLE`
            value = '01').
    // context attribute CA_VISIBLE under node cn_visible set to invisible
    3 nw based pn ur condition , whn u wanted to do dynamic embedding , at tht time make ur view visible inside ur appropriate method
    this wud do
    rgds,
    amit

  • Azure indexer for dynamic packaged asset

    Hi I have an mp4 uploaded in the media services and I ran the Azure encoder to create a dynamic package of the video. I also ran the Azure indexer to create the index files for captions.
    I am using the Azure Media Player using the iframe code below in my webpages, however I do not see the captions. 
    <iframe src="//aka.ms/azuremediaplayeriframe?url={mp4 url}" height="300" width="200" frameborder="0" allowfullscreen/>
    I see the ttmland vtt files got created under the asset folder the source mp4 resided but nothing on the dynamically packaged asset. What is the correct way to reference the manifest to get the captions showing?
    Thanks for any help.

    Hi,
    If you deploy the application to local Tomcat, can you access the site using root URL? The StackOverflow thread states it is needed to rename the war file to ROOT.war, and remove the out-of-the-box ROOT/ directory. Please double check whether you have done
    that. You may also want to refer to
    http://tomcat.apache.org/tomcat-7.0-doc/config/context.html, where it states:
    The context path of this web application, which is matched against the beginning of each request URI to select the appropriate web application for processing. All of the context paths within a particular Host must be unique. If you specify a context path of
    an empty string (""), you are defining the default web application for this Host, which will process all requests not assigned to other Contexts.
    This attribute must only be used when statically defining a Context in server.xml. In all other circumstances, the path will be inferred from the filenames used for either the .xml context file or the docBase.
    Even when statically defining a Context in server.xml, this attribute must not be set unless either the docBase is not located under the Host's appBase or both deployOnStartup and autoDeploy are false. If this rule is not followed, double deployment is likely
    to result.
    And this link(http://stackoverflow.com/questions/16160565/configure-the-path-localhost-of-the-war-application-to-be-the-root-java-ee
    ) may help you.
    Thanks.
    Will
    <THE CONTENT IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND, WHETHER EXPRESS OR IMPLIED>
    Thanks
    MSDN Community Support
    Please remember to "Mark as Answer" the responses that resolved your issue. It is a common way to recognize those who have helped you, and makes it easier for other visitors to find the resolution later.

  • No video of Dynamically Linked asset from AE to Encore

    Hi Folks,
    I’m working with Adobe CS5 Collection Premium and I experience the following problem with bringing animate assets through a dynamic link into my encore project. I’ll try to explain briefly the issue:
    I’m building a blu-ray disc in Encore, which has animated transitions between the menus. These transitions are created in After Effects and brought into Encore via a dynamic link. All the dynamically linked transitions are output correctly in the final disc with the exception of the first-play animated introduction (created in AE) to my main menu – the sound is there but there is no video. There are no issues during the preview of the project in Encore - everything plays just fine and all dynamic links to my animated transitions play ok in Encore. The problem occurs after burning the BD-disc - the video is missing from the intro scene.
    Has anybody had a similar issue with dynamically linked assets to Encore projects? I tried bringing the same animated asset via dynamic link with After Effects CS5 and Premiere Pro CS5. The result is the same – the first scene lacks the video. Could it be because my Encore project settings are 20mbps, which causes the blu-ray player to struggle with the first-play animated menu?
    Any solutions?

    The composition background is transparent. It has per se no color and does not react to blendmodes and such. It's imaginable that Encore resets it to black for whatever reason (wouldn't know, as I design my menus always with full frame backgrounds to begin with). Still, I would consider it a bug regardless, so please fiel away:
    http:www.adobe.com/go/wish
    Mylenium

  • OS X Flash Player + Flex Modules + Embedded Assets cause errors

    I'm getting some strange errors when using modules which have
    embedded assets, the module will load fine the first time it loads
    after compile, but after then everytime I load the module I get
    lots of the following errors (once for each embedded asset, images,
    fonts etc.):
    TypeError: Error #2023: Class
    Test__embed__font_EmbedTrebuchet_medium_normal_1428760394$ must
    inherit from Sprite to link to the root.
    at flash.display::MovieClip/nextFrame()
    at
    mx.core::FlexModuleFactory/mx.core:FlexModuleFactory::deferredNextFrame()[E:\dev\flex_201 _borneo\sdk\frameworks\mx\core\FlexModuleFactory.as:365]
    at
    mx.core::FlexModuleFactory/mx.core:FlexModuleFactory::update()[E:\dev\flex_201_borneo\sdk \frameworks\mx\core\FlexModuleFactory.as:262]
    at
    mx.core::FlexModuleFactory/mx.core:FlexModuleFactory::moduleCompleteHandler()[E:\dev\flex _201_borneo\sdk\frameworks\mx\core\FlexModuleFactory.as:454]
    However this only seems to be happening on OS X and seems
    related to the flash player, I originally had 9.0.47 installed, but
    got the 9.0.28 version of the debug player to try (which gave the
    same errors).
    I've tried to access the same application from a Windows
    machine and vice versa and the errors only occur when viewing the
    application from OS X. Also this only seems to happen when I'm
    using the debug version of the application, the release version
    seems to be okay - but obviously this is making developing the
    application difficult when I'm on OS X.
    I have tried the latest beta version of Flash Player 9 also,
    but as that doesn't have a debug version it doesn't really tell me
    if it resolves the issue or not.
    I can't find any reference to this error elsewhere.
    Any help would be greatly appreciated.
    -D

    I found a suggestion in another debugger problem thread to run a Flash Player installer from within the Flex Builder folder. I found an app named "Flash Player 9 Silent Installer.app" and ran it.  My debugging functionality is back now, but the player version is a lot older.
    The only culprit I can think of for this problem is Firefox. I recently upgraded to v 3.5.3 and I remember it popping up a warning about Flash Player needing to be upgraded immediately. I wonder if it overwrote something that caused this?

  • Transcoding Dynamic Link Assets

    Am I missing something, or does Encore 5.0 not allow transcoding of Dynamically Linked assets before building?  The usual suspects of Transcode Now and File>Render>Project are all grayed out.  Seems the only way I can get the linked PP sequence to render is to Build.
    Is that normal?

    The next option would be that the transcode has already occurred for the type of project currently set (DVD -> DVD transcode setting is "transcoded or do not transcode"; bluray is bluray transcoded).
    It would be very odd indeed for Transcode Now to be unavailable. Not where I can play with this, but I can't imagine a scenario that would produce the problem.

  • Dynamically embedded swf, has it ever worked

    I have to repost it. Wondering what adobe will say about it.
    I have tried this for a couple of days. I created a swf object in window.onload (also tried to create it directly while the script was loaded ), then call an AS function from JS. statically embedded swf works for both IE8 and FF, FF also fine for dynamically loading. In IE, this call externalinterface.call("echo", "as returns " + b); always shows "as returns false". The callback function has never worked in other approches with dynamic creation. Anyone has good experience?
    Thanks.
     //js
    <script language="javascript">
    var containerready=false,flashready=false;
    function addLoadEvent(func) {var oldonload = window.onload; if (typeof window.onload != 'function') {
    window.onload = func; } else { window.onload = function() { if (oldonload) { oldonload(); } func(); }}
    function embedswf(){
    var a,swf="<object classid='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'";
    swf+=" codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=10, 0,0,0'";
    swf+=" width='215' height='318' id='testswf1' align='middle'>";
    swf+=" <param name='allowScriptAccess' value='always' />";
    swf+=" <param name='allowFullScreen' value='false' />";
    swf+=" <param name='movie' value='testswf1.swf' />";
    swf+=" <param name='quality' value='high' />";
    swf+=" <param name='wmode' value='transparent' />";
    swf+=" <embed src='testswf1.swf' quality='high' wmode='transparent' width='215' height='318' name='testswf1' align='middle' allowScriptAccess='always' allowFullScreen='false' type='application/x-shockwave-flash' pluginspage='http://www.adobe.com/go/getflashplayer' /></object>";
    a=document.createElement("div");
    a.id="swfholder";
    a.innerHTML=swf;
    document.body.appendChild(a);
    containerready=true;
    window.setTimeout(callas, 100);
    } addLoadEvent(embedswf); function echo(p){ alert(p)}  function callas()
    // alert("callas:containerready="+containerready+";fl ashready="+flashready);
    containerready=true;
    if(flashready){
    var a=getswf();
    a&&(a.flashfunc())
    return
    window.setTimeout(callas, 100);
    } function setflashready()
    flashready=true;
    function getcontainerready()
    //alert("getcontainerready:g31="+containerready+";fl ashready="+flashready);
    return containerready;
    function getswf()
    if (navigator.appName.indexOf("Microsoft") != -1)
    return window["testswf1"];
    else
    return document["testswf1"];
    } </script> //as
    import flash.external.ExternalInterface; flash.system.Security.allowDomain("*"); var rtm:Timer = new Timer(500);
    startTest(); function f0():void {
    ExternalInterface.call("echo", "one");
    function timerHandler(event:TimerEvent):void
    if (isContainerReady())
    rtm.stop();
    rtm.removeEventListener(TimerEvent.TIMER, timerHandler);
    setupCallbacks();
    function startTest():void
    if (ExternalInterface.available)
    try
    if (isContainerReady())
    setupCallbacks();
    else
    rtm.addEventListener(TimerEvent.TIMER, timerHandler);
    rtm.start();
    catch(error:Error) {
    trace("An Error occurred: " + error.message + "\n");
    else
    trace("External interface is not available for this container.");
    function isContainerReady():Boolean
    var b:Boolean = ExternalInterface.call("getcontainerready");
    ExternalInterface.call("echo", "as returns " + b);
    return b;
    } function setupCallbacks():void
    ExternalInterface.call("echo","setupcallback");
    ExternalInterface.addCallback("flashfunc", f0);
    ExternalInterface.call("setflashready");

    has it ever worked or is an Adobe bug? anyone knows?

  • How to use the BitmapData of an Embeded Asset

    At the top of my class I embed this
    [Embed(source='icons/16.png')]
    private var icon16:Class;
    I could make this class the source of a dummy image
    var dummyImage:Image = new Image();
    dummyImage.source = icon16;
    then wait until the asset is loaded into the image and go
    var myBitmapData:BitmapData = BitmapData(dummyImage.content);
    then I could add it to my NativeApplication's icon's bitmaps
    array
    but that seems improper as I would have to create a useless
    image and listen to some event on it.
    Is there a more direct way to extract the BitmapData of an
    embeded image?

    "Alexis Ninem" <[email protected]> wrote in
    message
    news:g96e4l$s4$[email protected]..
    > At the top of my class I embed this
    >
    > [Embed(source='icons/16.png')]
    > private var icon16:Class;
    >
    > I could make this class the source of a dummy image
    >
    > var dummyImage:Image = new Image();
    > dummyImage.source = icon16;
    >
    > then wait until the asset is loaded into the image and
    go
    >
    > var myBitmapData:BitmapData =
    BitmapData(dummyImage.content);
    >
    > but that seems improper.
    >
    > Is there a more direct way to extract the BitmapData of
    an embeded image?
    >
    >
    You can make a BitmapAsset of it like this:
    var bA:BitmapAsset = BitmapAsset(new icon16());
    You can then use the bitmapData property of the Asset.
    HTH;
    Amy

  • Dynamic Embedded Character Sub-Setting ???

    Hi All,
    I have instruction movies with 30 plus languages that I will be uploading to YouTube. I have Flash CS5 - AS3 - Player 10 req.
    I need to add only the font groupings (Latin, Cyrillic, Chinese, etc.) needed for the language specified and ideally only those characters that are being used by the selected language when the file is processed/complied.
    1. Can I programmatically add the characters being used to the internal list of embedded characters? Even if I have to run it twice to get it into the Library Font Object?
    2. Can I programmatically set the language grouping? I know I can turn layers that call different fonts off and off.
    3. Does the embedded character subsetting have a character limit? I can always make a utility to read the XML tags the have my displayed text and make a file or clipboard that I can paste it into the library. But, this is slow and tedious when you have 30 plus languages and 30 plus movies. I am trying to automate this whole process and limit inspection and non-automated testing.
    When I use this on a users CD, all fonts will be in a shared SWF. The fonts are over 8mb in size.
    I have a small issue with the #2 method - I have the potential need have Unicode characters in a text string that is in a ASCII based programming language. (FYI - the programs parser is smart enough to process the text string embedded in the code). I would hate to burden the movie with all the Chinese Characters or my newbie users/programmers (cough, cough) of my movie template with the task of ensuring that all characters a truly emdded and supported.
    Thanks,
    Jim

    A few points:
    (1) The point of embedding fonts in a PDF file is to make it possible for the PDF file to be properly displayed and printed by recipients of the PDF file that don't have the same exact fonts you do. Adobe recommends subset embedding of fonts whenever possible for highest quality display and printing of PDF file text. The subsetting includes only the glyphs you use and thus can save considerable file size. (For example, the Arial font in Windows is over 700K in size including all the glyphs for not only Western Latin languages, but also Cyrillic, Greek, Arabic, and Hebrew alphabets. Subsetting usually reduces the amount of the font embedded to 25K or less for typical documents.)
    (2) You don't own the fonts. You own a license to use the fonts. That is a very important difference!
    (3) Remember that PDF is a “final form file format” with very limited editability. If you need to do any extensive editing, you should have the source file, whether .AI (for Adobe Illustrator), .INDD (for Adobe InDesign), .DOCX (for Microsoft Word), etc. to you. You are responsible to getting a license for the fonts used in these documents if you don't already have one.
              - Dov

  • Embedded asset will not load from aliased domain

    I have a flash movie with an embedded flash movie that uses the get_URL to load an externally linked movie. The file works fine if coming from the root domain, but we also have three different domains virtually hosted to the same web root and the embedded movies will not load if accessed from those other domains. Current external URLs are absolute and not relative, still no loading:
    www.topconpa.com
    www.topconprecisionag.com
    please advise
    Steve

    Ok, since I am stuck I did a complete DE-install/Re-Install of all Flash Players and Flash Builder. Clean slate. Thats not it.
    As I have multiple web sites and bounce between Mac and Windows, it can be challenging to keep track. I had been using the Firefox FireFTP Addon to move files around as it was convenient. This was the problem.  Simple answer is FireFTP was doing something wacky (?)  to the SWF files when going from Windows to the Linux hosts.  Using the builtin Microsoft Network Places FTP client or the excellent Transmit 4 on Mac OS X both resulted in working SWF files from my web sites.
    Final Answer: the FTP client messed up the SWF file. Gotta watch that!

  • Dynamic embedding of video file in pdf

    Hi,
    I wanted to embed a video file ( *.mp4 format) in a pdf file programatically.
    I am using C# / Asp.net 4.0.
    Please let me know if there is any way / any tools do to it.
    Thanks,
    Uma Nath

    1
    Open the PDF in which you want to embed and autoplay a movie  in Acrobat Pro. Click "File" on the menu bar and choose "Open" to  display the Open dialog box. Navigate to the PDF, select it, and then  click the "Open" button.
    2
    Go to the page where you want to embed the movie. Acrobat's "Page Navigation" controls are on the left side of the Toolbar.
    3
    Click "Tools" on the menu bar and choose "Multimedia," and  then select "Flash Tool" from the Multimedia fly-out menu. Click and  drag on the page were you want the movie to display to draw a Flash  object control box. This opens the "Insert Flash" dialog box.
    4
    Click the "Browse" button to display the "Select a File"  dialog box. Navigate to the SWF, select it and click the "Open" button.  Click the "Show Advanced Options" check box at the bottom of the Insert  Flash dialog box to expand the dialog box to display advanced options.
    5
    Click the "Launch Settings" tab. Click the "Enable When"  drop-down and choose "The page containing the content is opened." Click  "OK." The movie will now autoplay when the page containing it is opened.
    Bobby Johnson.

Maybe you are looking for

  • Data Federator targetSchema. TableName hanging after deployment

    Data Sources: DB2, AS400, Oracle 9i, Oracle 8i, Flat File EIM Tools: Data Federator 3.0 SP1 FP1. Data Services 3.0 I am using Data federator to connect to and integrate the data sources via 1 target table. The mapping rules and target table validatio

  • Reading fixed position files with File Adapter

    Hi ! I'm trying to use the file adapter to read a file with data in fixed positions . I cannot get it to work, I'm getting : [Line=3, Col=133] Expected "${eol}" at the specified position in the native data, while trying to read the data for "element

  • I can´t export my "Bedienfeld" to CS6 Plugin/Panels, I use configurator 3.1

    Ich habe configurator 3.1 schon neu Installiert. Es kommt die Fehlermeldung, das sich das Bedienfeld nicht nach CS6 exportieren lässt. Admin rechte vorhanden. Wer hat eine Idee woran es liegen könnte?

  • Tranport portal content from SP14 to SP18

    Hello, Is it possible and advisable to transport portal content (iviews, roles, etc) from a portal on EP6 SP14 to EP6 SP18?  Do I need to manually move configuration from one portal to the other?  What are my options? Thank you for feedback. Kevin

  • IWork apps start but will not open a doc nor start a new doc. Just quits!

    I have just bought a new 15" Macbook pro with Mavericks. It has Pages, Numbers and Keynote (apparantly) installed. I have updated to Mavericks 10.9.2 and the Appstore offered updates to Pages, Numbers and Keynote which I did. However, when I start an