Loadmovie with attachMovie

Hi, I don't know if anyone else has had this problem, but i
can't seem to solve it.
so i have a .fla and i'm loading an external swf into a
movieclip that exisits on the first frame of the .fla file using
movieClip.loadMovie. I want to attach a movieclip from the library
of the .fla i'm working in to the movieClip that i'm loading the
external swf into using movieClip.attachMovie. so the movieclip
should appear on top of the external swf. is this possible?

Ah, thank you, that make sense now. The solution you
suggested worked great.
I did also find two other solutions, for anyone else who
might read this. One is to essentially create an empty movieclip on
your timeline. From the linkage window for the empty movieclip, I
made sure I set the Class field to the name of the class I'd
written, something I didn't do previously. This attaches all the
class actionscript to the empty movieclip, and even automatically
runs the constructor when the empty movieclip is placed on the
timeline. It also automatically provides a 'reference' to the main
timeline when I refer to this.attachMovie() from inside the class.
So it worked, but isn't as elegant as doing everything from the
actionscript (unless you are building a component).
The last reference I came across is the
Object.registerClass() method used to attach as class to an object,
similar to using the Linkage method above. But I haven't
successfully tried it yet.
Thanks again for the help kglad,
dana.
Dana Sheikholeslami
Art Institute of California

