Quantcast
Channel: Adobe Community : All Content - Edge Animate
Viewing all 9897 articles
Browse latest View live

Preloader keeps running, nothing happens

$
0
0

What am I doing wrgong when an Edge project with a preloader won´t start unless I reload the page 2-3 times? The preloader just keeps on running and the animation won´t start by itself.


blurry images in chrome

$
0
0

I've set simple animation where image changes size from small to large.

Image is clipped in a div.

Image looks VERY blurry and pixelated in chrome (IE and Firefox are OK).

Why is this happening?

 

IE.JPG   Chrome.JPG

Edge animate - You tube video does not support in Mozilla Firefox ?

$
0
0

Hi,

 

I have embed below code in edge animate for youtube video in browser. This code is work fine in IE, Chrome, and other browser. But this code does not work in Mozilla firefox.

 

Here is code:

 

var youtubevid = $("<iframe/>");

sym.$("vcontainer").append(youtubevid);

 

youtubevid.attr('type','text/html');

youtubevid.attr('width','425');

youtubevid.attr('height','350');    

youtubevid.attr('src','http://www.youtube.com/embed/ZHUjDWpHJvU');  // url/Video_Id

youtubevid.attr('frameborder','0');       // 1 | 0   

youtubevid.attr('allowfullscreen','0');   // 1 | 0

 

 

 

PLz help me...

 

Thanks

Susanta Kumar Muduli

Latest Animate crash issues

$
0
0

Anytime I try to delete a keyframe I get an error saying that I should save and close the program. When that doesn't happen, the keyframe will just not delete.

The audio included in Edge animate, does not work on Ipad but works in browsers Normal

$
0
0

The audio included in Edge animate, does not work on Ipad but works in browsers Normal

enlarge the clickable area of a button

$
0
0

Hi, folks

How do I enlarge the clickable area of a button without enlarging the button? You may have answered this question before if so please send me the link.

Delete child symbol from stage

$
0
0

Hi All,

 

I need help deleting a symbol from the stage.  I have a list of symbols that are called to the stage at some point in a simulation. When the user leaves one symbol, it is supposed to delete itself and call up another (specific) symol.  For example.  I called the symbol “AR-HistAims” to the stage using

 

var mySymbolObject = sym.createChildSymbol("AR-HistAims", "Stage");

            mySymbolObject.getSymbolElement().css({'position':'absolute','left': (mouseX - offset.left)/sx , 'top': (mouseY - offset.top)/sy});

            mySymbolObject.play();

 

This works fine.  I place an invisible button in the symbols timeline and when it is clicked I want it to do two things. 

 

  1. call up “AR-percPass” (using the same code as above with a percPass in place of HistAims)
  2. remove “AR-HistAims” from the stage. 

 

I can’t seem to get #2 to work.  I’ve tried codes below and above the code for #1.  When placed above, it deletes the current symbol, but doesn’t call up the new one.  When placed below, the new symbol appears on top of the old one.  The codes I've used are:

 

            var childSymbols=sym.getComposition().getSymbols("AR-HistAims");

            for(var i=0; i<childSymbols.length; i++)

            childSymbols[i].deleteSymbol();

//and

            var mySymbolObject = sym.getParentSymbol().getSymbol("mySymbol").getVariable("AR-HistAims");

            stage.deleteSymbol();

//and

  1. sym.getParentSymbol().deleteSymbol();

 

Any advice would be appreciated.

 

Thanks

Randy

Stop the timeline, but have a symbol loop until the timeline is restarted

$
0
0

Is it possible to stop a timeline but still have a symbol, specifically a spritesheet symbol, continue to play?

I am working on a project that requires the end user to read narrative text while the process being described is illustrated by graphic animation. The audience is multicultural/lingual, so we want to allow as much time to read the text as is necessary. Our solution for this so far has been to stop the stage with a trigger then have the timeline restart with a user mouse click. That has worked so far, but now I need to have the illustration animate in the background, while the timeline is stopped waiting for the user interaction to restart the timeline. Is this possible? If not, how should this problem be approached, given that the mouse click is part of a symbol being used in other animations in a series?

 

thanks

Ron


Whats the most efficient way to create frame-by-frame animations in EA?

$
0
0

