Edge Animate CC :: Can't Get Stop Trigger Function To Work

Aug 26, 2013

I have made several Adobe Edge Animate projects and have inserted a stop trigger for the "home" arrival after animation intro.  I just created a new project and can't get the stop trigger function to work.  When I preview it plays through the entire timeline.  I've tried several different combinations of triggers - sym.play from () at the beggining of the timeline and then adding a sym.stop at () and no matter what, it plays through the entire timeline.

View 3 Replies


ADVERTISEMENT

Edge Animate CC :: How To Create A Delay Function In A Trigger

Jul 2, 2013

I have a problem, i need create a function delay in the timeline with a trigger.
 
I want that my animation play every 3 seconds until the next sym.stop and then play again after 3 seconds.
 
Ej. I have 3 triggers in the timeline:
 
sym.stop(1000)
 
sym.stop(2000)
 
sym.stop(3000)
 
My idea is make a delay in all the triggers, like this:
 
sym.stop(1000)
delay.play (2000)
sym.play
 
sym.stop(2000)
delay.play (2000)
sym.play
 
sym.stop(3000)
delay.play (2000)
sym.play
 
Cause I dont know how to elaborate a function in jquery

View 5 Replies View Related

Edge Animate CC :: Trigger A Function In CompositionReady Using A Button?

Aug 5, 2013

How do I use a button being clicked to trigger a function within CompositionReady? My overall aim is an On/Off button, the 'OnOffStatus' of which can be used to determine other factors within the program.

View 3 Replies View Related

Edge Animate CC :: How To Use Animation Loop Without Trigger

Feb 25, 2014

how use animation loop without trigger?

I tried to do mouseover

var my_time  =  sym.getSymbol("mySymbolInstanceName").getPosition();
if ( my_time == 0) {
sym.getSymbol("symbolName").play();
}
loop not work.

View 1 Replies View Related

Edge Animate CC :: How To Set A Numeric Value Into A Variable When Each Trigger Is Clicked

Jan 22, 2014

I have created a symbol that is a horizontal banner consisting of six paragraphs of text P1 thru P6.  Each paragraph is no more than 300 px wide.
 
I then created six trigger symbols and placed them beneath a 300 x 300 vieweing window on the stage.
 
When the stage opens, paragraph 1 (P1) is viewable in the window.  If the user clicks a trigger, I want the banner to scroll left or right, from its current position, to display the corresponding paragraph.
 
Example : P1 is showing in the viewing window.  The user clicks trigger #4.  The banner scrolls right and eases P4 into view in the window.  The user then clicks trigger #2.  The banner then scrolls left and eases P2 into viewing position in the window.
 
My old (very old) Flash training tells me I need to set a numeric value into a variable when each trigger is clicked and then use that value and concatenate it with label text to tell the play head to play from the proper postion (play ("Para1")), (play ("Para2")), etc.  where Para# is the label on the timeline.
 
