Is there a way besides pasting frames inside a layer to add an element into a timeline? I'd like to replicate the addChild functionality from actionScript into JSFL. So basically, I'd like to add a bunch of movieClips instances into another movie clip, does anyone know how to do this in JSFL? Thanks in advance!

link|improve this question
can provide more details ? Would addChild work a bit like this? addChild('libraryName') - fetches a symbol from the library by it's name and places it on the stage in the current layer/frame ? or addChild('libraryName',parentSymbol) ? or something else ? – George Profenza Apr 8 '11 at 22:19
This is not action script, it's JSFL, the extended script functionality / language for flash to do custom things inside an .FLA, like converting all the graphic items in your library to movie clips. – Gerardo Heidel Apr 9 '11 at 2:16
addChild('libraryName') is not an actionscript function and is does not fetch a symbol from library ;) Assume that was a JSFL function. I thought the arguments would give that away. Back to your question: what would the funtion do ? (provide a use case) – George Profenza Apr 9 '11 at 7:19
feedback

1 Answer

It can be done like this:

var itemIndex = fl.getDocumentDOM().library.findItemIndex("childMovieClipName");
var theItem = fl.getDocumentDOM().library.items[itemIndex];
fl.getDocumentDOM().addItem({x:0,y:0}, theItem);

If you want to adjust something of the new child, use doc.setElementProperty , like this:

fl.getDocumentDOM().setElementProperty("x", 0);
fl.getDocumentDOM().setElementProperty("y", 0);
link|improve this answer
Thanks! I already figured it out using the addItemToDocument function from the library (I didn't wanted to add the clip to the stage) – Gerardo Heidel Apr 20 '11 at 13:22
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.