Edge Animate CC :: How Can The Properties Of Symbol / Element From A Button

Jun 13, 2013

modifiy, for example, scale and position of that element calling it from a button

View 1 Replies


ADVERTISEMENT

Edge Animate CC :: Changing Element On A Copied Symbol

Nov 6, 2013

Currently, if you convert a rectangle (which contains elements, for example, a book title) into a Symbol, and copy that Symbol, you get the same elements (same book title).
 
I want to change that book title in the Copied Symbol, but any changes you make in the Copied Symbol, automatically changes the Original Symbol to the same. 
 
How can I make changes to Elements in Copied Symbols so it won't affect the Elements in the Original Symbol?

View 2 Replies View Related

Edge Animate CC :: How To Control HTML Element Of Single Page From Custom Animated Button

Jan 9, 2014

how I can control another Edge animation and/or html element of a single page from a custom Edge animated button? For example, I created an animated tabbed buttons in Edge, then I want to animate a different Edge animate once I clicked on a button in the other Edge animation. I want to add multiple Edge animation in one page instead of one big Edge animation. This is partly because the design of the page is done is Muse with the parallax effect.

View 2 Replies View Related

Edge Animate CC :: How To Target Nested Symbol From A Button

Feb 19, 2012

I'm new to Edge, Javascript and HTML5 (coming from Director/Flash/After Effects background) I'm wondering if there's a way to target a nested symbol from a button. I would like to make a simple Pause/Play toggle button that stops a nested symbol is it's playing and plays it if is stopped. In software's I'm familitar with, this can be done with a simple target path and  if/else conditional statement, but I can't find any examples that don't seem much more complicated.

View 15 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 :: Symbol Animation Active In Outside Button?

Dec 17, 2012

i created an animation inside symbol.i created a button outside the symbol. the animation only works when the button click?

View 4 Replies View Related

Edge Animate CC :: Get The Properties Of The Symbol And A Text Field On The Stage?

Dec 15, 2012

'm trying to get the properties of the symbol and a text field on the stage. And I can get the width and the height of them by this script below.
 
-----------------------------------------------------------
var temp = "";
temp += "Width of the symbol  " + sym.getSymbol("mySym").getSymbolElement().width() + "<br />";
temp += "Height of the symbol " + sym.getSymbol("mySym").getSymbolElement().height() + "<br />";[code].....

And now, how can I get position(x,y)?
 
Are there any web sites that shows the list of the properties?

Because I'd like to know other properties too, like  rotation , opaque , show/hide, etc.

View 4 Replies View Related

Edge Animate CC :: How To Remove Loaded Image On Stage From Symbol Containing A Button

Jan 14, 2013

1st the setup:

General map is loaded

2. On a click event, an larger image of the region is loaded with the following code. On mouseover the name of the county appears and on click a popup (symbol) shows some info.
 
