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

container


i asked for some advice about a week ago but got no answer ? whats the score?

$
0
0

i wanted to know if it would be possible to animate around music i had written about my father who was killed in ww2

Unsupported paths???

$
0
0

When I try to have Edge Animate open an existing HTML webpage, it “sees” all of the images that are there but two. I am getting this error message: Unsupported path(s): /Volumes/Storage/Site FolderE/Resources/m5a.jpeg, /Volumes/Storage/Site FolderE/Resources/m16.gif

 

All of the other images are located in the same folder and are showing up in Edge. My web editing program, Freeway Pro 6 has no problem in finding and showing these files. I can see them physically being there. I have tried and tried to somehow load these into the two places where Edge is showing them as missing files. Right beside the ? missing image is another image that is being found and shown correctly, so this is difficult for me to figure out.

 

Can someone give any advice on this please?

 

Thanks,

 

Robert

Edge Animate and typekit

$
0
0

Hi,

 

Can anyone help me please with this.

I followed the video tutorial but couldn't add the font from typekit. It would show the new font as an available, but the look didn’t change.

 

Best,                                                                

Lana

typekit.jpg

 

  1. P.S. I did try to contact the adobe chat and phone support  but was told that the Edge Animate and typekit are only supported via forum

Two buttons clicked to make an eleiment disappear

$
0
0

Hi There. First Time I have posted on here but the forum has helped me loads in the past 6 months.

 

I am stuck on a simple problem.

 

When the user clicks on two button on the stage I need an eleiment to disapear.

 

for example:-

 

If one of the  buttons is pressed... nothing should happen.

Then when the other button is pressed then an element disapears.

(The user needs to be able to press the buttons in any order)

 

I have been usine verables to try and work this out. How I understand it is that I sould be able to store the verable on the stage and recall it.

 

This is where I have the problem. I have not pasted the stage code because it just does not work. But below is the code for one of the Symbol Button.

I had set all the "Var" to "0" at the stage but can not change all recall them.

 

The end project will need 5 buttons pressed.

 

Cheers Jake

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

 

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

  

var but1 = 1

 

 

         };

if (but1 = 1 && but2 = 1){

      sym.$("element1").hide();

 

         };

 

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

Optimizing projects

$
0
0

Hi all,

 

One of my current and more ambitious projects is very heavy and seems to be using alot of the browsers memory.

 

I have combined all my images into one sprite now. This has improved the overall page animation load time and server requests.

 

I am however wondering if anyone has any tricks or tips to improve the load on the browsers memory?

 

Thanks in advance.

When I save an Edge Animate project, all my objects disappear from view on the Canvas

$
0
0

When I save an Animate project (File-->Save), all the objects on the stage disappear from view.  The outlines of the objects still appear when I click on them but the "content" of the object is invisible.  It's as if the opacity is set to zero upon save.

 

And, it doesn't matter whether I'm using the opacity atrribute or not . . .

 

Any ideas of what I'm doing wrong?  Is there some preference or configuration setting I need to toggle?

 

I'm running Edge Animate 1.5 on an iMac with Mac OS X 10.7.5

Workspace is blank when opening a project

$
0
0

Hi all,

 

I'm trying to work on a project I created a few months ago in Edge.

However, when I try to open it in Edge Animate CC, it just displays a blank screen (See image).

edge_sc.jpg

The timeline, the canvas, the properties, nothing seems to be populated.

If I drag the time line back to 0:00, an alert pops up saying "An error occured. Please save your work and restart Edge Animate."

The exported HTML file still seems to work fine though. I've tried uninstalling and reinstalling Edge, but that hasn't seemed to work.

 

Any ideas?

 

EDIT: This seems to be an intermittant problem. Sometimes, the file displays correctly, sometimes it doesn't. If I close the program and open it again, the issue re-occurs.

 

Thanks.


downloading...

$
0
0

Hello,

 

I have this page. Salle Olga Bancic.

Chrome takes ages to download it. It doesn't. Sometime it does. If I click again to relaunch the page it appears.

 

The same happens with Firefox, but it downloads faster but I still have to click to relaunch the page and it appears.

With Safari it works better.

 

Is there a reason to it ? Does preload could be this reason ?

Thanks for any advice.

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

Custom Web Font (My Own) Won't Load in Edge...?

$
0
0

Hy everybody,

 

I'm trying to load a custom font of my own into a project and it just wont budge.

 

I followed this person's instructions:

 

Add your own fonts l EdgeHero

 

I've tried loading the font using native stylesheets and @font-face tags and all the svg, ttf, etc load just fine. However, when using Edge's + Sign dropdown and copy/paste in the name and link for the font it doesn't work.

 

All the files are in the same folder and there no typos in the naming.

 

When using Edge I can't find anyway to debug the problem. I feel like I should just use TextEdit?

 

Can somebody please tell me how this can possibly be? I'd be thrilled if I could find out why it's not working.

Array execution with a function

$
0
0

I have a series of buttons on the screen and they all have some sort of animation associated with them.  All of these buttons are in a symbol titled "MainMenu"  I would like to create an array and place all the button names in the array.  Then using a function when you press any button on the menu all the buttons will stop animating.

 

I put this on the stage under document.compositonReady action...

 

var buttonReset = ["steelBTN", "glassBTN", "woodBTN", "waterBTN"];

sym.resetGlobal=function(){

for(i=0; i<buttonReset.length; i++){

sym.getSymbol("MainMenu").getSymbol[buttonReset[i]].stop("off");

}

}


