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

Local storage - saving/retrieving data in Edge Animate

$
0
0

I have a text field called "textfield" and I would like to save this information locally (it is a touch screen presentation) when pressing a button.

Also I´d like to be able to retrieve the information to the same text field after restarting the application.

I´ve read this is possible with Local storage. But how do I do this? (I´m mostly a designer, but can do a little bit of code).

 

Thanks!


removeClass is not working?

$
0
0

i have this css transition that i need to repeat but it seems removeClass is not working on the new update. any ideas?

Edge Animate Installed as Trial?

$
0
0

I am an Adobe CC subscriber.

Today when I updated my apps, it showed Edge Animate installed as a 30 Day trial.

As a CC subscriber, shouldn't it just be full version activated?

Bug. Can't put two Edge Animate animations on same page

$
0
0

Alrighty. Just thanked Adobe for fixing responsive scaling issue. Now there seems to be a new one. When I put two Edge Animate animations on the same page, they both disappear entirely from view! Both in live view (or what was fluid grid view) and when trying to preview in any browser. The responsive design is working great but if I put two animations on the same page they both just disappear! GONE!

Maybe there is some code I can use to stop this from happening. I have done a number of tests over the last hour or so. My smile (from the responsive fix) is now a frown again. I can not continue to work like this. Please let me know if there is something I am doing wrong. I could have two animations in one page no worries before this release but the responsive design wasn't working properly. NOW the responsive design works but I can not have MORE THAN ONE ANIMATION on same page. Thanks for your time. Kind regards Julian.

Animation runs when loaded not when it should ....

$
0
0

Hi, I have an edge animation placed in a Muse page. If I set the animation to run at 1500 pixels I expect the animation to play when the indicator reaches the top of the page. It doesn't however. It plays when loaded regardless of where the position of the animation is set to play with the T-bar thingy.

 

Any ideas or is it a small insect?

 

David

firefox only playing in one channel?

$
0
0

i have this example file where in firefox plays the audio in the left channel only. i already imported mp3 and ogg file but still ogg plays in one audio channel.

 

Dropbox - audioproblem.rar

mix new and old version in the same project...

$
0
0

Hi,

 

I downloaded the new version. i make a minor change in one html file on the project I  am working on and publish it with the new version. The mix didn’t work. I had no time to loose. I downgraded back, recovered the older html file. And everything is OK.

 

I see there is lots of problem with the new version. My question is : Is it safe to upgrade ?

 

Or shall I keep the project I am working on with the old version till better times arrives ?

Edge Animate 2014.1 won't open project because of js error

$
0
0

After upgrading to the latest version yesterday, one of my projects won't open in 2014.1 because of a js error ("Loading Failed, please check your page for JavaScript errors").

 

I redownloaded the previous version and can confirm it works in 2014. Prior discussions concerning this issue have been no help and I don't understand why the latest version has issues opening this project.


Onload size change and Animation incomplete on Ipad

$
0
0

Hi everyone.

 

I have 2 small issues which are driving me a little crazy.

 

The first is that my first animation on page loads. But flickers form the size it should to a larger version and then flick back an plays. This happen on all devices and all browsers 85% of the time. Buggy right.

 

The second is a more pressing issue.

 

On the Ipad mini we have at work. The first animation does not play through correctly. The boxes are meant to change height from 0 to 89px giving a pop up effect. On the I pad they just seem to pop up as 3px.

 

Any ideas?

 

You can view the project on this test account

http://preview.uk-plc.net/coding-international/index.html

james.codingInt

0071Coding

 

Thanks for the help

 

J

Sound won´t play on mobile devices. I don´t have auto-play set.

$
0
0

I have a finished project done in Edge. Most things are correct in the project, apart from texts being placed wherever Edge feels like placing them. Since I can´t shoot Edge in the head I just have to accept this horrible feature.

 

I have imported sounds correct (mp3 and .ogg). There´s no auto-play set anywhere in the project, yet the sound won´t play on mobile devices. Why is that?

Creating childSymbol from JSON data

$
0
0

Hi

 

This is a bit tricky one, i think.

 

I am trying to make a menu, from some JSON data. I want to make a function, that takes, in this case the id (this is not to be confused with Javascripd id. This is just the name in the JSON file) and creating a symbol. But i don't want it to repeat itself. Right now, it only says placeholder, in those places, it shouldn't create a symbol at all.

http://torbenvf.dk/ledelsehelehistorien/test/index.html

Heres the code from the ComposisionReady

 

