Edge Animate CC :: Get And Hide All Child Symbols?

Jan 8, 2014

I'd like to target all child symbol instances of my mT symbol and hide them.
 
Something like this (except this doesn't work):
 
childsymbols_d1 = sym.getSymbol("holder").getSymbol("d1").getSymbol("mT").getChildSymbols();
for(var i=0; i<childsymbols_d1.length; i++){
childsymbols_d1[i].hide();
};
  
I don't want to use the timeline because I have a lot of child symbols, and would like to do this operation on several other symbols.

View 1 Replies


ADVERTISEMENT

Edge Animate CC :: How To Change CSS Of Particular Child Symbol From Multiple Child Symbols Made Using Json Data

Jul 27, 2013

I've created a number of child symbols in a for loop for each of the data elements in my local json file. However, based on key pressed (up/down/right/left), css property of a particular child symbol only needs to be changed/highlight... how can i access an earlier created child symbol ?

What i'm trying to create is that based on arrow keys, i can select/highlight (by changing css property) a particular child element only. (similar to traversing cells in an excel sheet -top/down/right/left)..

View 1 Replies View Related

Edge Animate CC :: Using Jquery To Show And Hide Symbols?

Aug 15, 2013

I have a project in Edge with a couple of screens as symbols on layers in the main timeline. I've been trying to write a function in the global scope that I can call from all the buttons, to show and hide screens.
 
So far I have a function that looks like this:
 
function mainScreenOut (){
sym.$("screen1").hide();
}
 
But this and many variations don't seem to work. how to use these jquery commands properly?

View 5 Replies View Related

Edge Animate CC :: Change ID Of Dynamically Created Child Element?

Aug 9, 2013

I would like to change the id of the dynamically created elements in order to work easily with their later. Currently, edge automatically generate an random id like "eid_1376057792551" for each element.
 
There is my code :
 
sym.setVariable("labels", {
content2: "Visiteur",
content3: "Exposant",

[Code]....

View 8 Replies View Related

Edge Animate CC :: Control Edge Symbols From External JavaScript?

Jan 9, 2013

I have come across about a dozen similar discussions, but most have presented solutions that worked in earlier versions of Edge and no longer work.
 
I am trying to use Edge to build animations that can then be integrated into larger non-Edge projects. I would like to then be able to control the Edge timeline or Edge symbols from elements OUTSIDE of Edge, such as another link or button in the page.
 
I cannot seem to figure out how to properly reference the Edge stage or symbols.
 
I have come across several proposed solutions for referencing Edge stage, such as:    
 
     var comp = AdobeEdge.getComposition("EDGE-966604542");
     var stage = comp.getStage(); 
     var comp = $.Edge.getComposition("EDGE-966604542");
     var stage = comp.getStage();      
     var comp = Edge.getComposition("EDGE-966604542");
     var stage = comp.getStage();
 
     and these either DO NOTHING or throw errors about either AdobeEdge or Edge or comp being undefined.

View 7 Replies View Related

Edge Animate CC :: How To Revert-symbols

Sep 23, 2013

Is there way to revert or un group assigned symbols?

View 2 Replies View Related

Edge Animate CC :: Replacing Symbols Dynamically?

Jun 19, 2013

I am trying to make a fairly simple user interface. I have 3 buttons on stage and each button will pull out a correspoinding symbol from the library and display it on the stage.
 
Eg. Click btn1 and it will show content1 from the library.
 
So far it is working in that it shows the corresponding content but it appends subsequent content to the bottom of it. I need the content to be replaced instead.
 
I would prefer if I could dynamically get content from the library instead of having items on stage that are set to 'hide' and 'show'.
 
Note: I noticed that when you create a child symbol on stage that Edge gives it a randomly generated ID. There is some code towards the bottom that tries to rename its ID attribute. I am not 100% sure if it is even doing what I expect it to do.  
 
var btnArray = ['btn1','btn2','btn3']
function init(){
for (var i = 0; i < btnArray.length; ++i) {

[Code]....

View 4 Replies View Related

Edge Animate CC :: Reversing A Symbols Timeline?

Oct 22, 2013

I need to activate a timeline event on a symbol with a button press on another object, then when the button is pressed again, reverse the timeline event. This will have something sliding in and out of the stage.
 
If the animation is placed right at 0.00 and there's nothing else, then this code works OK:
 
if (sym.getPosition() == 0)
{
sym.play();
}
else
{
sym.playReverse();
}
 
However there is other animation that plays automatically on page load, then a trigger stops all animation. The animation I need to trigger is a couple of seconds later bracketed by labels 'start' and 'stop'. So I need to code the button A to get the symbol B and animate from 'start' to 'stop' and then wait. Then on a further press to animate from 'stop' to 'start'. But I'm damned if I can get anything to work.

View 4 Replies View Related

Edge Animate CC :: How To Sync Timelines Of Different Symbols

Oct 10, 2013

I want a command that sets a symbol's timeline position based on another symbol's timeline position.
 
 My case: Im making a intercative animation of a room, where i have a black screen symbol ("filmepreto") with a opacity animation over my room image. That symbols adjusts de room ilumination.

I have a symbol with an animation of a curtain closing (cortina) and another one with a roof lamp that gets on or off controlled by a button. When the button that turns the roof lamp the position of the "filmepreto" must be the same of the curtain. Both the curtain animation and the "filmepreto" animation have the same lenght.
 
I have more things that interefere on the ilumation of the room but, if I have the code to sync the off state of them with the position of the curtain animation i think I can set everything.

View 3 Replies View Related

Edge Animate CC :: Buttons Appear All Together After Converting Them To Symbols

Nov 7, 2013

I created 5 buttons in Edge CC that appear one after the other. After converting them to symbols, they still appear one after the other in the timeline, but in a browser preview they all appear at the same time.

View 2 Replies View Related

Edge Animate CC :: Hide A Symbol Programatically

Sep 5, 2013

I need to hide a symbol on my main stage dynamically, ie without hardcoding it on the timeline.  So I tried this within an IF ELSE statement:
 
sym.getComposition().getStage().getSymbol("Box_Symbol").hide();

I also tried this:
 
sym.getComposition().getStage().getSymbol("Box_Symbol").css({"display","none"});
 
Clearly these are not working..

View 5 Replies View Related

Edge Animate CC :: Play One Symbol And Hide All Others?

Feb 26, 2013

I'm building an animated menu in the latest version of Adobe Animate. There are 5 different animations that happen within the same box on the main stage. I have made each animation it's own symbol. I want to trigger the animations from text boxes to the left of the box where the main animation takes place. The text boxes are not apart of any of the symbols, but are just on the main stage.
 
When someone scrolls over any of the individual text boxes i need to play one symbol's timeline AND hide all of the other symbols from the stage.

View 3 Replies View Related

Edge Animate CC :: How To Control The Appearance Of Symbols And Elements

Jan 24, 2014

I've been experimenting with different ways to control the appearance of my symbols and elements.

I've seen multiple examples where people would add custom styles to the head of the html document created by edge. I've tried this, but no matter how I tweak it, I can't seem to get it to work. I've tried adding it to the existing edge runtime <style> tag, creating my own <style> tag (both before and after the edge runtime) and then adding the CSS into that, but to no avail. I have tried adding the class to both symbols and elements on the stage using both jQuery and that class form field next to the element name. I've also made sure to close out of the project before I add my styles, just in case that was the problem.

I feel like there might be some edge animate terminology/notation thing that I'm missing, because it seems like it should be a pretty straightforward process. 

View 1 Replies View Related

Edge Animate CC :: How To Control Multiple Symbols Using Classes

Feb 14, 2013

I am wondering how I could control multiple symbols using classes.
 
So lets say I have 10 symbols on the Stage - each symbol has a class of 'box'
 
Using this:

sym.getSymbol('.box').play('lower');
 
only the first box will animate, not the other 9.

View 9 Replies View Related

Edge Animate CC :: Play Button With Audio And With Symbols

Apr 22, 2013

So my animation is a song and I'm doing like a video clip with interactivity (the interactivity is not inside at the moment).I need to have  a play button so we can see (heard) on iPhone, iPad...
 
My problem is that the animation begin immediately behind the play button and before I press it.So the song and the animation are not synchronize.I try many things to stop the animation but nothing is working.

View 2 Replies View Related

Edge Animate CC :: Order Of Symbols Returned By GetSymbols?

Nov 12, 2013

It seems that the order of symbols that I get back from sym.getComposition().getSymbols("symbolname") doesn't correspond to the order they were created or their order in the Elements table or their order in the timeline list.  What determines their order in the array?  How can I sort based on y position on stage or order of creation?

View 1 Replies View Related

Edge Animate CC :: Switch Symbols Inside Another Symbol

Sep 12, 2013

I have a parent symbol (symbolA) that contain another symbol (symbolB). when I click on the inner symbolB, I want to make it switch with a third symbol (symbolC) always inside the symbolA.

View 4 Replies View Related

Edge Animate CC :: Randomize Position Of Many Duplicate Symbols?

Jun 3, 2013

I have a rectangle (Named "Data") that falls down the stage on a loop. This is all contained within the symbol itself. The stage has this code in it:
  
var randX;
var randShouldWait;
var randSpeed;

[Code].....
 
This creates a nice looking randomized "shifting" as the block falls. The issue is that this code is specifically related to the "Data" object and when I duplicate the symbol it names it "Data_1" which obviously doesn't shift randomly. The goal is to have this expandable to have dozens of these rectangles at once, so Ideally I'd like to find a way to create new ones programmatically that each have individualized behavior so my timeline isn't so busy.

View 4 Replies View Related

Edge Animate CC :: How To Call A Label Placed Outside Of A Symbols Timeline

Aug 27, 2013

how can I call a label placed outside of a symbol's timeline in edge animate? I made a droppable symbol and now I need an action (for a button... making click) to return to the principal stage to a specific label.

View 3 Replies View Related

Edge Animate CC :: Symbols Are Disappearing In Preview And Publish

Feb 18, 2014

so user error is not unlikely, but I have a small animation with 11 small circles that animate opacity and Y pos. The circles are all symbols and are being controlled (play/stop) from the main timeline. When I preview, half of them do not show up. The symbols that don't appear are consistent from preview to preview. I've looked at the Elements in the browser and they are there, they just aren't animating.
 
So I thought I would just recreate the "bad" symbols and their animations, but they are still not animating in my preview. When I play the timeline in Edge Animate evrything is fine.
 
I've tried it in Chrome, Safari and Firefox (all latest releases) with the same result.
 
Is there a symbol bug in Edge? Is there a method of creating symbols that I should be using (other than draw, cmd-Y and edit symbol timeline)?

View 7 Replies View Related

Edge Animate CC :: Overlapping Symbols With Mouse Events?

Aug 19, 2013

So I have an interactive piece with several shapes. There are about 5 rectangles, 3 horizontal and 2 vertical. For aesthetics and to fit them all in the space (stage), they overlap slightly. Whenever you mouseover a single rectangle it pushes the other rectangles away and a text bubble appears. When you mouseout, the text box goes away and the rectangles return to their original position. This worked without glitches when I applied it to the first rectangle. Now that I'm applying this to all of the other rectangles, I'm running into trouble. I'm thinking the trouble is with the overlapping portion. If you hover one rectangle where it overlaps another rectangle for a split second it plays the correct animation but then I think it tries to also play the animation for the other overlapping rectangle that appears underneath.
 
So my question is, what is the best way to remedy this problem? On mouseover can I temporaily disable mouse events for the other rectangles once one has been triggered? And then maybe re-enable them on mouseout? Is there a way for the rectangle that is visually on top to be the one that recieves the mouseover event?

View 3 Replies View Related

Edge Animate CC :: Copy Motion Path From Other Symbols?

Oct 4, 2013

I need to apply the very same motion path to multiple objects. Is there a way to copy the motion path from a symbol to another? I can't find a way to do this.

View 1 Replies View Related

Edge Animate CC :: How To Control Dynamically Created Symbols

Jan 23, 2013

I'm trying to use ".createChildSymbol" to bring my symbols from the library to my stage. And in each symbol I have an OUT label, so every time a new symbol is called by a particular button, the last one plays from OUT label and new one appears at the same place. It's all easy for two symbols and I do not need to set any vaiable for them. But I have almost 180 symbols, and a menu of buttons to call them, so every button needs to play the OUT label of the current symbol and also plays the new one and make it as the current one.
 
sym.test = sym.createChildSymbol("test", "Stage"); 
sym.getComposition().getStage().setVariable("current", "test"); 
var current = sym.getComposition().getStage().setVariable("current");
sym.current.getSymbolElement().css({position:'absolute', display:'inline-block', top:167, left:91});

View 14 Replies View Related

Edge Animate CC :: Hide The Controls For The Video (faster)

Feb 3, 2014

I've created a new video player for my client who has bounced the job as the subs are overlaid by the controls of the video - he still wants the full screen option but does not want to see the controls once you play the video.

[URL]

View 2 Replies View Related

Edge Animate CC :: How To Hide Symbol On CreationComplete Within VID Play

Oct 16, 2013

All- I have a symbol on the main stage called "Con-main" that has a symbol inside of it called "VID-PLAY".  I have a symbol inside of "VID-PLAY" called "RC-VID"
 
I'm trying to hide this symbol on creationComplete within VID-Play
 
sym.getComposition().getSymbol("CON-MAIN").getSymbol("VID-PLAY").$("RC -VID").hide(); //DOESN'T WORK
 
sym.getComposition().getStage().getSymbol("CON-MAIN").getSymbol("VID-P LAY").$("RC-VID").hide();  //DOES NOT WORK
 
what am i missing?

View 4 Replies View Related

Edge Animate CC :: Handling Elements And Symbols (including Preloading)

Jul 26, 2013

I am trying to learn Edge Animate and I have not seen enough animations to know how this is typically handled and I searched the forum and have not found an answer either.
 
If you have many different elements and symbols for a project, what is the best practice for having them appear, disappear, etc. on the timeline? I ask this question not only from a performance based perspective, but also keeping in mind the idea of preloading. This is a 2 part question:
 
Part 1: Using elements and symbols later in the timeline:
 
Since artwork is always imported directly to the stage in an "always on" status, should we place a visibility OFF on every item until we need it?
or should they be opacity 0 until I need them?or should they be set to visibility hidden until I need them?
 
Which of these is the best option if you don't want the element / symbol visible until later in the timeline? Does it matter?
 
Part 2: Impact on page loading
 
Does the above question have any impact upon page loading speed or is this something handled in preloading?or do you need to make a special preloader?

View 8 Replies View Related

Edge Animate CC :: Play Random Symbols When Button Is Clicked

Oct 7, 2013

I have a dozen or so animated symbols on the stage and I'd like a randomly called one to play each time users click a button.

View 6 Replies View Related

Edge Animate CC :: Buttons And Mouseovers Playing And Stopping Same Symbols?

Sep 22, 2013

I have two symbols nested. On mouse over, the first symbol saturates the image, and moves it down. The second symbol makes the image cycle through three pictures. On mouse off, the slideshow stops, the image desaturates and moves up. This works really good!
 
I have a button below it, that when pressed, starts the timeline of the first symbol (saturates the image, and moves it down). This works great...but when I hover over the image, (after clicking the button), it snaps back up, and is desaturated. I'm not sure why it does that...I want the image to stay where it is!

View 5 Replies View Related

Edge Animate CC :: Symbols Shift To A Completely Irrelevant Position?

Nov 5, 2013

I'm having trouble with some of my animations. Althought they all work fine (there currently 4 individual animations based around click and play symbols) and the positions are correct on the stage, when I preview them or publish them, some of the symbols shift to a completely irrelevant position for no dicernable reason. When clicked, the animations all take place in the correct position and remain there.

View 3 Replies View Related

Edge Animate CC :: Using An Array To Show / Hide Multiple Elements?

Feb 13, 2013

I have two elements that need to be hidden:
 
"mov-imp"
"mov-pim"
 
Currently, I am doing this:
 
var arr = ["mov-imp", "mov-pim"];
// This is the onclick function
sym.$.each(arr, function(){
$(this).hide();
}
)
  
What's the best way to show/hide multiple elements/symbols in AE?

View 2 Replies View Related

Edge Animate CC :: Render Symbols (or Images) With Display Set - Cache As Bitmap

Mar 24, 2014

I have like 12 symbols on the stage. They al have images in them in JPG format, saved at a quite low percentage in quality.The symbols are being animated seperately but it looks very sluggish.
 
I am recreating a whole Flash site in Edge. Everything works (amazing) fine except I am missing the function like it exists in Flash:“Display/ Render/ cache as bitmap”. (see image) This function used to BIGTIME in Flash too.Now how can I do something similar in Edge?I do not want to animate all symbols as 1, it is essential they are animated separately.Is this possible in Adobe Edge Animate? Is there something similar in Javascript/ Jquery?

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved