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


ADVERTISEMENT

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 :: 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 :: 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 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 :: Create Multiple Pages On One Animate Project

Jul 24, 2013

1. crolling like where you have buttons for example or press on a navigation bar tab, then it goes to that specific pace of the page, for a one page website, for example some sites you press on contacts and gose down to the bottom of the page where the contacts place is located, not opening a new link.
 
2.Second, navigation bar, where it fallows the scroll as it gose down, like for example when it is html the object is fixed to the top, and when you scroll down it will fallow it it,
 
3.I need Parallex scrolling where you can have the timeline or animations run while you scroll in the meantime and have animation running all the time, for example the infographic site where the bees are fluying but still have seperate animations while you scroll
 
4.I would also like to ask if like looping each animations sperately, not looping the whole timeline, can it be possible to loop an animation while you have all the interactivity witht he site like looping seperately all the time, without interfeering with all the other animation
 
5.I also are wondering if you can create multiple pages on one animate project, like multiple pages with html
 
I just moved on to edge animate from html, and html was also beirf learn for me and mostly i was doing design work, and i thought getting out of graphic river and moving on the theme forest.
 
I want also all the five things to work on one aimate project.

View 9 Replies View Related

Edge Animate CC :: Why Is Edge Loading The Same Files Multiple Times

May 29, 2013

From the image above you can see that "jquery" loaded twice @ 91kb = 181kbedge 1.5 loaded twice @ 102kb = 204kb aswell as the edge and edge actions files loaded twice and if i boot strap comps together the images are loaded multiple times aswell

View 1 Replies View Related

Edge Animate CC :: Won't Show Up At All In Any IE Version

Sep 9, 2013

I created an animation with Edge Animate CC to replace a flash banner on my website. It will not work at all in any IE version. Works fine in Safari, Chrome, Firefox, and on iPad, and iPhone. What do I do?[URL]

View 20 Replies View Related

Edge Animate CC :: Images Don't Show Up?

Nov 25, 2013

I put my Edge Animation on a website I have made hotspots to show images and text when you click them.Sometimes it shows the text ,but the images don't show up.

View 14 Replies View Related

Edge Animate CC :: Doing Hover To Show On IPhone (iOS)?

Jun 6, 2013

I have created 2 symbols "Level1" and "Level2" and I did  hover on the button at "Level1" symbol then when I click on that button it goes to  symbol "Level2", hover on the button works perfect on desktop browsers, but on iphone the hover is not working.
 
The code I use for transaction from symbol to another symbol is:

sym.createChildSymbol("Level2", "Stage");
 
and for the hover I use mouseover: "sym.play("BA");" action to play the label at  symbol "Level1".
 
What I am trying to achieve is at click on the button on iphone to make the hover play first then it should go to another symbol.

View 3 Replies View Related

Edge Animate CC :: Changes Made In One Symbol Show Up In Another

Jan 7, 2014

I have a symbol called "A." I needed 2 copies of it, so I duplicated A and renamed the new symbol to B. I now have A and B, identical copies of each other.
 
I navigated inside symbol A where I entered another symbol, "A1." Inside A > A1, I removed an image and added another image. No problem so far.
 
Then, I returned to the stage and navigated into symbol B > B1. To my surprise, the same image change I made in A > A1 already appeared in B > B1 (even though I duplicated A **before** making this change).
 
When I change the image inside B > B1, that same change is now present back in A > A1.
 
It's as if these two symbols, A and B, are mirrors of each other, even after being modified. Trouble is, I don't want mirrors. I need them to be slightly different.
 
I thought the Duplicate step might be my problem. I started over (both by undoing several steps and by closing and creating a new document entirely). This time, I copied A and pasted it onto the stage. I ran into the same problems.
 
Ok, next guess: this time, I entered symbol A and copied its elements/sub-symbols. I went back to the stage and pasted them there. Selected these elements/symbols and converted to a new symbol. Same problem!

View 2 Replies View Related

Edge Animate CC :: Animations Won't Show On IPad

Oct 25, 2013

I've just updated my development iPad and xcode to ios7 and xcode 5.
 
The app i´m developing uses web views to display content – which includes images and edge animations –embedded in one HTML-file using iscroll.js to swipe through (one page could be an image, the next a Edge Animation,separated in <li>-elements).
 
The Edge-Animations won´t show up, its just a blank page. However the iOS-Simulator shows everything correctly but on the iPad the Animations just won´t show.

