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


ADVERTISEMENT

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 :: Clicking Twice On Pause / Play Button

Mar 16, 2014

I have made a pause and a play button to my slideshow.The pause button is just a boks with the click-action code:
 
sym.$('btn').click(function(){
          sym.stop();
});
 
The pause button is a boks with the click-action code:
 
sym.$('btnPlay').click(function(){
var timelinePos = sym.getPosition();
          sym.play(timelinePos);
});
 
It works but in the beginning, I have to click twice before the function works. It is only the first time. After that everything works fine.

View 2 Replies View Related

Edge Animate CC :: Insert An Audio While Play Back An Animation?

Dec 30, 2013

How do I insert an audio while you play back an animation?

View 2 Replies View Related

Edge Animate CC :: Audio Does Not Play On Mobile Phones And IPod?

Jan 28, 2014

I have uploaded an edge animate cc published html with sound. The html file opens perfectly on my mac pro safari browser perfectly with audio. But when I open the same file on my iphone5 the file opens but no the audio does not play.

View 4 Replies View Related

Edge Animate CC :: Adding A Play / Pause Button Into An Animation

May 15, 2013

I have an animation that runs for around 2 minutes. I want to add a button that the user can click to pause/play this animation if they want extra time to read the content on screen. I'm not sure how to tell a button to pause at the current frame and resume when clicked by the user. The button will also need to change states from a pause image to a play image when clicked and vice-versa.

View 8 Replies View Related

Edge Animate CC :: Get Button To Play Timeline For Specified Length Of Time

Feb 27, 2014

I have an animation in Edge, and I'm trying to make a button that can play the timeline for a specified amount of time and then stop, without the aid of labels. So, I figured if i set the button to sym.getSymbol("mysymbol").play(500);  it would make the timeline of that symbol play for 500 milliseconds each time the button is clicked, but it is not working, as this makes the whole thing simply start playing at 500ms. So I then tried adding a stop action after this: 

sym.getSymbol("mysymbol").play();
sym.getSymbol("mysymbol").stop(500);

But this didn't work, because I guess since these events are one after the other, it doesn't wait 500 seconds to stop, and it reads stop(500) immediately after the play instruction, so that didn't work either. I'm pretty new to javascript, but I've been really trying to learn it along with the Edge API for a couple weeks now and still can't seem to solve this problem.

View 14 Replies View Related

Edge Animate CC :: Play An Animation By Click And Then Play Reversed By Clicking Again?

Aug 15, 2013

...like a menu popping out and going back again.

View 7 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 :: Play One Symbol After Other

Nov 26, 2013

In my Composition there some cases I have to play one symbol. In a few cases it is necessary two play sequential e.g. symbol A an then symbol B. It have to look like one animation. Is there an easy way of calling?

View 19 Replies View Related

Edge Animate CC :: Won't Play On Older Browsers?

Jun 18, 2013

I've created an Edge animation (marquee) banner for a site I'm working on, but when I check it on older computers (for example XP running IE7), all I see is a large white rectangle where the marquee is supposed to be. A

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 Play Reverse Between Label A And B

Sep 2, 2013

I have a symbol,some timaline and labels in it.so now I want to play reverse between the Label A and Lable B but the action syntax is like

test1_play.playReverse();
 
so how can I play reverse rom LableB to LableA? 
 
sym.playReverse ( position, executeTriggers )

position defaults to the current playhead position (which defaults to 0); If play is issued and the playhead is at the end of the timeline, play from the end.executeTriggers can be true, false, or null and indicates whether triggers at the starting position are fired:true - all triggers at the starting position are fired.false - no triggers are fired at the start point.null, undefined or omitted - triggers are fired at the starting position only if the timeline is being played for the first time, or if the starting position is different than the current playhead position as returned by getPosition().Description: Play the default timeline in reverse from the given position given in milliseconds (if position is a number) or as a label (if position is a string).

View 1 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 :: Play Function From External Link?

Dec 13, 2012

I have created an animation and I would like clicking on a button (javascript) that is within the outer body, start the animation.

View 1 Replies View Related

Edge Animate CC :: Play Reverse And Continue From A Point

Jan 15, 2014

I have and element and what I'm trying to do when I click on this element, it starts to play reverse the timeline for 1 sec and after that it continues to playing the timeline from an other point.

View 3 Replies View Related

Edge Animate CC :: Click And Play Action Is Not Working?

Apr 12, 2014

I am creating a slide show and I added a stop and click to play action so it is interactive so the user must click to go to the next slide.  The stop is working but the click an day is not when I preview in the browser?

View 4 Replies View Related

Edge Animate CC :: Text Animation Does Not Play In Firefox

Aug 6, 2013

I created an Edge Animate document and it has text animations where the text fades in and out. Now it works fine in IE and Chrome but not FireFox. All the text displays all at once in a jumbled mess.

View 2 Replies View Related

Edge Animate CC :: Play Timeline From Inside Symbol

Oct 13, 2013

I saw a post on this issue but was not sure where to put the code I read there. how exactly to edit this code line to work
 
I am inside a symbol "oneAnimation". At the end of the animation "backBtn1" appears. Inside this button, I have added an event on click. I want the stage timeline to play from the label "startNumber" when this button inside the symbol is clicked.
 
So far it's not jumping back to the main time line.
 
sym.getComposition().getStage().play("startNumber");

View 5 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 :: 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 :: 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 :: Flip Symbol Horizontally On Play-reverse

May 29, 2013

I'm doing an animation where I have a 2d side scrolling concept.
 
I have a side scrolling world with road, and the user controls a car driving left or right from one area to the other.  The user controls the direction of the car via keydown (arrow keys).
 
Now the problem is, if the user presses right, then it works fine and the car drives forward to where I want it to stop.  But if the user presses left to go back to a previously visited area...the car reverses to the previous area.
 
The way the keydown events control the timeline is simply if the user presses the right arrow key I simply call sym.play(); and when the user presses the left arrow key I call sym.playReverse();
 
how I can manage to either swap the car symbol with another symbol...or flip the car symbol 180 degrees.
 
The desired effect is, if I call the play action the car must face right > and when I can the playReverse action the car must face left <

View 4 Replies View Related

Edge Animate CC :: How To Use Cookies To Control Which Part Of The Timeline To Play From

Nov 4, 2013

I have created an animation with Adobe Edge. My site uses Concrete5 and I am pulling in the Edge content into an IFRAME on my home page. I want the animation to play from the start when someone first visits the site, but if during their browser session they navigate back to the home page, I want the animation to only play a shorter segment of frames near the end.
 
My question is, how do I use cookies to acheive this? I'm new to javascript/jquery.
 
I've included the following code on compositionReady, (found in another post on this forum) but don't have a clue how to continue...
  
// insert code to be run when the composition is fully loaded here yepnope(   {     nope:[       '/js/jquery.cookie.js'     ],   complete: init   } ); function init() { //create your cookie's initial values here } My temp site is here -[URL]
 
On revisting the homepage, I only want to play from when the green button drops in.

View 3 Replies View Related

Edge Animate CC :: The Sound Will Only Play On Firefox And Not Internet Explorer?

May 16, 2013

Ive made my entire web page its work great in Mozilla firefox broswer. Although when  I  view the page in Internet Explorer the sound and music dont play. heres a link to my page.
 
http:[url].....
 
heres the link to download the Edge files of my project.
 
https:[url].....

View 2 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 :: 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







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