Similar Messages

  • ScrollPane inside MC loaded with attachMovie

    I'm stuck.
    I need to use a ScrollPane in my site to show several photos.
    My site is set up to load MC's to the MainStage using attachMovie.
    One of my MC's is named Photos.  If I add a ScrollPane to Photos with content called Pics (another MC containing all the photos.) it won't scroll.  What is the proper method of adding a ScrollPane to a MC called with attachMovie?
    Thanks!
    Rick

    Yes, I have the Linkage ID also set to pics as well as Export to Actionscript and Export to Frame 2.
    Could it have something to do with my menu setup?
    My main timeline has one 'container' (EmptyMC) and several buttons.  Each button points to a frame on the main timeline that has another MC (a transition animation).  This transition MC contains an attachMovie, loading a MC into the original container on the main stage.  (I hope this all makes sense...)
    Well, everything works great, until I throw the ScrollPane into the mix.  Even if the ScrollPane is just sitting in the Library, not even on a stage or MC, the whole menu system fails, and won't load any MC's from that point on.
    I'm pulling my hair out on this one...
    Thanks for your help so far, I really appricaite it.

  • Trouble with attachMovie

    i am having trouble with attachMovie....i am attempting to
    use a movie clip button to open a movie clip that is embedded
    within another movie clip. in the code below, i am trying to use
    the p1A button to show the indyButtonMovie that is being loaded
    into the infoBox_mc clip. currently, when i test the movie, i can
    see the infoBox movie, but nothing else. can anyone tell me where
    i've gone wrong?

    Well if your p1AInfoMovie is in your library with export for
    actionscript set to true and its identifier is p1AInfoMovie... then
    try:
    infoBox_mc._visible = false;
    p1A_btn.onRelease = function() {
    infoBox_mc._visible = true;
    infoBox_mc.gotoAndPlay("_growBegin");
    infoBox_mc.attachMovie ("p1AInfoMovie", "indyButtonMovie",
    1000);

  • Actionscript execution order with attachMovie statements

    Hi I wonder if anyone's got any decent solutions to this...
    Basically whenever I have a script generating an interface by
    dynamically placing movie clips (using the attachMovie method), I
    often need the actionscript of the attached movie clip to execute
    before the rest of the code in the main script continues.
    According to normal actionscript execution order, the current
    script finishes before 1st frame actionscript of any attached
    movies is executed, so say for example I had the following in frame
    1 of my root timeline:
    trace("start");
    this.attachmovie("myMovieClip","movieClip1",this.getNextHighestDepth());
    trace("end");
    and the movie clip in my library with the linkage identifier
    "myMovieClip" has the following on frame 1 of its timeline:
    trace("middle");
    Normally this would output:
    start
    end
    middle
    However I want it to output:
    start
    middle
    end
    The only appropriate way I've found so far to do this is to
    have a function that is called on completion of the myMovieClip
    actions, i.e. in the root timeline:
    trace("start");
    this.attachmovie("myMovieClip","movieClip1",this.getNextHighestDepth());
    movieClip1.onLoaded=function() {
    trace("end");
    and in the timeline of the myMovieClip movie clip:
    trace("middle");
    this.onLoaded();
    But the problem with this is that if I rather than the
    trace("end"); statement I want a series of other commands,
    some of them in turn using attachMovie methods, again wanting the
    scripts to execute in the order above, I'm going to end up with a
    lot of nested onLoaded functions and it's going to end up looking
    pretty ugly!
    Any thoughts?

    you're welcome.
    i generally load everything sequentially.  if you don't want user's to possibly advance into the display far enough to see a load-delay, then you can use some preload display.  here's an example i'm doing for a current client:
    www.kglad.com/Files/tf
    and click portfolio.
    this client has a lot of images to load and wants them presented as soon as possible so i load them sequentially.  that makes for an orderly display (though this client only wants a few images viewable on-stage at any one time).

  • Problem with loadMovie with IE over https connection

    Hi,
    Using Flash 8, Apache 2.2. I have my Apache server set to
    require a client certificate. If I call loadMovie() and attempt to
    retrieve an image that's stored on my server, IE will not display
    the image. However, Firefox will display the image with no problem.
    I've narrowed the problem down to the client certificate
    requirement - if I don't require a client certificate, IE will
    display the image, but as soon as I require a client certificate,
    the image will no longer display. And as I stated earlier, the
    image will successfully appear in Firefox with or without the
    requirement to have a valid client certificate.
    Any ideas?
    Thanks,
    Stan McFarland

    Is the content being loaded from the same domain as the
    application? I know we had a problem when the Flex App was trying
    to call a different server that enforces Client Authentication from
    one that doesn't. FF recognizes that and pops up the "select a
    cert" dialog, but IE doesn't -- you just get the "Stream Error" or
    whatever. Make sure you're authenticated first, then try loading
    the asset...
    - Kevin

  • Accessing movieclip name for loadMovie() with a concatenated variable

    Okay, I have a movie which generates a certain amount of
    movieclips [determined by a variable]. They are given the names
    mc_placeholder1 to mc_placeholderx.
    Later in the movie, I want to access each of these
    placeholder movieclips in turn to attach an image to them with
    movieName.loadMovie(). However, which of the placeholder movieclips
    is being accessed is determined by a variable, i. So, if i=3 I
    would want to attach to mc_placeholder3.
    Hard coding
    var movieName=mc_placeholder3;
    movieName.loadMovie(...)
    works, but anything to concatenate the movieclip name such as
    var movieName="mc_placeholder"+i;
    does not, I assume because it changes it to a string.
    How can I get it to perform .loadMovie on the movieclip named
    mc_placeholderi where i is the value of the variable?
    thank you

    on the timeline where your movieclips are created use:
    tl=this;
    you can then use:

  • LOADMOVIE WITH VARIABLES

    Hey all,
    Hoping everything's well in the world of Flash since I last
    left it :)
    I was wondering if there would be an easy solution to a
    problem I'm having with my code.
    Basically, I'm making a simple loadMovie site, but I want to
    eliminate buttons that have already been pressed. For example, if
    the user is already at the homepage, disable the home button, and
    so on and so forth.
    What I THOUGHT would work is adding this code to the first
    frame in my movie:
    var History:String = "Home";
    And adding this code to my buttons.
    on (release) {
    if(History = "Home"){
    trace("TRUE!");
    else {
    _root.container.unloadMovie();
    loadMovie("home.swf",this._parent._parent._parent.container);
    History = "Home";
    I was thinking that if I could make a variable that started
    off reading "Home," then I could test to see if the variable was
    the same every time a button was clicked. If it was, basically do
    nothing, don't unload and reload etc. If it wasn't however, unload
    and reload the correct movie in, as well as set the variable to the
    new page's variable, to disable it next time.
    Can anyone see where I'm going wrong?

    Check the path to the object that displays the variables. I
    guess there's a "_root" involved, which works fine standalone, but
    not if the movie is loaded into another one. You can use
    emptyMC.lockroot = true;
    that locks the references to "_root" in the loaded movie to
    the mc's timeline (you can't access the real "_root" then from the
    movie!), or replace the absolute paths in your movie (the ones
    containing "_root") with relative paths, e.g. "this", "_parent"
    etc.
    hth,
    blemmo

  • Problem with attachMovie

    I have a movieClip that is a rounded rectangle, with 9-scale
    slicing turned on, and a linkage of "border" in my library, set to
    export in first frame.
    I am attempting to place this as a background behind a
    code-created text field.
    My code is as follows.
    The text appears, correctly formatted, but the movieClip does
    not appear. If I call a trace to the _width or _height property of
    the movieClip, they come out as 0.

    dzedward
    I am not attaching to the newBord movieClip - I am setting up
    newBord as a reference to the attached movie. This is standard
    operating procedure, and I have done it countless times. Using the
    depth as part of the instance name is a way of guaranteeing a
    unique instance. I will be placing an unknown number of these clips
    this way in the finished project, I have just run into a snag here.
    And yes, I did define nHD earlier (note that I only use the
    variable declaration once) - but I am setting it to a new value, as
    I already used it for the text box.

  • LoadMovie with absolute URL

    Hi there,
    I am very new to Flash and have been going around in circles for days trying to figure this out.
    I can't get swf to loadMovie when on server. I understand I need to use the path relative to the html page.
    Server info:
    Server Name:   server33.000webhost.com
    Home Root (file system path):   /home/a6667948
    Folder to upload files:   public_html
    Have tried this but doesn't work:
    on (release) {
        My_mc.loadMovie("http://server33.000webhost.com/home/a6667948/public_html/Images/Test.swf");
    My html page and 'Images' folder are located inside 'public_html' folder.
    Main.swf and Test.swf are both located inside 'Images'.
    Is there any obvious thing I have done wrong?
    Also: I have got the code below from forum to find the absolute URL... but get the following errors:
    I am desperate to get my flash site working but just aren't savy enough to figure it out. I need your help.
    Thanks in advance.
    ERRORS--
    ';' expected
    public function getAbsoluteUrl(urlInput:String):String {
    Wrong number of parameters;
    loadMovie(getAbsoluteUrl(_root._url) + "_assets/lib.swf");
    CODE--
    public function getAbsoluteUrl(urlInput:String):String {
    var strResult:String = "";
    if(urlInput.indexOf("http://") > -1) //only convert when online
    if(urlInput.indexOf(".swf") > -1) // only convert when an actual .swf file is used
    strResult = urlInput.substring(0, urlInput.lastIndexOf("/")+1); // find absolut path minus filename of .swf
    return strResult;
    loadMovie(getAbsoluteUrl(_root._url) + "_assets/lib.swf");

    if you use an absolute url you will have security issues to overcome.  unless you're loading a swf from a different domain, there's no reason to add this additional complexity to your task.
    if you can use a relative path, you need to know the path from the html file that embeds your main swf to the swf you want to load.

  • AttachMovie is shown on debugger but not on play

    I'm using the tutorial XML photo gallery with thumbnail from http://www.kirupa.com/developer/mx2004/thumbnails.htm
    I'v added code to deal when the image is not aviliable I attach a symbol with Text instead to the thumbnail and to the photo as well
    the problem is when I have an image as photo and I press a symbol thumbnail it dosent attach the symbol instead of the Image.
    it doesnt work at all.
    my solution for that was to unloadMovie and it solved partly
    thumbNail onRelease activation
      target_mc.onRelease = function() {
       if (!isdef[p] && isdef[this.pictureValue]) {
       //if the old MC is image and the wanted new MC is a symbol
        picture.unloadMovie();
       p = this.pictureValue-1;
       nextImage();
    The nextimage function does the load of the picture or attachMovie for the symbol
    function nextImage() {
    if (p<(total-1)) {
      p++;
      if (loaded == filesize) {
       picture._alpha = 0;
       if (isdef[p]) { //use defualt symbol instead of a photo
        picture.attachMovie("mcDef", "mcDef"+p, 1000);
        picture["mcDef"+p].m_text.text = reverseString(description[p]);
        picture["mcDef"+p].ref_text.text = reverseString(description[p]);
       } else {
        picture.loadMovie(image[p], 1);
       picture.pictureValue = p;
       desc_txt.text = description[p];
       picture_num();
    Nothing is show and no instance was made of the symbol and when pressing again on symbol thumbnail it then works and all is well
    BUT on debugging it does work on the first time and I dont have to press twice on the symbol!
    it probably caused that there was no load when attaching so veriables  loaded and filesize has no maning in the logice .
    doing unload is a work around the problem does any body has an idea how to deal with this ether with the unload or better off without.
    i'v attached the fla file so you can see the code
    10X

    the alpha is returen to 100% late on in a loop:
    this.onEnterFrame = function() {
    filesize = picture.getBytesTotal();
    loaded = picture.getBytesLoaded();
    preloader._visible = true;
    if (loaded != filesize) {
      preloader.preload_bar._xscale = 100*loaded/filesize;
    } else {
      preloader._visible = false;
      if (picture._alpha<100) {
       picture._alpha += 10;
    I'v printed out the alpha and on every click on thumbnail it increments by 10 untill more then 100% thats OK
    this ia the print out of list veriables:
    1. the image is selected
    Movie Clip: Target="_level0.picture"
    Variable _level0.picture.onRelease = [function 'onRelease']
    2.pressing on symbol thumbnail clears the screen after unloading the image but symbol doesn show and picture._alpha=107.999
    Movie Clip: Target="_level0.picture"
    Variable _level0.picture.onRelease = [function 'onRelease']
    3.pressing on the thumbnail of the symbol the second time and it shows
    Movie Clip: Target="_level0.picture"
    Variable _level0.picture.onRelease = [function 'onRelease']
    Variable _level0.picture.pictureValue = 2
    Movie Clip: Target="_level0.picture.mcDef2"
    Edit Text: Target="_level0.picture.mcDef2.m_text"
        variable = null,
        text = "ןיינב",
        htmlText = "ןיינב",
        html = false, textWidth = 114, textHeight = 73, maxChars = null,  etc...........
    so it looks like that it didn't load the symbol on the first click even though it goes through the code that attachMovie()????
    But if I run this in debbug mode codeline by codeline it loads the symbol and shows it on the first tril.
    here is the printout of the run test mode:
    picture.loadMovie(image[p]); <==  loading the image after clicking the image thumbnail
    picture._alpha=0
    picture._alpha=9.765625
    picture._alpha=19.53125
    picture._alpha=29.296875
    picture._alpha=39.0625
    picture._alpha=48.828125
    picture._alpha=58.59375
    picture._alpha=68.359375
    picture._alpha=78.125
    picture._alpha=87.890625
    picture._alpha=97.65625
    picture._alpha=107.421875
    picture.attachMovie('mcDef', 'mcDef'+p, this.getNextHighestDepth()); <== performing the code but no symbol shows and on list veriabls it shows there is no symbol attached!!!!!!!!!!!!!!!!!
    picture._alpha=0
    picture._alpha=9.765625
    picture._alpha=19.53125
    picture._alpha=29.296875
    picture._alpha=39.0625
    picture._alpha=48.828125
    picture._alpha=58.59375
    picture._alpha=68.359375
    picture._alpha=78.125
    picture._alpha=87.890625
    picture._alpha=97.65625
    picture._alpha=107.421875
    picture.attachMovie('mcDef', 'mcDef'+p, this.getNextHighestDepth()); <== pressing the second time the symbol is attached and shows
    picture._alpha=0
    picture._alpha=9.765625
    picture._alpha=19.53125
    picture._alpha=29.296875
    picture._alpha=39.0625
    picture._alpha=48.828125
    picture._alpha=58.59375
    picture._alpha=68.359375
    picture._alpha=78.125
    picture._alpha=87.890625
    picture._alpha=97.65625
    picture._alpha=107.421875
    on debugger mode it attache's the symbol to the movie on the first click!!! and no problem
    why isnt it doing the attachMovie after unloadMovie??????
    the unloadMove is performed right after clicking the thumbnail before sending to function that does the loadMovie or attachMovie
    I tried updateAfterEvent(); after unloadMovie() and it didnt help!!
    running on MX2004
    10X

  • XML Menu with thumbnail images

    Hello all,
    I am trying to create a dynamic menu for a video player. Much
    like the one found here (
    MTV OverDrive. )Obviously
    this is a Flash site and I can only assume the video list is being
    generated via XML. I am trying to accomplish the same thing, only I
    am not using FCS.
    I just want to create the buttons dynamically with thumbnail
    images and text via XML, and in turn load the video based on a
    button click. I have the video part working fine, using a video
    object, I just need to know how to create the buttons WITH THUMBS
    from an XML file. I can figure out how to load the video once the
    button is clicked. The problem is the menu itself and loading the
    different thumbnail with the button.
    I am sure it has something to do with "attachMovie,
    DuplicateMovie, or CreateEmptyMovieClip" but I am not sure how to
    do this with XML.
    I really want to stay away from using the pre-built
    components and want to code this myself so a list component is out
    of the question.
    I have search for many hours now and can not find anything
    that is like what I am looking for yet. So any help pointing me in
    the right direction would be much appreciated.
    From what I can gather it has something to do with creating
    what the button is going to look like (mainly the Background for
    mouse on and over states) and save it off as a MC then giving it a
    linkage ID. Within that MC I would think there would be another MC
    to hold the Thumbnail image with its own linkage ID and another MC
    that has a named dynamic text filed with it own linkage ID. Am I
    total off base here?
    Thanks

    Hi,
    On the same line I would suggest you to create an MC and put
    a button and a textField inside. Then using duplicate MC function,
    create instances of this MC according to the XML. For this, create
    XML nodes for each clip containing text, image to be displayed, URL
    for the video etc., and repeate the node for as many as you
    require. Then parse the XML in flash in an multi dimensional array.
    Then using length pf array duplicate your MC and populate the
    required menu. I guess this is enough for you.
    Anything else required do contact me!
    Cheers!!
    Shreeram

  • AttachMovie problem animating

    I have a bit of an odd problem with attachMovie.
    In my library I have several movies all build up in pretty much the same way.
    They are a couple of frames long with a different image on each frame.
    They have a color layer at 70% as sort of an overlay.
    And on top of that a layer with a movieclip to serve as a mask for the overlay.
    On the stage I have a movieclip named holder to attach them to and a couple of buttons to do that.
    The buttons execute the following function:
    resetVideo = function (idname, flvname) {
        my_video.clear();
        navholder.attachMovie(idname,"navigatie",1);
        my_video.attachVideo(stream_ns);
        stream_ns.play("FLV/"+flvname+".flv");
        trace("check")
    This loads a movie into the my_video object and attaches one of the movieclips to the navholder.
    So far everything works fine. The video loads and the movieclips get replaced every time.
    But now comes the weird part.
    I'm animating the movieclips based on data that is received from cuepoints in the loaded movie and the script for that looks like this:
    stream_ns.onCuePoint = function(infoObject:Object) {
        if (infoObject.parameters != undefined)
            navholder.navigatie.gotoAndStop(infoObject.parameters.navs_Slider);
            navholder.navigatie.navmask._xscale =navholder.navigatie.navmask._yscale=parseFloat(infoObject.parameters.maskscale_Slider)*n avscale;
            navholder.navigatie.navmask._x = parseFloat(infoObject.parameters.maskposx_Slider)*navscale;
            navholder.navigatie.navmask._y = parseFloat(infoObject.parameters.maskposy_Slider)*navscale;
    The thing that happens now is that the gotoAndStop part works fine and the clip goes nicely through the frames but the animation of the mask doesn't work at all. I've checked the naming several times and when I place the clip directly on the stage the mask animation works fine. So somehow when I use the attachMovie command the link to the navmask instance gets either lost or it's not possible to animate it at all in an attached movieclip.
    If anyone could shed some light on this it would be highly appriciated.
    Grtz,
    TaoHunter

    Sigh... Problem solved:
    For the navscale in the formula
    navholder.navigatie.navmask._x = parseFloat(infoObject.parameters.maskposx_Slider)*navscale;
    I used the width of the navigatie object and I hadn't changed that one to navholder.navigatie._width so therefore the values all came back as NaN :/

  • ActionScript 2, attachMovie

    Hey, people!
    I've got a small issue with attachMovie.
    I've got an array with references to movie clips which I want to place at random locations on the scene.
    Here is my function:
    function randomize(target_array){
        top_y = 87;
        bottom_y = 296;
        left_x_range = 16;
        right_x_range = 220;
        left_x_range_second = 305;
        right_x_range_second = 535;
        for(i = 0; i < target_array.length; i++){
            var mc = target_array[i];
            trace(mc);
            mc_clothes_holder.attachMovie(mc, mc, mc_clothes_holder.getNextHighestDepth());
            currY = Math.floor(Math.random() * (1 + bottom_y - top_y)) + top_y;
            if(i%2 != 0){
                currX = Math.floor(Math.random() * (1 + right_x_range - left_x_range)) + left_x_range;
                mc_clothes_holder.mc._x = currX;
                mc_clothes_holder.mc._y = currY;           
            }else{
                currX = Math.floor(Math.random() * (1 + right_x_range_second - left_x_range_second)) + left_x_range_second;
                mc_clothes_holder.mc._x = currX;
                mc_clothes_holder.mc._y = currY;
                trace(mc_clothes_holder.mc);
    The thing here is that the trace of "mc" in the beginning returns the correct movie clip reference, but "mc_clothes_holder.mc" after the attachMovie returns "undefined".
    Does anyone have any idea why this doesn't work? What have I done wrong?
    Thanks!

    Your problem may lie in the way you are using "mc"  In an attachMovie scenario, the first argument is supposed to be the linkage ID of the object in the library.  Then you go and name the instance you create that same thing, "mc", which is bound to conflict with the var mc you already defined which is merely a string value.
    I'm tempted to tell you to try tracing...
    trace(mc_clothes_holder[mc]);
    because if mc is a string, and is the instance name as well, you would need to use bracket notation (or eval) to have the string treated as an object reference.
    But I'd recommend changing the name of the instance you create to something else, maybe: mc+"Obj" just to avoid any confusion...
    trace(mc_clothes_holder[mc+"Obj"]);

  • Director LoadMovie

    Hi I was wondering if its possible in Director 11 to load
    external swf files. Like LoadMovie with Flash.
    In my application: I have a projector (director one) Inside
    the projector I have a swf file, main project. I use Director only
    to create the projector and a couple director fonction not included
    in flash. What I'm trying to do is to tell Director to load my main
    swf files like a flash loadMovie (external file). The reason why I
    want to do this is because I have to change the main.swf file
    often. So if it's possible to load external swf I won't need to
    open director, and replace the cast member with the new one each
    time I change the main file. If I can overwrite the external
    main.swf It will save time.
    Its a dvd-rom (couple different dvds) that why i have to
    change the swf file. I use Director 11 and LFash CS3.
    * resume = is there a loadMovie (flash like) in Director.
    Loading external swf inside director projector.
    thanx.

    If you use "Link to external file" when importing the Flash
    swf into
    Director, you can alter the external swf and have this
    reflected in the
    Director file. You then just need to remember to ship the swf
    with the
    projector in the same relative location as they were in when
    it was
    imported.
    Does that answer your question? If not, maybe you need to
    read the
    documentation for member.importFileInto() and/or
    member.filename

  • EASY Question - But Hard for the Actioscript inept

    Ok,
    So this is my first attempt at making a web page...
    I am trying to simply make my little button display my movie
    labeled "Content", I don't think I am doing somthing right...
    Doh....
    I have diffrent movies (p1 & p2) for button rollover
    effects... and I have a seperate clip named content with labels for
    "start1" and "start2" that I want to display when I click the
    buttons
    Anywho if you would like to take a look see I would be very
    thankful:
    http://www.itamidesign.com/test.fla
    Thanks for your help...
    -Todd

    Something went wrong when I tried your link.
    Is your movie inside your flash program or is it an external
    movie?
    If you have named your button something like myBtn, then you
    can put in some actionscript to load an external movie such as:
    myBtn.onRelease = function():Void
    movieHolder.loadMovie("content");
    where movieHolder is the name of an empty movie clip that you
    place on the stage to hold external movies.
    Alternately, you can add the code to the button itself. In
    this case you don't need to give the button an instance name:
    on (release)
    movieHolder.loadMovie("content");
    If your movie is already part of your Flash program, instead
    of an external file, then you will need to go into the linkage
    properties of the movie and check: "Export for ActionScript". You
    do this by right clicking on the movie in the library. You must
    give the movie a name when you do this. You can still call it
    "Content". Next you use one of the formats listed above except
    change loadMovie to attachMovie. (Actually they might both still
    work, but I have been in the habit of using loadMovie for external
    content and attachMovie for internal content. Don't ask me why, I
    just try things and when they work, I tend to repeat that method of
    doing things.)
    For attachMovie, you will need to give your clip a level
    number. You can hard code in a number if you want any movie you
    attach to replace the prior movie or you can use:
    movieHolder.getNextHighestDepth() if you want your movie to be
    placed on top of anything else that you already have in the movie
    holder without replacing it.
    You can type loadMovie or attachMovie in the search bar of
    the built in help menu to see more examples. If you have further
    questions such as how to make the movie holder, be sure to ask a
    follow up question.

Maybe you are looking for

  • I don't have an aerial and got the channels throug...

    So when I signed up for BT, I asked the sales person whether I would get TV channels without the aerial. They explained that we wouldn't get the majority of freeview channels but we would get the extra channels BT give you (Comedy Central, Discovery,

  • Macbook Pro (mid 2012) Disk Utility can't repair HD

    I have a friend's MacBook Pro in my possession that is not working and has not been used for about two months. After startup, seeing the loading bar, and getting stuck on the spinning wheel of death, I have taken some steps to try to get a boot into

  • Balance sheet statement Print out

    Dear all, I would like to print out a balance sheet report through transaction code S_ALR_87012284. But I would like to assign another form (smartform) to this transaction instead of print out ABAP List. (It means the screen display ABAP List but pri

  • Compressor audio and video out of sync

    I've edited DV video in FCPX (where audio and video are in sync), sent to Compressor, and added the Dolby and MPEG-2 settings to my submitted job. But when I add the output files to Toast, the audio and video are not in sync. Reviewing the video in C

  • DB backup restoration

    Hi, Apps team want to restore the DB backup of April 10 from Prod to QA . Backup team maintains DB backup of April 10 on tape as below in Prod but it is not available on disk. Online Full Backup time: 10\apr\2015 (01:31:14 EET) - 10\apr\2015 (02:52:0