View 2 Replies View Related

Edge Animate CC :: Show Image Before Animation Starts Playing?

Jan 3, 2013

I have started to work on an animation which will work as a splash-screen before the users see the actual site. (Yes I know... but the client wants it like this...)
 
The problem I have now is that the animation plays after a few seconds and that during these seconds it shows the content of the website. Besides that I still find it pretty difficult to actually position the animation the way I want.
 
I am using a plug-in for wordpress.
 
I tried fixing this with a pre-loader but this is also too slow. Is there any way I can force the animation to play sooner or to make sure they can't see the content before the animation has played?
 
You can find the concept of the website on: [URL]

View 5 Replies View Related

Edge Animate CC :: Right Click In Elements Window Crashes Edge?

Apr 6, 2013

The Elements window in Edge Animate seems to be unstable. When I right-click in the field to modify an asset, Edge often crashes with the resulting error message:
 
Edge Animate - Exception An error occurred. Please save your work and restart Edge Animate.
 
It happens quite frequently (~7/10 right-clicks)

View 4 Replies View Related

Edge Animate CC :: Show Captions When User Clicks On Button Symbol

Mar 29, 2013

I'm trying to show captions when the user clicks on a button (captionButton) symbol. All permutations below work for showing the captions but none of them work for showing the button ever again, though it does hide the captions.
 
    // compositionReady script
     var captionBar = sym.getSymbol("captionBar");
     var captionButton = sym.getSymbol("captionButton")
     sym.$("captionButton").css('cursor', 'pointer');
[code]....   

View 2 Replies View Related

Edge Animate CC :: Multiple Links Within Text?

Jan 16, 2014

I am working on my first Animate project.  The project has several screens with short paragraphs of text on each screen.  Within several of the paragraphs, I need to set up multiple links rather than linking the entire text box to one URL. 
 
If it can't be done, I can set up transparent boxes with the links to sit on top of the text - not the best way to do this but it seems to work.  In that case, is there an easy way to "stop" the link just before the user moves to a different place in the timeline?

View 3 Replies View Related

Edge Animate CC :: Multiple Animations With Hover?

Jan 5, 2013

I am trying to get an animation where the user hovers over one of 13 stars on string. What I am after is when they hover over one it looks like its been knocked and starts to swing for a shot amount of time.This should happen to them all. I have this code but it doesnt want to play!
 
Mouse Leave:

$(this.lookupSelector("star-1")).playReverse();
 
Mouse Enter:

$(this.lookupSelector("star-1")).play(0);
 
When you add more and more stars it just stops working.

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 :: Multiple Animations In IBooks And DPS - Interfering

Nov 10, 2012

I have embedded multiple edge animations into iBooks and DPS. Howeve I keep running into an issue where one or more animations will not start after i have started another then move on to a different page. When i reload the book or adobe viewer then the animation that would not start runs fine but then others won't run. Individually they all run fine but when embedded together they start stalling out.  I'm using edge 1.0 and CS6 indesign and lateset iBooks author.  I have a published iBook and I have to tell users to reload ibooks in order to get each animation to run. They are not complex animations.

View 10 Replies View Related

Edge Animate CC :: Multiple Compositions And Vimeo With Autoplay

Jul 2, 2013

i am using this code for rotate multiple compositions, :
 
[URL]
 
my questions is is there any way to start my first comp, when it finish , in the same div play vimeo with autoplay and when it finish , start a third composition ?

View 1 Replies View Related

Edge Animate CC :: Multiple Compositions On A Page / First Comp Stops Playing

Dec 13, 2013

I have two compositions on a page and I identify them within the AdobeEdge.bootstrapCallback. As soon as the user scrolls to the first animation I want to start it with an external call (compId.play()). If this is the only composition on the page it does work correctly. But as soon as the second one is added to the page it doesn't play at all. If I trigger the first animation via the console (e.g. compId.play(1000)) the animation jumps to the 1000 ms mark but then it stops immediately and doesn't play on.

View 4 Replies View Related

Edge Animate CC :: Stopping Embedded Video From Loading Multiple Times?

Jan 10, 2014

just started using Edge Animate. I have some experience with Flash and After Effect so the layout is pretty familiar to me. I have no background in coding so I am very happy that it generates codes for me.
 