And this is on the button under the click action...

sym.getComposition().getStage().resetGlobal();

 

 

when I don't use an array and just use this...

 

sym.resetGlobal=function(){

sym.getSymbol("MainMenu").getSymbol("steelBTN").stop("off");

sym.getSymbol("MainMenu").getSymbol("glassBTN").stop("off");

sym.getSymbol("MainMenu").getSymbol("woodBTN").stop("off");

sym.getSymbol("MainMenu").getSymbol("waterBTN").stop("off");

}

 

...everything works so I am thinking maybe I am not creating the array correctly in my first example?  Any help would be appreciated.

 

Thanks in advance for the help.

Is it possible to set up a button to screen capture in ipad?

$
0
0

and what would the code be?

 

I want to do this rather than get the user to use the buttons on the iPad itself in case of them closing the adobe content viewer.

 

thanks

 

James

HELP! Edge Animate: Mismatched Braces error syntax

$
0
0

Please someone help. I'm having a horrible time with this and it's driving me insane. This error has the timeline just play everything through and ignores all the triggers and commands I've put into it.

 

I've gone through other forums and it seems this error is not an easy "here you go" fix. If there is someone I could upload the files to check out that'd be great.  My project is due tomorrow and this error has totally f*cked up my deadline.

 

Screen Shot 2014-09-15 at 11.19.55 AM.png

Can't get website centered.

$
0
0

The website is 2500px x 2330px. I'd like it to be centered, and I've tried everything I've read all over the forums. I've been trying to center it for two weeks, nothing works. I'm using Edge Animate 2014.1

 

http://www.worldofwarclass.com

 

Link to file

 

I'd appreciate any help.

 

Thanks!


how to create the animation div dyanimcally using jquery+javascript

$
0
0

Hello,

after a week of researching and without getting the full result i decided to upload new discussion here and maybe some of you guys will help me.thanks in advance.

 

include the file:

<!--Adobe Edge Runtime-->

    <meta http-equiv="X-UA-Compatible" content="IE=Edge">

    <script type="text/javascript" charset="utf-8" src="animate_edgePreload.js"></script>

<!--Adobe Edge Runtime End-->

 

html code:

<div id="Stage" class="EDGE-70798230"></div>    if i put it like this of course everthing works fine..i can put more with different id's and they will work fine...

 

my problem:

i dont know how many of this animation i will need...depends of what my server will give me in the response...so i need to create them dynamically...

i tried lots of things:

$("#newAnimation").append('<div id="Stage2" class="EDGE-70798230"></div>');    of course with this nothing happend...it even dont get the symbols under stage..and not any of the css...

 

$(".EDGE-70798230#Stage").clone().appendTo("#newAnimation");

$("#newAnimation").children('#Stage').prop('id','Stage2');   then mroe css changes and just then i can see the animation but it doesnt work..."play is not defind" when i try to run the animations..

 

i know there is some function that called createChildSymbol/createSymbolChild but none of them work for me...

i use jquery mobile..so to start the animation for example i do $.Edge.symbol.get($("#Stage")).play();

i tried to use the loadResources etc....doesnt work too..

 

anyone have some idea what i can do? it is possible?

Uncaught TypeError: Cannot read property 'getSymbolElement' of undefined

$
0
0

Hi community,

 

I am tryign to build a new project and I've got an error in console log Uncaught TypeError: Cannot read property 'getSymbolElement' of undefined .

 

Does any one why is that?

 

The code is at stage->creationComplete

 

$.getJSON("content.json",

          function(data){

                    for(var a=0; a<2; a++){

                    var b = sym.getSymbol('menu').createChildSymbol("thumbnail", "doorscontet");

                        b.getSymbolElement().css({"background-size":"contain",

                                           "float": "left",

  });

                    b.$("titleholder").html(data[a].title);

                    b.$("imageholder").css({"background-image":"url('"+data[a]. image+"')",

                                                           "background-size":"cover"

                                            });

                    b.$("imageholder").data('myIndex', a);

                    }

                    });

 

 

Thanks in advanced.

Transform Origin not sticking

$
0
0

Every time I enter a value in the Transform>Origin "X" value it does not stick

EA-Origin.jpg

Easy workaround for price blocks

$
0
0

Hello, i want to make a basic pricing in mine animations, like the attachment...

 

So that i can easy change some prices..normally i make a .png with the price in it...but every week i must change this items.

So i thought i make a symbol, like a block with a number...when the price change i edit the block and change the number.

( like the example...3 blocks with numbers.. and 1 with dots and stripe)

But when i import a symbol and change it...all blocks are changing...;-(

 

So i thought i make 1 image with all the numbers in it...and with clipping tool i can change the number by swipe in the range.

 

This works...but for the use of it in several animations, i thought i make a symbol, but then again, everything change in the same number...

 

Anybody a suggestion what maybe the best to do??

 

It's major for the price in the blocks..but maybe i also want to create it for the "before"price...and i have to make them for 4 different languages..

 

Thanks anyway, marcel

Schermafdruk 2014-09-09 11.30.22.jpg

svg transform doesn't work

$
0
0

Hello, I have a simple animation projectwhere I createansvgelementwith the libraryd3.js.


Firefox is ok but Safari andChromeignore the transform attribute (translate, rotate, etc ...).


The same attribute works fine with any of them if I create the svg element in one div outside the animation div.


Any idea?


 

Viewing all 9897 articles
Browse latest View live


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