$('<img id="region1" width="310" height="475" src="images/region1.png" usemap="#region1">'+'<map name="region1">'+...
'<area id="Dallam" shape="rect" title="Dallam" coords="29,17,97,58"/>'+.....

3. In the popup symbol, I want the large image map to be remove on the click event of the button: "View another region" . I have the following code which does not work (the image is not removed) resulting in what you see below:

sym.playReverse();
sym.getComposition().getStage().stop(0);
sym.getComposition().getStage().getElementById("region1").remove();
 
  how do I remove the image (large image of the region in purple here loaded as described on 2.)?

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 :: How To Dynamically Set A Symbol Name That Has Been Parsed From XML To Build A Symbol Path

Mar 20, 2013

Is there a way to "eval" or dynamically set a symbol name that has been parsed from XML to build a symbol path? For example, I'm trying to dynamically set a variable to the path of a sysmbol already on the stage, but it's not working correctly:
 
var xmlSymName = $('symName', this).text(); // where symName = "sym4" from a parsed XML node
var whatPOI = sym.getComposition().getStage().getSymbol("sym1").getSymbol("sym2").getSymbol("sym3").getSymbol(xmlSymName).getSymbolElement();
 
Basically I have a lot of points on a map and I'd like to be able to name the points along with other data like tooltip callouts, etc populated via XML then loop through the XML to build the points of interest on the map. If I can get the above working I can place that variable path reference into an array and grab the data from it later. But the path is not working the way I have it.

View 1 Replies View Related

Edge Animate CC :: Call A Symbol From The Symbol Panel And Place It On Stage?

Apr 25, 2013

Can I call a symbol from the symbol panel and place it on the stage?

View 2 Replies View Related

Edge Animate CC :: Reference Main Timeline From Inside Of Symbol In Symbol?

Apr 10, 2013

The scenario is this,  I have a symbol(TitlePage) on my main timeline.  Inside the symbol(TitlePage) there is a play button.  How can i set a click event on this symbol that access the main timeline(stage) labels?

View 6 Replies View Related

Edge Animate CC :: Playing Animation On Timeline Within A Symbol From Another Symbol

Mar 17, 2014

 I have the following
 
STAGE
          SYMBOL_1
               DIV_PLAY
                    MOUSEUP(COMMAND)
               DIV_STOP
                    MOUSEUP (COMMAND)
[Code]...

I would like to do the following:
 
play "SYMBOL_2" - "DIV_ANIMATION_1" - "ANIMATION_1_START" from within "SYMBOL1" - "DIV_PLAY" with the mouseup command
 
URL....I know that i can sym.getComposition().getStage().getSymbol("div_animation_1").play();  from within "div_play" but how do i access a point on the timeline and play from there...

View 1 Replies View Related

Edge Animate CC :: How To Move Element Layer

Oct 5, 2012

how do i, by animation of function move an elements arrange, like : on click arrange element to front

View 7 Replies View Related

Edge Animate CC :: Animating Element On Wordpress

Mar 29, 2013

i want animate the menu wordpress using edge animate.i already create animation, and the place is in header, when i click i want the menu will show and hide..

View 2 Replies View Related

Edge Animate CC :: How To Set Element Names With Script

Dec 3, 2012

I created symbols on the Stage by this script below.

for(k=0; k<5; k++){
          sym.createChildSymbol("mySymB" , "Stage" );
}

How can I set the element names with the script? Because, when I try to control one of the symbols using  getSymbol("-----") command,I need to know the element name given to each symbol.

View 22 Replies View Related

Edge Animate CC :: Adding Effects Without Moving The Element?

Jul 6, 2013

There is an element that I don't want to move (x and y co-ordinates) but I want to add effects to it (like bounce effects). How do I do this?

View 1 Replies View Related

Edge Animate CC :: Finding Top And Left Location Of An Element When Clicked?

Nov 26, 2013

I am working on a project with several nested DIVs, and I would like to be able to get the top and left coordinates of a DIV when I click on it, relative to the Stage.
 
I used this code in the On Click action for the DIV:
 
var objTop = sym.$(e.currentTarget).css("top");
var objLeft = sym.$(e.currentTarget).css("left");
 
But, since this is a nested DIV, it seems to be giving me the coordinates relative to the parent, not the Stage.

View 1 Replies View Related

Edge Animate CC :: Making Object Or Element Spins Repeatedly?

Feb 7, 2014

How do I make an object or element spins repeatedly in Edge Animate?  I am new with Edge Animate.

View 7 Replies View Related

Edge Animate CC :: How To Do The Animation Looping Element Without Any Visual Jumping

Oct 7, 2013

I have created the following simple animation:
 
http:[url].....
the files are at: http:[url]....

I want the background to loop seamlessly, I have created the illustration so it will join ok at either end I just cant figure out how to do the Animation 'looping' element so its nice and smooth without any visual jumping? or without it jumping back to the beginning - 

View 4 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 :: 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 :: Getting Symbol Name?

Mar 27, 2013

What is the syntax for retrieving the name of the symbol that has been clicked on?

$sym.symbolName
$sym.name
$sym.getAttribute("name");
e.target.name
e.target.symbolName
 
I can get e.target.id fine, but it's a mixture of Edge generated identifiers and my symbol name.

View 11 Replies View Related

Edge Animate CC :: How To Get Symbol ID

Dec 17, 2012

I have some codes like this:
 
function myFunc(name) {
     var $symbol = sym.$(name);
     //I want to do something with $symbol depending on their id, for example
     //$item.appendTo($symbol);
     //so $item will append to the corresponding symbol
}

[Code]...
 
I tried .attr('id') and it seems not the id I want.

EDIT: indeed I want to get the selector inside myFunc

View 9 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 :: One Symbol - Playing Other Off

Jun 14, 2013

I start with several items on the stage, each an iteration of the same symbol. When I click on one, it performs an opening animation, then pauses. When I click on another, the first symbol un-pauses on its timeline, animating back to original position, while the second one I clicked plays its opening animation till its pause. Each of the symbols can tell the already deployed symbol to "play itself off."I'm sure this was done in Flash all the time, and there's a Javascript solution.

View 3 Replies View Related

Edge Animate CC :: Two Symbol-instances With Different Data?

Aug 8, 2013

How to create two instances of the same symbol and change the texts and images inside the instances to have different texts (so I mean different from the other instance)?
 
Somehow, instead of using dynamic creation by using code, I can't manage this. Everytime I change a text inside A (instance of symbol1), the text of B (instance of the same symbol1) is also changed. The same with images. I can't figure out what I'm doing wrong here. I can't imagine symbols are always reference types, 'cause what's the meaning of having symbols then?

View 7 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 :: How To Apply CSS All Elements Of A Symbol

Apr 2, 2014

how to apply CSS all elements of a symbol?
 
For example, I want to put a border around every image in a certain symbol.

View 1 Replies View Related

Edge Animate CC :: Jquery Calling Symbol In Itself?

Jul 17, 2013

I want to create on the symbol an mouse over event that address the same symbol.
 
i've tried
 
this.css("display","none");
 
with no success..

View 5 Replies View Related

Edge Animate CC :: Action On Before Label Of The Symbol?

Jul 14, 2013

It is possible take action label before?
 
example:
Stage01, label 'home'.
Symbol01, click on Retangle01 action: Play ('home') in Stage01.

View 1 Replies View Related







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