My goal is to make a simple html5 site with links / embedded videos to my contents (500 and vimeo). I copied some codes used for Youtube embedding, sub'd the url with vimeo url, and it worked fine. I used a "play video" button on the main page to trigger loading the video page (see my code below).
 
It worked great the first time I clicked the button and went to the video page. However, upon returning to the main page, and click the "play video" button again, a duplicate copy of the video is loaded right below the video loaded upon first click. This occurs for as many times as I click the play video button.

View 3 Replies View Related

Edge Animate CC :: Can Multiple Compositions In Html File Be Controlled With Navigation Buttons

Feb 7, 2014

Say there are 4 compositions in an html file.  Is it possible to create a few navigation buttons in the html file, so that when a 3rd button is clicked, the animation jumps to the 3rd animation.  Something like JQuery slideshow, but the difference is, each composition is animated instead of a static image. 

View 8 Replies View Related

Edge Animate CC :: How To Set Text / Image And Link For A Symbol Used Multiple Times On Stage

Oct 7, 2013

I have a logic problem in my code that I need solving,
 
here's the bit of code which is supposed to set the text, image and link for a symbol used multiple times on the Stage.
 
var names = ["melz", "brom", "calm", "micj", "mick", "brir", "mato", "brym", "azin", "hugh", "nicl", "bonr", "lisa"];
var name = null;
for(var x = 0; x < names.length; x++){
          name = names[x];
          var initials = (name[0]+""+name[3]).toUpperCase();
          var cursymbol = sym.getSymbol(name);

 [Code]...
 
The text and image code work, however my problem is with setting the link. It always sets all the symbols to the last name in the names[] array. What I want it to do is to set the link to the personalised name in the array. So the HH button will link to hugh.html and the BM button will link to brym.html etc.
 
For now I'm going to play around a bit and see what happens.

View 1 Replies View Related

Photoshop Elements :: Keyboard Shortcuts To Show / Hide Tool Options And Photo Bin In 11

Oct 15, 2012

I've just found that there is F4 shortcut to show/hide Tool Options xDOverall I've disabled "Auto Show Tool Options" option and use F4 ..

View 3 Replies View Related

Edge Animate CC :: How To Animate Elements From Off Screen To Center Of Screen Without Percentage

Dec 11, 2013

I did take a class for it in college so I know the basics, but still learning. I am trying to create a very basic animation where I have 2 assets that begin off the stage on either side. I would like the elements to slide in from the sides and meet in the middle with about a 20px overlap. I tried setting a keyframe for both elements at 0 seconds and setting the X translations to -2000px and 2000px and then setting another keyframe at 5 seconds and changing the X translations to 48% and 52% respectively. This got me the desired effect, but only because I have such a large monitor. If the browser window is resized or the screen is smaller, the effect does not stay the same due to using percentages to center the elements.
 
is there a way to animate elements to the middle of the screen without percentages(maybe by using margin:0 auto or something)? Or is there a way to accomplish what I am looking for so that the positioning of the elements is the same regardless of browser window size?

View 1 Replies View Related

Edge Animate CC :: Loading Symbol / Spinning Circle To Show Animation Is Loading?

Sep 13, 2013

my animation takes around two seconds to load within my browser. Is there a way to display a loading symbol such as spinning circle, that will show the animation is loading, then disappear once it is ready to display?

View 2 Replies View Related

Edge Animate CC :: Retina Displays - Show The Retina Image When The Device Warrants?

Oct 18, 2013

I'm new to animation, but have recently taught myself Edge Animate.
 
How can I make sure everything works with devices that have Retina Displays?Do I set up two animations or is there some code I need to add to show the retina image when the device warrants? Should the retina images be 144ppi and the others be 72ppi?

View 2 Replies View Related

Edge Animate CC :: How To Add A 3rd State To Button To Show An Active State

Sep 23, 2013

I  have a button with the following actions:
 
click:
sym.play(2000)
 ;mouseover:
var mySymbolObject = sym.getSymbol("Guns_Nav")
;sym.$("Guns_Nav").css({opacity:.3}); 
mouseout:var mySymbolObject = sym.getSymbol("Guns_Nav")
;sym.$("Guns_Nav").css({opacity:1});
 
I cant figure out how to add 3rd action on my button, to show an active state (basically freeze the buttonts opacity until the next button is clicked)  while this portion of the stage is being visited.

View 3 Replies View Related







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