I feel like I'm close to getting this to work, but after a number of hours of trying I've concluded that over time I've either forgotten a key step or there's some easier way to do this in Edge Animate.  (I'm very new to CC and EA).

View 3 Replies View Related

Edge Animate CC :: Trigger A Symbol At The End Of Each Slide In Slideshow?

Jan 5, 2013

I need to have a symbol with it's own timeline play at the end of each slide in a slideshow.  I have the animation for the slideshow but when it comes to the first symbol, all the symbols load instead of just the one needed for the slide.  I have tried setting "play from" but that seems to refer to the symbol timeline not the stage timeline.  All symbols are set to "hide" upon click. 
 
The real problem comes when playing in reverse.  The symbol plays first with "hide" feature but does not continue the reverse animation from the stage since the "hide" feature stops the action.

View 3 Replies View Related

Edge Animate CC :: How To Trigger A Random Part When Clicking On A Button

Mar 11, 2013

I have an animation with 5 different parts. I would like to trigger a random part when clicking on a button.

In order to do that I put labels on all parts (play1,...,play5). Then I put a code on the button on the click event :
 
var RandomNb=Math.floor(Math.random()*5)
if(RandomNb=1){sym.play("play1");}
 
It is just a simple test but it does not work : the animation play1 is always played no matter the value of RandomNb. I obviously make something wrong but I don't know what...

View 2 Replies View Related

Edge Animate CC :: How To Trigger An Event After Symbol Animation Completes

Nov 12, 2012

On the stage I have a button and a hidden symbol. The symbol has an animation within itself.When I click the button, the symbol becomes visible and plays the animation. Its all good so far.I want to be able to click the now visible symbol, the animation within itself plays in reverse and then it hides itself. How do I make it hide itself after the animation plays in reverse?

BUTTON CODE (This works for me):
sym.$("AnimationOne").show();
var AnimOne = sym.getSymbol("AnimationOne");
[code]...

If I add this, it just hides itself without animating in reverse

View 6 Replies View Related

Edge Animate CC :: Trigger That Seeks To A Point In YouTube Video

Apr 7, 2014

I'm working on a project that requires some interaction controlling video.   I've used the piece of code from this thread [URL]  and it works like a charm. But I'm looking at option of using youTube video for the same interaction. 
  
So on creationComplete, I've added,
 
var vid = sym.$("holder");
vid.html('<iframe width="640" height="360" id="video1" src="//www.youtube.com/embed/o2l_zZOpSxk" frameborder="0" allowfullscreen="0" controls="controls"></iframe>');

View 7 Replies View Related

Edge Animate CC :: Stop Timeline Via JS?

Feb 2, 2013

I´m using Edge for couple of days and start to work with and I love it. Now I´m trying to build a slide animation, so the content moves from right to left and vice versa.The controller goes with buttons.
 
I'm not very good with JS, but for now I got it to move the content from left to right. Now what I want is, to stop the timeline if a certain label is reached.
This is my code for the buttons if click:
 
var myLabelLocation = sym.getLabelPosition("");
if (sym.getPosition() < 2000) {
   sym.play(myLabelLocation);
}
if (sym.getPosition() > 2000) {
   sym.playReverse(myLabelLocation);
}
 
I like to say if the playhead reached 2000ms oder the label "team", than stop!

View 4 Replies View Related

Edge Animate CC :: Call A Function

Aug 13, 2013

I am setting this function in my compositionready and I want to call it from different places. That works fine but I also want to run myFunction() when the program launches.
 
sym.getComposition().getStage().myFunction();
 sym.myFunction = function()
{
alert("function called")
}

View 3 Replies View Related

Edge Animate CC :: How To Call Function From API

Dec 13, 2012

I have a webpage, where is my edge stage and a function in the script braces. How to call that function from edge api?

View 1 Replies View Related

Edge Animate CC :: Stop() Overrides CSS That Is Applied Via JavaScript

May 15, 2013

I think I've found a bug via Adobe Edge.
 
If you have a symbol that has some labels as such
  
then you add that symbol to stage and have the following code in document.compositionReady
  
var mySymbolObject = sym.getSymbol("HoverExample");
var targetElement = mySymbolObject.$("backing");
targetElement.css({"background-color":"#111111"});
 
where mySymbolObject is the symbol on the stage, backing is a rectangle div and the color is different than the original color in the symbol then you add the following code for hitbox (rectangle div that is alpha 0) under Hitbox.mouseover
  
sym.stop("over");
 
the end result is that the css from the project, in this case the red background color, gets reapplied on mouseover despite me changing the color on startup.

View 7 Replies View Related

Edge Animate CC :: How To Get An Embedded Video To Stop Playing

Jul 21, 2013

I have an embedded video in my animation , in an earlier state on my timeline I have a back button.
 
When the back button is pressed teh animaiton returns to this state but the video still plays in the backround.
 
The video cant be seen as its only appears at a later stage on the time line but the audio can still clearly be heard.

View 4 Replies View Related

Edge Animate CC :: How To Stop All Actions After Button Has Been Pressed

Aug 26, 2013

Is there a way to stop all actions once a hotspot has been pressed? I have loaded an mp4 video into my presentation. I have created a slide menu that goes right to left. I made sure to turn the buttons on only in the areas that they are needed. Once I play the movie, it works fine, but when I select my navigation to go to another page the video is still playing in the background.

View 2 Replies View Related

Edge Animate CC :: Animate HTML File Won't Work

Dec 13, 2013

I am including an animation I built using Edge Animate into Dreamweaver. I can't use an .oam file because of some other JavaScript I'm using so basically I'm limited to an .html file with all my edge includes java, and other supporting files.
 
when I preview in browser within dreamweaver. However, when I upload the page to my domain, my animate HTML file won't work. Here is a link to the current site in progress. (The first green box top left is my link to my animation). URL....

View 2 Replies View Related

Edge Animate CC :: How To Call CreateJS Function

Jan 8, 2013

Say you need a slightly more sophisticated animation and used a CreateJS from Flash.I've placed the CreateJS in a container, and I've been able to communicate from CreateJS to Edge symbol with no problem:
 
/* js
this.onClick = function () {
var comp = $.Edge.getComposition("EDGE-25177479");
var stage = comp.getStage();
stage.getSymbol("logo").play("playLogo");
}
 
But how do it the other way, and create a function from within Edge to call upon the CreateJS canvas ("myCanvas")?I want to call a "gotoAndPlay("start");" label on the main timeline of the canvas element. My syntax is completely wrong:
 
//on click
var canvas = document.getElementById("myCanvas");
var context = canvas.getContext("2d");
stage.gotoAndPlay("start");

View 2 Replies View Related

Edge Animate CC :: Add A ClickTag Type Function?

Feb 26, 2014

I need to add a clickTag type function to a banner I made so that it can be tracked. I read the thread on clickTag() and it tried swapping clickTag() with EB.clickthrough(). but that didnt work.
 
The media company has us put this code on a click through layer in the flash banners I've been making
 
EB.clickthrough();
 
how do I get this to work? The publisher gave me this code that ive added to the index file but the part where it says "onclick" I think needs to happen in edge?
 
<script type="text/javascript">
    function initEB(){
        if (!EB.isInitialized()){[code]....

how in edge to tell it to do this "onclick="javascript:handleUserActionButtonClick();"

View 4 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 :: Making Two Animations Function From One Action?

Mar 30, 2013

I need to make two animtions function from one action. So it should look something like plsy.("transition1") then go and play .("transtion2"). All under the same action I want when I press one button from my wb page for it to play two animations the first to take a rectangle like element off screen and the second to bring a new fro the side on the screen all this with the press of one button.

View 23 Replies View Related

Edge Animate CC :: Passing Parameter To Function On Stage From Symbol

Jun 24, 2013

I have a symbol on the stage: symbol1.Inside symbol1 I have an image: symbol1_image1...I have another symbol on the stage: symbol2 Inside symbol2 I have an image: symbol2_image2
 
in composition.ready I have an action on the mouseout for symbol1:

var theTarget = sym.getComposition().getStage().getSymbol('symbol2').$('symbol2_image2');
sym.getComposition().getStage().doMouseoutGS(theTarget);
 
In composition.ready i have the following function defined

sym.doMouseout = function (colorTile){
sym.$(colorTile.show());
}
 
I cannot get this to work and I am not understanding why.If I do an alert on the mouseout function for alert($(colorTile).attr("id")); I get the correct referenc to the element I want to show but it does not actually  happen

View 6 Replies View Related

Edge Animate CC :: Access Element In Parent Document From Function?

Apr 5, 2013

Very, very new to Edge Animate.
 
I want to know if I can access elements in the parent document from the Function I attach to the Stage or other element within my animation.i.e. the equivalent of window.parent.document.getElementById

I notice that the function automatically passes 'sym' which I'm guessing is the animation document reference so can I get to sym.parent?

View 3 Replies View Related

Edge Animate CC :: How To Create A Function Which Triggers One Of Three Functions Randomly

Jul 26, 2013

I'd like to create a function which triggers one of three functions randomly.

View 5 Replies View Related

Edge Animate CC :: How To Click To Stop The New Text And Images From Changing Opacity Immediately

Dec 10, 2013

Having some trouble with the oppacity on my projects. As you can see from the screenshot, I've clearly clicked something because any text or images that I try to add to my project and set the oppacity at 0% - to then build over a few seconds to 100%, will not do this.Yet previous elements that I've added will.
 
Is there something I need to click to stop the new text and images from changing oppacity immediately. I want them to build over time - I can see that the added keyframe looks different also.

View 3 Replies View Related

Edge Animate CC :: Calling Function From HTML Page Embedded In IFrame?

Mar 26, 2014

This is a tricky one, but it may just be that I don't understand the syntax,
 
Situation:I have an Edge Animate composition that is acting as an interface and container into which other content is embedded using an iFrame.  I have several functions in Stage > creationComplete, and for one of the embedded content pieces, I want to include a button that calls one of the Edge functions.
 
Challenge: I have read about referencing elements within Edge when it is the Edge file that is embedded on an HTML page, but I cannot figure out how to reference Edge in the reverse.
 
I have tried these options where headerselect(page) is my function:
 
AdobeEdge.getComposition("EDGE-531849691").getStage().headerSelect("co mmunity");
 
window.top.Edge.getComposition("EDGE-531849691").getStage().headerSele ct("community");

View 3 Replies View Related

Edge Animate CC :: Sound Work Only In Local?

Jul 23, 2013

Some sounds work in local and when i publie my websites he don't work ? why

View 25 Replies View Related

Edge Animate CC :: Button Inside A Symbol Does Not Work?

Feb 7, 2013

i create a button, when you clik it with this command:
 
sym.play("myLabel");
 
you go in the stage timeline to the label called "mylabel"  ...all ok
 
but if i save my button as symbol when i press it, it don't go to the label on the stage called "mylabel"
 
What i need to write if i whan that my button inside anoter simbol work?

View 2 Replies View Related

Edge Animate CC :: Cannot Get A Simple Rollover Button To Work

Oct 21, 2013

It does not respond to mouseover movements.
 
You can see what I try to do on this URL: [URL]
 
Fore each button I have e.g. client_button and client_button_over
 
For the over button I do have for mouseout and touchend :
 
// insert code to be run when the mouse is moved off the object
// Hide an Element.
//  (sym.$("name") resolves an Edge Animate element name to a DOM

[Code].....

But it does not show any change at all when I move the cursor.

View 10 Replies View Related

Edge Animate CC :: Click Won't Work Right On Buttons Imported From Photoshop

Apr 30, 2013

In Edge, I have created an application where a user can click buttons and then it takes them to a separate scene. However, I seem to have run into a problem where the click only works in a certain area of the box. I created the buttons in Photoshop and imported them to Edge. Only the edge of the button closest to the edge of the stage will work for clicking for some odd reason.

View 7 Replies View Related

Edge Animate CC :: How Does Responsive / Reactive Design / Timeline Work Together

Feb 13, 2013

I'm from a Flash background, used to putting code in frames along a timeline.And I've adopted much the same approach with Edge Animate putting code on the stage at trigger points..My first question is how does putting code in stage.compositionReady differ from putting code in a stage trigger at time 0.00 (or 0.05)?
 
How does a responsive/reactive design, and the Edge timeline work together?I've seen how you can lock a logo to top RHS corner. But what if you want a different smaller version of logofor when screen width is smartphone size.Will an Animate project with a timeline which includes animations and interactivity work in Reflow?

View 3 Replies View Related

Edge Animate CC :: Responsive Content Doesn't Work In Muse?

Jan 25, 2014

I like to create a respsponsive and dynamic menu bar witin Edge animate. I made attempts to make one (a test) and the responsiveness doesn't work in muse.

View 1 Replies View Related







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