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

Problem with svg, edge commons on Chrome/iOs8

$
0
0

Hello

 

I need some help about edge animations.

 

I have created web apps with edge animate, edge commons js library and svg files.

 

Everything worked fine except when I recently used Chrome and new released iOs8. It is OK for desktop versions or mobile versions with Chrome/iOs7 or Safari/iOs8 but not for Chrome/iOs8! And I do not know why.

 

The problem is that my animation is displayed but when composition is ready, svg images disappear (actually i think they do not disappear but they are scaled very small so you can't see it anymore). This issue can be seen on edgedocks website because I have the same problem when I want to try edge docks market animation. SVG disappear after loading.

 

Does someone have the same problem?

Do you have a solution or workaround that could help me.

 

Thank you

 

Olivier


drag and drop in Edge Animate (was: drag and drop)

$
0
0

hello friends

 

 

I have a drag and drop on edge,

I need that when you release the ad in the wrong place, my return to the starting point

viewport problem in Edge Animate (was: viewport problem)

$
0
0

Hello, I am working on a web site, and I have to make it work on mobile device.

Currently I am testing on a Microsoft Surface 1 / internet explorer 11 and my problem is that each time I touch the screen to have an action in my web site, the all screen move.

I read different think about Viewport, but I don't have any result to fix the screen, is anyone have a solution for that ?

thanks

click action wont work in Edge Animate

$
0
0

I dont know why but my click action wont work with my button. Any help is appreciated.

 

/***********************

* Adobe Edge Animate Composition Actions

*

* Edit this file with caution, being careful to preserve

* function signatures and comments starting with 'Edge' to maintain the

* ability to interact with these actions from within Adobe Edge Animate

*

***********************/

(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, "${_button}", "click", function(sym, e) {

         // insert code for mouse click here

         // Navigate to a new URL in the current window

         // (replace "_self" with appropriate target attribute)

         window.open("http://www.sunbgi.com/thesundifference.html", "_self");

       

       

 

 

      });

      //Edge binding end

 

 

   })("stage");

   //Edge symbol end:'stage'

 

 

})(jQuery, AdobeEdge, "EDGE-711263155");

How do I target the main timeline from a nested symbol

$
0
0

Is it the same as targeting a nested timelinf for example:

 

sym.getComposition().getStage().stop("lable");

Working With Edge Animate and Business Catalyst

$
0
0

Does anyone work with a site with incorporates Edge Animations that is hosted on Business Catalyst?  I am asking because my Edge animations run fine on my page on preview in browser but do not run at all when uploaded to BC.  Here is my script:

 

Edge_Script.jpg

 

Thank you.

Edge Animate pushing lower DIVs down on page.

$
0
0

Hello.

When I make my Edge Animate animation responsive, (and placed in dreamweaver) when looking in a browser it pushes all the divs under it down the page, leaving an unsightly gap underneath. As I scale the page down, the gap in between my animation and lower divs becomes further pronounced making the page unsightly and unfortunately I cannot use the animation. It happens when I have an animation where the width is like 960 pixels and height around 300 pixels. I have followed all of the steps correctly. I have tried all sorts of work arounds with no success.

It has been quite some time since I first run into this problem. In which time I have had to pluck some of the lovely flowers I had created for my site, due to this very frustrating problem. I am about to start a new site and I am hoping for the love of god that someone has found a solution to this very very frustrating problem. Apart from this I find Edge Animate to be a fantastic program. I have seen many other people who are having the same problem with no solution at hand. Thanks for your time, I hope to hear an answer from someone soon

Is it possible to place an Adobe Edge Animate animation into an Interactive PDF?

$
0
0

Hello all,

 

I asked this question in the InDesign community and am asking it here to cover all bases...

Is it possible to place an Adobe Edge Animate animation into an Interactive PDF? 


Adobe Edge Animate and InDesign seems to be a mystery in this sense for me.  It would seem as if this should be possible as long as the PDF is accessed via the web, but I have not been able to find anything on this.  Thanks for any insight you can provide.


pausing on a Edge Animate timeline

$
0
0

You can sym.stop(); on a timeline but can you puase for a few seconds and then strart plaing again.   This is totaly wrong but In leymans terms it would be great to be something like this

sym.pause(3000);

Since CC (2014) update SVG assets dragging in at 900%

$
0
0

My assets SVG files are coming/dragging in at 10% not 100% and when I change to 100% it's Huge (almost 900%)

  1. Original SVG assets showing at large size (I have not touched it)
  2. I checked my SVG files in Illustrator and they are at the right size

AE-Size_02.jpg

AE-Size_03.jpg

How do I make a symbol user-resizable?

$
0
0

Is there a way that I can make any symbol user-resizable so that handles will appear on an object and allow the user to resize an object dynamically?  Curiously, calling the jQuery .draggable() function allows you to make any object draggable, but calling the .resizable() function seems to have no effect at all.  Has anybody else tried this?

Edge animations not working on godaddy

$
0
0

None of my edge animations work on Godaddy. When I upload them to Godaddy they don't work. Does anyone know why?

Unable to download Edge Animate trial version (was: No puedo descargar la versión de prueba)

$
0
0

