flash mc from library

Out of context: Reply #11

  • Started
  • Last post
  • 17 Responses
  • wwfc0

    ...hmm - not doing it this end - but I am probably missing the hol point somewhere!

    //create menu items: attach from Library via linkageID and populate text label
    for(var i=0;i<numOfItems;i++)
    {
    var mc = menu.attachMovie("planet" + (i+1),"item"+i, menu.getNextHighestDepth());
    mc.txt_label.text=arrItems[i];
    mc.angle = i * sectorDistance;
    mc.id = i;
    mc.filters = [colorMatrixGrey_filter, blurFilter];//modified this to now have TWO filters
    mc.onRelease = released;
    if (menu["centre_mc"]) {}
    menu.attachMovie("centre_mc","ce... 150, {_x: 300, _y: 100});
    }

    that is the block I have it in..

View thread