I know I can create animated GIFs and place them in my EA composition. But thats cumbersome and painful to edit. Another drawback is the fact that you can only tell EA when to play the gif; theres no way to fully control the playback and jump to certain timestamps or loop only a certain part of a GIF (unless I'm wrong?).

 

Spritesheet animations seem even more painful to create and seem very sloppy and even more annoying when it comes to make any changes afterwards.

 

The only other option I know is to place every frame of the animation as a seperate image in EA and then show/hide every image one after another via keyframes. Which would be a nightmare when it comes to animations with a larger number of frames. But the real dealbreaker is the fact that there seems to be a technical issue with this: When I played a looped frame-by-frame animation like this alongside other regular animations, the frame-by-frame animation created a noticeable stutter in the other animations. The stutter disappeared when the animation started looping, but thats still enough to make this technique somewhat unusable.

 

I would really like to see a dedicated frame-by-frame animation feature in a future update. Until then: How do you create this kind of animation in EA? Or do you use a different tool for this job? I would love to hear suggestions!

greensock scrolling div

$
0
0

Hello, I am looking for a way to scroll my Stage with Greensock

 

I found that but I can not make it work

 

http://greensock.com/forums/topic/6056-scrolling-the-page-up-and-down-with-greensock-js/

 

my code work when I use .animate methode

sym.getComposition().getStage().$('#Stage').animate({ scrollTop: 500 }, 5000 ); // Ok

 

with

    TweenMax.to(window, 3, {scrollTo:{y:300}}); // not working

or

     TweenMax.to($(window), 3, {scrollTo:{y:300}}); // not working

 

any solution ?

And with a Yoyo action it would be fantastic !!

 

thanks

how to trigger based play a text, video and animated symbol

$
0
0

Hello

 

I have an animated text followed by a video followed by animated symbol. I have a next button with the following commands

 

sym.getSymbol("slide").play();

 

 

sym.play();

 

The problem:

 

I can go next from the text to the video but have to wait till the video finishes playing then the symbol comes in automatically. if i click next while the video is playing. The animation progresses in the symbol and it misses the starting animation.

 

What i want is while the video is playing and i click next the video stops and the slide starts to play.

 

Project file here: https://www.mediafire.com/?0zv067hgt6g0l7x

 

Can anyone help ?

 

Thanks

set stage overflow from trigger code

$
0
0

Cannot figure out how to change the value of overflow from trigger code. I can't even read it.


    alert(sym.getComposition().getStage().css("overflow"));

 

No code in the trigger after the above line will run. Lines before run.

 

Using this link as reference, I thought I could do this:

 

    sym.getComposition().getStage().css("overflow","visible");


I tried using an intermediate variable. No dice. Any ideas?

embed edge animate onto webydo website

$
0
0

Hi,

 

Just wanted to know the best way to embed a edge animate onto a webydo designed website.  A step by step overview would be great.

 

Cheers,

 

Shaun

Tons of errors with 2014.1 running on OS X Yosemite

$
0
0

Finding that Edge Animate CC 2014.1 is freezing within 5-10 minutes of use.  Telling me to save work and restart every 5-10 minutes as well (I do anyway!)

 

-creates corrupt JS files that my server won't let me upload.

-crashes MacBook Pro 2013 with Yosemite

-when loading symbols it says JavaScript is corrupt

 

Any sight of an update soon to address Yosemite compatibility?

I can't set origin point

$
0
0

when selected, and attempting to scrub, the origin point value doesn't change. I'm following the tutorial instructions line for line, but this isnt working. Cheers, Shaun


Reverse Playback needs to stop where a playback trigger exists... starts playback again instead of stopping...

$
0
0

So, I have an animation play, and when it finished a button appears. A click of that button reverses the timeline to start it off where it begins. The problem is that where it begins is a playback trigger. There is no way (that I know of) to stop the reverse playback at the start without hitting the playback trigger. I can't for the life of me figure out how to deal with this. Any help would be great! I do not know java script fyi.

 

screenshot:

eahelp.png

Problems on viewing OEM with video on the Adobe viewer APP on ipad air 8.1 with EDGE ANIMATE CC 2014.1

$
0
0

hi everyone

 

i had this problems and i don't know if is for my fault or is something related to a bug

 

i made an animation with a video ( i try it before just with an mp4, but later i add also the OGV in the same Group ) and one object , if you click on the object you launch a website link on a different windows and the video and the stage are in PAUSE, if you click again the video the video START.

 

it's very simple and on the web preview ( and on the export for WEB package )  all works properly, but if i want to view by the Adobe content viewer APP on my connected ipad ( via indesign ) i'm not able to see the video i just see the poster image and the object ( with the working link, that launch a new tab in the APP),  but NOT the video in background!

 

INDESIGN procedure

In indesign i add the OEM on my page and launch via the folio overlay the preview on my connected ipad

 

is not the first time i work with animation on DPS APP, and everytime all works good

 

after quite a whole day on try different solutions but with the same result i hope in this forum to find help on solve this problem, from more experienced people than i

 

thanks in advance

 

cristiano

Spin collada file around

Run Edge Animation on Scroll

$
0
0

I've placed my OAM file into my web page, but it doesn't animate on scroll. How do I go about this?

 

Thank you guys!

Same-Origin-Policy error ?

$
0
0

Hi,

 

I'm working on a project wich contains a lot of animation so I chose edgeCommons.
My client wants the site to be visible offline .

Here is my problem : I have a wrapper and when I try to interact from the wrapper on a nested movie that does not work on Chrome offline. However if I try to perform the same action on the site hosted on a remote server, it works .

 

In offline console chrome says:

"Uncaught SecurityError: Blocked a frame with origin "null" from accessing a frame with origin "null". Protocols, domains, and ports must match."

 

------------

 

Here's an example from my code. When I click on the link in my menu , it injects the " muscle - 01.html " page in the "content " container ( in an iframe ) and it replaces the "title" text with the word " frontalis " .

In my case the " muscle -01 " loads but the text is not replaced . I tested other actions but none work offline in Chrome .

 

EC.loadComposition('muscle-01.html', sym.getComposition().getStage().getSymbol('content'))

.done(function(comp){

  comp.getStage().$('title').html('Frontalis');

});

 

-------------

 

Is this caused by the Same-Origin-Policy error?

How can I fix the problem so that it works on all browsers offline?

 

Thank you very much for your help :-)

Nicolas

Viewing all 9897 articles
Browse latest View live


<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>