No puedo descargar la versión de prueba, dice (Se están produciendo algunos problemas; inténtelo de nuevo más tarde. Si el problema continúa, póngase en contacto con Asistencia al cliente.) pero aún así, no me deja descargarlo, después del tiempo de espera

Loading videos dynamically - how to integrate data from json file into video placeholder at Stage

$
0
0

Hi!


Working on a website where I want to display a larger selection of videos. Found a tutorial wtih a great script for loading content dynamically from a json file;

 

$.getJSON("data/press.json", function(data)

         {

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

             {

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

                      s.$("photo").css({"background-image":"url('"+data[i].image+"')"});

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

                      s.$("headtext").html(data[i].headtext);

                      s.getSymbolElement().css({"position":"absolute",

                      "left" : "50px",

                      "top" : i*200+50+"px"});

           }

 
The content in json file looks like this,


[

{

  "image" : "images/poster_.jpg",

  "title" : "my test",

   "date" : "my date",

  "headtext" : "my main text",

  "video" : "http://www....."

},

]

 


Unfortunately there is nothing about video in the script above.

 

Does anyone know how I can,


1/ pick the data from my variable "video" in my json file (guess the script needs a line like:    s.$("video").html(data[i].video);     or something)

 

2/ dynamically put into my video placeholder where my show video script is,

-----

var youtube = $("<iFrame/>");

var url = "https://www.youtube.com.....;"


sym.$("video").append(youtube);

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

youtube.attr('width','640');

youtube.attr('height','360');

youtube.attr('src',url);

-------

 

Most greatful for all kind of advice

 

Best regards

Bengt, informel.se

How to copy animations to other objects without messing up the start position?

$
0
0

When I have an animation on one object (let's say move from left of the screen to the right), and I want to copy paste this animation to other objects, how do I do that?

 

If I copy the animation and paste this on the other objects, they will end in the position where I would like to them to start.

Placing them on their final position will not give the results I would like to have either. Only when I put all changes (e.g. rotation, scaling, etc), it will work.

 

Is there a quicker way to do this?

 

Thanks!

question.jpg


Does anybody know, how to make an element, that is only visual?

$
0
0

Hi

 

I am working on this timeline;

http://torbenvf.dk//ledelsehelehistorien/web/

(don't mind the look of it:) it's not fully grown)

 

I want to have the grey elipse on top of the years, and still be able to move the timeline.

 

I was wondering if anybody knew a way to do that?

 

Kind regards
Torben

Edege animate: Parallax and Spotlight = Not working together?...

$
0
0

Hi all,

 

This is my first post, and sorry for my English :))

 

I am learning, and have a small composition on Edge Animate CC 2014 on Scrolling Parallax, which works very well, and now I want to add a spotlight... but do not working together.

 

My code is:

 

Stage: 1920 x 2000

Autoplay: No

 

 

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

 

-- creationComplete: (nothing)

 

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

 

-- compositionReady:

 

EC.Parallax.setup(sym);

 

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

 

On scene:

 

A Text (is for launch the spotlight with the click function):

 

Action for "Text":

 

-- click

 

// Open image in spotlight overlay

// Set up configuration


var config = {

width: "1024",

height: "768",

type: "image",

source: "images/dog.jpg"

}

 

EC.Spotlight.open( config );

 

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

 

My problem is that the parallax works great, but when I make a click on the button that showing the spotlight... this is not released, and "dog.jpg" picture it is show on the bottom of the page (without spotlight).

 

What am I doing wrong?

 

Note: Ichargeviaurl the "All in One" of EdgeCommons CDN : http://cdn.edgecommons.org/an/1.1.2/js/min/EdgeCommons.js

 

Many thanks!

SVG files now showing up once uploaded to Godaddy Windows server

$
0
0

I'm having an issue with my edge project.  Everything works fine locally but when I upload it to my Godaddy Windows hosting account, the SVG Files do not show up, black background is there from project but no graphics.  You can move your mouse around and see that the "links" are there because it shows the "hand" when you scroll over a hot spot and the links work....

 

here is the project address....  http://www.reddirtmedia.com/usgcity/USG_City.html

 

Godaddy says that the MIME type for svg files is on the server already.

keydown event

$
0
0

I want use the keydown event and I used this syntax which works fine:

 

$(document).on("keydown", function(e){

  if (e.which == 32) {

          alert("something");

         }

})

 

But I wonder why this syntax does not work:

 

$("#Stage").on("keydown", function(e){

  if (e.which == 32) {

          alert("something");

         }

})

 

Thanks.

Embed content with responsive scaling not showing animation at correct size

$
0
0

Hi,

 

I have an animation that has responsive scaling set to height.

I take the div container generated by EA and insert in my page as following:

 

<div  style="height:100%;width:100%;">

  <div id="StagePoliceLineDoNotCross" class="PoliceLineDoNotCross"  >

  </div>

</div>

 

What I see is a small thumbnail sized animation. If I don't have responsive scaling enabled then the animation is shown using its correct size.

What I noticed there are two nested divs with classes flow-wrapper and centre-wrapper created after the first div. Not sure if this is the problem.

 

Any ideas how to get responsive scaling working above? I tried removed the first style above and I still got the same issue (note my first div is embedded in other divs)

Viewing all 9897 articles
Browse latest View live