(function($, Edge, compId){

var Composition = Edge.Composition, Symbol = Edge.Symbol; // aliases for commonly used Edge classes

 

   //Edge symbol: 'stage'

   (function(symbolName) {

     

     

      Symbol.bindElementAction(compId, symbolName, "document", "compositionReady", function(sym, e) {

         $.getJSON('slides.json', function(data) {

        

        

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

                 {

            var s = sym.createChildSymbol("slide", "Stage");

        

        

        

                             if(i)

                                 { if(repeat != data[i].id)

                                     {s.$("title").html(data[i].id);}

                             else

                                 {}

        

         }

                                                     else{

                                 s.$("title").html(data[i].id);}

        

                             repeat = data[i].id;

        

        

        

        

                 }

        

         });

        

 

      });

 

Eventually, the whole thing is going to look something like this, just using dynamic data

http://torbenvf.dk/ledelsehelehistorien/grafiskprototype1koma5.html

 

Kind Regards

Edge 2014.1 Replay issues

$
0
0

The new version of Edge Animate 2014.1 does not properly reset all elements when replaying for my existing projects which I just upgraded for this version. I find that I have to do 2 things to resolve the issue which were not necessary before:

 

- add keyframes to the '0' position for all affected elements

- turn off all auto play symbols and manually add a 'play' trigger sometime after the '0' position

 

replay_fix.jpg

 

Hoping for an update to fix these issues

Is there a way in Edge Animate through code to adjust a timeline transform value?

$
0
0

Is there a way in Edge Animate through code to adjust a timeline transform value? If not this would be a great feature. For instance I have a symbol that I'm animating to look like it's jumping using the timeline. I'd like use code to slightly randomly rotate the symbol at the height of the jump before it comes back down. I've tried sym.$("element").css({"transform":"rotate("+randNum"deg)"}); in a trigger on the timeline but it seems like my code gets overridden through Edge's timeline transforms.

 

It would be cool to have some UI to say pick a value within a range for this keyframe. Or if there's a way to do it through code that'd be cool.

C++ Exception Error

$
0
0

Hi,

 

I've updated to the latest version of edge and when trying to delete a keyframe from within a symbol I get the (unknown C++ exception) error and doesn't let me delete then keyframe. It is also happening on more than one Edge project.

This happens on multiple computers with the latest update

 

Does anyone know why this is happening?

Edge 2014.01 Problem with clipping

$
0
0

HELP NEEDED........Please

 

Opened an old 2014 file which it informed me was being upgraded to the new version.

Now the banner doesn't appear to work.

After the first loop the clipped svg files remain on screen and you end up with a clash of images.

It as though it freezes on screen and just runs loop again underneath the screen freeze.

 

Help please as this banner was working correctly yesterday, and not today after update.

 

If you require I can provide files, old and upgrade.

 

Thanks


How can I test if my preloader > loading code is firing?

$
0
0

Hi all.

I've been experimenting with code input areas in Edge Animate. Code input areas may be the wrong term. For example, Stage > creationComplete, compositionReady, etc. Basically using console messages or alerts to monitor when these areas are executing code.

 

I've moved on to Preloader > loading, and I'm not having any luck in this area. Console messages or alerts don't appear to be firing. So I started snooping through Edge generated JavaScript code, and I can't find any trace of my test code, not even comments.

 

Anyone know what's going on here?

 

Thanks!

can i get my old version back?

$
0
0

This version has several problems.

1 My windows 7 as come to a crawl.

2 Importing a symbol created with the new version (2014.1) Does not have any height or width when imported as a ANYSM, and cannot be changed in the properties panel..

Text margins/spacing adjustments lost in new version of Edge Animate

$
0
0

I have a scrolling block of advertisements that I update weekly.  This week is the first time I have updated it since the upgrade to the latest version of Edge Animate.  Everything looked fine when I previewed it in a browser from inside Edge Animate but when I published the ad all of the text margins/spacing adjustments that I made were changed.  It appears as though maybe they have defaulted back to their original settings?  Is this something that can be fixed in an update? I have over 100 ads that I would have to adjust, then publish, to make sure they appear correct in a browser.  It would be VERY tedious and time consuming.

 

Here is my EA file if you want to see what I am talking about:  http://www.capitalpress.biz/html5ads/quicklinks/quicklinks.zip

 

Thanks,

 

Brandon Tenner

loading failed please check your page for javascript errors

$
0
0

Suddenly, I receive this error while trying to open the file.

Any access is prevented.

 

"loading failed please check your page for javascript errors".

CSS transitions problems..

$
0
0

I'm using this Page Visibility code in my project, it was perfect in the last version but the latest version not quite..

 

First off, when I tabbed out of the project on a web browser and when you tab back into it..

(On the previous version) It completely stops the animation and i'll be able to trigger the code.

(On the latest version) It skips few frames then play again.

 

So, my solution was to stop the timeline of the symbol which is playing whenever it goes to another tab but another problem occurs; once you tab out again on the time when the CSS transition is happening; the transition will stop the animating object and it will not resume the transition.

 

Oh btw, I'm using animate.css as my presets to my animations. I was adding and removing class and still nothing. I'll try to upload a sample but hopefully some of you will give some thoughts about this. Thank you!

Viewing all 9897 articles
Browse latest View live


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