Load movie from library

is it possible to load a mc from the library on to the stage with specific coordinates, without uning a mc to load it in to? Simply something like this:
load the menuMc on the stage at x = 200 and y = 300;
i called the identifier menuMcAs

ok i tried about everything i know..(which isnt a lot)
i think the correct way to write it is this:
var emptyMc:MovieClip = this.createEmptyMovieClip("emptyMc", this.getNextHighestDepth());
emptyMc.attachMovie("menuMcAs", "menuMc", this.getNextHighestDepth(), {_x:400, _y:100});
menuMc (instance name of the menu mc in the library)
menuMcAs (linkage id of the menuMc in the library)
emptyMc (nothing. i should be created with this code...?)
and i put this line at the very top of my code, which is in a .as file.
i cant see the menu!!! its not working.
any ideas?
btw: i did NOT create an empty movie clip on stage...
EDIT
I tried this too:
var emptyMc:MovieClip = this.createEmptyMovieClip("emptyMc", this.getNextHighestDepth());
this.attachMovie("menuMcAs", "menuMc", this.getNextHighestDepth(), {_x:400, _y:100});
still nothing..
EDIT 2
after reading the help files, i have a feeling i'm only creating a mc, but that i'm not placing it on stage...??

Similar Messages

  • HT202157 Does anyone else have a problem with the latest Apple TV update?  My Apple TV no longer can load movies from my iTunes library, including ones I've already watched or were watching.  Can I roll back this update, and if so, how?

    After updating my Apple TV, it will no longer load movies from my iTunes library.  Music works, but no movies.  I've turned this puppy every which way but loose, but no joy.  Is there a way to roll back an update?

    Greetings,
    I've never seen this issue, and I handle many iPads, of all versions. WiFi issues are generally local to the WiFi router - they are not all of the same quality, range, immunity to interference, etc. You have distance, building construction, and the biggie - interference.
    At home, I use Apple routers, and have no issues with any of my WiFi enabled devices, computers, mobile devices, etc - even the lowly PeeCees. I have locations where I have Juniper Networks, as well as Aruba, and a few Netgears - all of them work as they should.
    The cheaper routers, Linksys, D-Link, Seimens home units, and many other no name devices have caused issues of various kinds, and even connectivity.
    I have no idea what Starbucks uses, but I always have a good connection, and I go there nearly every morning and get some work done, as well as play.
    You could try changing channels, 2.4 to 5 Gigs, changing locations of the router. I have had to do all of these at one time or another over the many years that I have been a Network Engineer.
    Good Luck - Cheers,
    M.

  • Downloading rented movie from library to ATV

    I rented a movie from itunes and downloaded it on my laptop. I have not watched the movie yet and I wanted to watch it on Apple TV (ATV). I open my itunes and it is listed on rented movies and gives me an option to "move" from library to ATV (only after I downloaded the new update), but it will not sync to the ATV. The syncing starts but then 10 sec later just returns to the orignal screen without transfer. Suggestions???

    Only the newest iPods (Touch, iPhone, Classic, 3rd gen Nano) support rental movies. You've posted in the forum for a much older iPod, one that doesn't supprt videos of any kind. Which iPod do you actually have? When did you buy it?

  • Change loaded movie from child

    Hi,
    I am new to AS3. Here I want to ask how to change the loaded movie from child?
    Here is my working code, but it doesn't works...
    Root:
    var contentMovie:MovieClip = new mcMain;
    contentMovie.name="content_mc";
    addChild(contentMovie);
    Child Content:
    changecontent_btn.addEventListener(MouseEvent.CLICK,LoadContent);
    function LoadContent(event:MouseEvent):void
       parent.contentMovie = mcNew;
    When I try to run, Flash shows the error "1119: Access of possibly undefined property contentMovie through a reference with static type flash.display:DisplayObjectContainer."

    use:
    var contentMovie:MovieClip = new mcMain();
    contentMovie.name="content_mc";
    addChild(contentMovie);
    Child Content:
    changecontent_btn.addEventListener(MouseEvent.CLICK,LoadContent);
    function LoadContent(event:MouseEvent):void
    // the next line doesn't make any sense but if it did, this is how it should be written
      MovieClip(parent).contentMovie = mcNew;

  • YouTube API can't load movie from youtube rightnow?

    Hi there,
    I am a multimedia content development.
    I used YouTube API to load movie from youtube.com.
    https://developers.google.com/youtube/flash_api_reference_as2?hl=zh-TW
    It's working ok in one month ago.
    But after upgrade the FlashPlayer,not working, can't load movie to ytplayer.
    please check follow link, there have youtube movie in every page(TV frame)
    http://test1.eduweb.com.tw/ebook/demo/book/demo07/book1/
    I am sure this problem is from FlashPlayer.
    Do you have any idea?
    Sorry about my poor english.
    Best.
    Jack Chang.

    Any one can answer? Please~~
    This problem lost every YouTube movie in our content.
    But It's working normal one(or two) month ago.

  • Using one instance of a Movie Clip to load Graphics from library

    Hi all,
    another question... How would i go about loading a variable into a movie clip and have it pull different graphics from my library at different spots in the main timeline???
    thanks!
    Patrick

    Hi NED! thank you for all your help so far!!!
    I was wondering about the flexability of loading movies into a movie clip.
    Currently, thanks to your help i am well able to load one movie into a movie "loader" clip, but thought maybe there is a way to load additional movie clips into that same "loader" clip, as i am starting to accumulate several different graphics that i need to have be inside movie clips so that i can make them change colors on the same frame when needed.
    i shot from the hip and tried this code, but didnt have any luck:
    mc_LCD_loader.attachMovie("hilight", "g", 1), ("header", "X", 1);
    mc_LCD_loader.g._x = 0;
    mc_LCD_loader.g._y = 1000;
    mc_LCD_loader."X"._x = 0;
    mc_LCD_loader."X"._y = 1000;
    - - - where "hilight" is the identifier name of a given movie clip and "header" is the identifier of a given movie clip in the same library...
    "hilight" loads fine
    i dont fully understand what "g" means to the identifier...
    i am just unsure of how or if it is even possible to load another MC into the same MC Loader...
    is it possible? if so could you give me a hint?
    thank you!
    - patrick

  • Load MC from library

    Hi all
    I have a Movieclip with a base name called 'movie_main' and class  name as 'Main_mc'
    I am trying to load the movie from the library into a  contanier that also loads in a tooltip. The container is called  'holder'
    this is the script I am working with
    var movie_main:Main_mc = Main_mc();
    holder.addChild(movie_main);
    problem is when it loads in other parts  of my menu are missed placed.
    Question:
    is this the correct script I  should use?? Is there issues with loading in more than 1 movieclip into one  contanier??
    aaarrrggggghhhhh!!!!!!!
    help please

    maybe this will help, this is my script for loading in tooltip
                    var tooltip:ToolTip = new ToolTip();
                    tooltip.field.text = titles;
                    tooltip.field2.text = texts;
                    tooltip.x = -350;  // where to have the tooltip on x axis in the holder
                    tooltip.y = 0;    // where to have the tooltip on y axis in the holder
                    holder.addChild(tooltip);
                    // Same proceedure as before
                    holder.buttonMode = true;
                    holder.addEventListener( MouseEvent.CLICK, onMenuItemClick );
                    // Add it to the menu
                    circleMenu.addChild(holder);
    and this is what I am trying to also add also to the same container
    var movie_main:Movie_mc = new Movie_mc();M
    holder.addChild(movie_main);
    is there a way to combine all in one??

  • Buttons in an attached movie from library

    I used the tutorial posted at
    http://www.layersmagazine.com/flash-attaching-movieclips-actionscript.html
    Now I have a button on my stage that attaches a movie from the
    library.
    on (release) {
    this.holder.attachMovie(“contents”,”contentslinks”,1);
    It works fine but I also have buttons inside the attached
    movie clip that need to control a movie that is already on the
    stage.
    contentslinks.contents_link_1.onRelease = function() {
    content_mc._visible = false; book_mc.directGotoPage(4);
    If I just place the attached movie on the stage the buttons
    work but I when I proceed to use attachMovie, they do not work. How
    do I get the buttons in the attached movie to address the movie
    that is already on the stage?

    you can use the enabled property of movieclips to
    enable/disable them.

  • Load .mov from my Nikon to FCX

    when I load .mov files from my Nikon  The windows show only a small part of the frame. If I bring the frame to full screen it is all there. Both browser and clip windows.
    Files are 1920 x 1080 H264 - 29.07hz Set up is Apple inter codec 1920x1080i60
    Runnubg Mavrick 10.9.1 FCE 4.0.1
    How do I load these files so they appear properlu and can be edited.
    I tried converting to mp4 but got the same result.
    Thanks

    Set the scale of the viewer and canvas windows to "Fit to Window":
    MtD

  • Down load movies from itunes

    I am trying to down load a movie from Itunes but it tells me that "i don't have write access for my Itunes media folder or a folder with it. Change permission ( in the finder ) and then choose store > check for available downloads".
    I can't figure out how to change the permission.
    Mats

    First of all try repairing disk permissions (use disk utility for this, you can find it on applications>utilities). Also remember that your computer has to be authorized to play itunes content. Go to the top bar on itunes, click on Store and Autorize this computer.
    Just a tip, next time post this on the Itunes support section.
    Cheers

  • IPod Nano - iPOD auto updates - can't load music from library to music file

    Every time I plug my nano in it automatically updates. How do I stop this?
    Also I cannot load songs from my iTunes library to my personal music file. There is a padlock that appears to the right of the bar that indicates space useage at the bottom of the page. I am not sure if that has anything to do with not being able to load songs from my library to my personal music file. PLEASE HELP I AM DESPERATE!!
    Parrott

    Grey text when you look at the content and lock symbol at the bottom of the screen simply shows that your iPod is set to automatically update. If you want to access your iPod directly, drag songs to it, play it through your iTunes, connect it to a second computer etc. you just need to change the update method to "Manually manage songs and videos" in the iPod Summary tab and click Apply. The text will change from grey to dark and the padlock will disappear: Managing content manually on iPod
    One thing to be aware of with manually updating is that the iPod also has to be manually ejected before the "Do Not Disconnect" message will go away. Safely disconnect iPod

  • Use flash player ActiveX component to load movie from resource

    How can I use a Flash Player 9 ActiveX component to load
    movies into my application from program resources.
    Thank you in advance.

    try this:
    // Load text as variable and assign it to the
    // dynamic text field
    var features_lv:LoadVars = new LoadVars();
    features_lv.onLoad = onText();
    features_lv.load("safetyFeatures.txt");
    function onText(success:Boolean) {
    if (success) {
    myText_txt.text = features_lv.safetyfeatures;
    } else {
    myText_txt.text = "unable to load text file.";
    or this
    // Load text as variable and assign it to the
    // dynamic text field
    var features_lv:LoadVars = new LoadVars();
    features_lv.onLoad = function(success) {
    if (success) {
    myText_txt.text = features_lv.safetyfeatures;
    } else {
    myText_txt.text = "unable to load text file.";
    features_lv.load("safetyFeatures.txt");

  • Airplay will not load movies from my vudu app on my ipad to my apple tv.

    I just received an apple tv as a christmas present and was beyond excited.  I have been wanting one for a long time now.  The main reason I wanted an apple tv, was so I could stream my movies that are in my vudu app on my ipad, to my television.  They are both synced together and are on the same wifi network, however it is not streaming correctly.  Everytime I click apple tv under airplay, it acts like it is going to send, but it kicks it off and returns the airplay mode to ipad.  I even tried clicking on mirroring and that is not working either.  I updated both devices with new software updates.  Please help!!!

    Welcome to the Apple Community.
    I don't have vudu but understand it to contain content protection, you can purchase movies from the iTunes Store instead.

  • Loading movie from mini DVD

    I have a Sony DCR-DVD92 that uses the mini DVD's for recording. There is no firewire or USB port on this camera. Since the iMac can't run the mini DVD's how can I transfer the movies from my Handycam to my computer?

    If you can, buy a better camera. This camera was not designed for use with a computer or with editing.
    If you have a lot of mini-DVDs from this camera that you want to edit, your best bet is to [buy a USB DVD player recorder that sits flat on your desk like the ones at this link|http://eshop.macsales.com/shop/firewire/optical-drives>. Do not put these little DVDs into the slot on your iMac. You may not be able to get them out.

  • HT204382 how can i down load movies from youtube?

    how am i suppose to download movies onto my powerpoint?

    google search
    https://www.google.com/search?client=safari&rls=en&q=how+to+download+movies+from +youtube+mac&ie=UTF-8&oe=UTF-8

Maybe you are looking for