Sorry I am French and I read all of it and still understood you were speaking of the typo. But thanks for answering the question. I am grateful to you as well.
... View more
I have another question. Is it better to load instances from the library and use them as needed than putting everything on the main timeline? I know in design it is easier because you can make your main timeline transitions there once only rather than having a bunch of symbols and transitions. But what about memory, file size, etc...
... View more
Nope. I made a typo here but it was correct in the actual FLA. So per your advice and to make sure, I changed it to colonial (which I had tried before BTW and I got the same error) this.blank.colonial.gotoAndStop("author1"); in the console: this.blank.colonial is undefined
... View more
I have several symbols added dynamically into a blank symbol. I swap them on click events from buttons in a menu however I do not seem to be able to manipulate them after they have been added to the stage. I suppose it has to do with the fact the I need an instance name to use them. Is the link name the same as an instance name? Probably not because I get the following error. this.blank.colonialSymbol is undefined So is there a way to add an instance name to these symbols so I can use them porperly? var colonial = new lib.colonialSymbol(); //************** LOAD BUTTON ACTIONS ************************* this.addBtn.addEventListener("click", loadSymbol.bind(this)); function loadSymbol(){ this.blank.addChild(colonial); this.blank.colinialSymbol.gotoAndStop("author1"); // symbol timeline - gives undefined this.gotoAnStop('start'); // main timeline }
... View more
What do you mean by speed off? I know in Edge Animate there was a problem with draggables positions when the stage was responsive. Maybe the same thing exists here.
... View more
OK. Nevermind! I feel stupid. I actually decided to use graphics instead of symbols for some elements so of course they are not showing as symbols in the library.So, all my buttons and graphics are accounted for and so are the new symbols I created after. Sorry guys for the confusion!!! Thanks for your responses though. Sorry coming from Edge Animate, I am still dumb in many areas of ANCC.
... View more
No I did not brake anything appart. ALL MY SYMBOLS instances are on the stage intact as symbols but the corresponding symbols are not in the library
... View more
Hey, could you give me the syntax for that? I have one symbol on main timeline (instructions) I have button in another symbol. (geronimoBtn in symbol nativesSymbol I want to hide the first symbol from the button in the other symbol. Line 05 is the problem since I am not sure how to use exportRoot this.nativeSymbol.geronimoBtn.addEventListener("click", geronimoInfo.bind(this)); function geronimoInfo(){ this.nativeSymbol.gotoAndPlay("geronimoPage"); this.instructions.visible = false; // this element is on the main timeline so this. is incorrect }
... View more
I created a symbol folder (other symbols) in the library and moved most of my symbols there. For some reason all the symbols are gone though they still exist on the stage. How can I get them back in the library?
... View more
This is what I use which is compact. this.myMusic = createjs.Sound.play("music", "none", 0, 0, -1, 0.5); // music is the instance name "none' is the interrupt 0 is delay 0 is offset -1 is loop 0 is no loop 0.5 is the volume
... View more
I recommend saving to google drive since it saves versions. You can just upload your work every day or work directly from the drive folder depending what your situation is.
... View more
I tried that and no joy. the OAM file is actually a zipped file. It is inserted as this: <object id="EdgeID" type="text/html" width="570" height="420" data-dw-widget="Edge" data="animation_assets/brouillon/Assets/brouillon.html"> So we need to target the ANCC file through the object I suppose orthe opposition rather. hum...
... View more
He published an ANCC file as an OAM he inserted this OAM in an html file (his site) I guess using DM<inset<html/animtedcompostion he added a script in the above html file with the variable he wants to change the var in the site html page that contain the ANCC OAM object with code into ANCC so from the ANCC object. Hope that makes sense. I do not know what his ANCC is about.
... View more
te problem is that it works if you use the hrml created by ANCC butnot if you have the piece as an object in another hrml file. He is publishing an AOM and adding it as an object in his page. then he wants to communicate betweehn animate and the other html page, not the animate html itself.
... View more