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

Serving a banner ad created in Edge Animate in Google DFP with click tracking

$
0
0

In an attempt to move away from flash I have designed several banner ads in Edge Animate. I really like the program and had an easy time adapting to it, but now that I have a couple of ads designed I cannot find a good way to serve them. We use Google DFP to serve our ads, and I had success getting them to display with iframes while hosting on a separate server. The issue is that there is no way for DFP to track clicks on an ad served through an iframe. I have scoured the web for a solution, but haven't found anything other than suggestions to host through a third party CDN or to convert the edge file into Google's new html5 studio, which I do not want to do at this point.

I would appreciate any ideas, thanks!


Contact form problem

$
0
0

Hello Adobe Forums people!!! I have a "quick" question about Contact forms, so I have been reading this post Email form in edge? and everything works really cool, the message, the submit button the forms, I have tried it with less forms too.

 

So I made the php file send to my email the form to test it out and for some reason every time I send a form from the website I'm testing it always send me 2 mails of the same form, same names, mails, messages...I'm pretty new on Edge and I have been trying to find something to avoid/prevent to send 2 mails of the same form.

 

Also on some lines

//sym.$("#Email").detach();

//sym.$("#Firstname").detach();

//sym.$("#Lastname").detach();

//sym.$("#Telephone").detach();

//sym.$("#City").detach();

//sym.$("#Country").detach();

//sym.$("#Message").detach();

 

If these lines have "//" (which turn it into a comment) it won't disappear what I wrote on the Contact Form but if I took it off it disappear which is what I want but after send the mail the Contact From area it's not working anymore, I cannot write anything else and I have to refresh the website which I guess my client won't want, so is there any option to fix this? Clear the form after send it and don't "lock" the writing option?

 

Thank you very much

Aldo Quiroz

Why is my button width 1?

$
0
0

Ok I'm officially confused.

 

Why is the width of my button 1 and height 28 (when it should be  237 x 51)? It seems to be interfering with multiple buttons I have in my other animations.

 

Here's the button...

 

http://twistedpancreas.com/edge/misc/btnRollover.zip

 

Can I change it to the actual size that it should be, because when I try it scales the button way too long?

 

Thanks in advance.

Transform Origin is forced to 0,0 when using 'Responsive Scaling' in mobile Safari and Chrome

$
0
0

When I create, say, a 3D carousel I naturally want my transform origin to be in the centre (so it rotates on the Y axis in a circular motion).

 

However when I check 'Responsive Scaling' in EA I'm finding that the Chrome and Safari browsers on my Nexus and iPads are forcing either the Stage's or the wrapper container's transform origin to 0,0 which, whilst this can create an interesting effect, is not what I want. I can force it to be 50%, 50% momentarily but it's quickly reset to 0, 0.

 

Is this a bug in EA or mobile webkit browsers?

 

For your reference

 

Correct 3D transform origin:

http://gannon.tv/screenshots/correct_3d.png

 

Incorrect 3D transform origin:

http://gannon.tv/screenshots/incorrect_3d.png

Elements twitching in Firefox when setting stage to responsive scaling

$
0
0

I ran into a problem the other day on my first Edge Animate project.

 

Here is a simplified version of my animation that should help explain it.

 

Test

 

I have a map with about a dozen of "objects", which consist of an icon and a text label each (combined into a symbol for easier handling),

At the end of the animation, one object is set to bounce indefinetly by using a sim.play("marker"); trigger.

 

Inline previews in Edge Animate look fine, but when using the browser preview, icons and text labels start to twitch randomly by 1-2 pixels –

if the stage properties are set to "Responsive scaling".

You may need to resize the browser window to see the effect.

In my original file with 12 objects, at least 3-4 are twitching at any time.

As far as I can tell, only Firefox is affected (Mac and Windows).


I checked the symbols, there are no animation keyframes inside them.

When the browser window is resized, the twitching objects and the direction of the effect change randomly as well.

The twitch is synched to the bounce loop (but also noticeable sometimes when the animation starts and before reaching the loop trigger).

 

Is there something I can do on my end to fix this or is this plainly a bug in connection with the Firefox rendering engine?

Thanks for your feedback.

 

Here's a zip with all the files from my example animation.

https://dl.dropboxusercontent.com/u/3982876/edge/Edge_twitch.zip

Problème lors d'une mise à jour

$
0
0

J'ai un problème de mise à jour.

Adobe m'envoie 2 mises à jour et la deuxième , j'ai eu ce message : ERREUR: DW028: InstallOperationsQueue: ensemble d'instructions est vide

Que faut-il faire?

Merci

Animate lags on Retina MacBook Pro

$
0
0

I got a new MacBook Pro, and Animate seems to really lag when scrolling through the timeline. I didn't have this issue on my old laptop. Is anyone else having this issue? Is there a way to fix it?

Hi Edge community, How can I set a custom colors


Drag and drop counter which activates a animation when certain number is reached

$
0
0

     Hi there guys, I was wondering if anyone could help me with this problem, I'm using adobe edge to create a drag and drop game and I want edge to use a counter to track how many draggable parts have been dropped in their repective targets, when a certin number of elements have been dropped I would like edge to automaticly reveal a button so the user can move on. I have the code and I think I may be on the right track but I may be miss placing some code

 

Any help woud be great

 

   // insert code to be run when the symbol is created here

         yepnope({nope:['jquery-ui-1.10.4.custom.min.js', 'http://code.jquery.com/jquery-1.11.0.js'], complete: init});

        

        

        

         function init(){

                   //Use the code! Draggable! Droppable!!

                   sym.$('Leftpole3').draggable({opacity:.5, revert:'invalid'});

        

                   sym.$('Leftpole2').draggable({opacity:.5, revert:'invalid'});

        

                   sym.$('Leftpole1').draggable({opacity:.5, revert:'invalid'});

        

        

                   //Droppable

                   sym.$('Leftpole3target').droppable({

                             accept:sym.$("Leftpole3"),

                             drop: function () { 

                                                  sym.setvarible("count", count + 1)

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

                   }

                   }

         );

 

 

                   sym.$('defaultpole3').droppable({

                             accept:sym.$("Leftpole3"),

                             drop: function () {

 

 

 

 

                   }

                   }

                   );

 

 

 

 

                   sym.$('Leftpole2target').droppable({

                             accept:sym.$("Leftpole2"),

                             drop: function () {

                                                  sym.setvarible("count", count + 1)

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

                   }

                   }

         );

 

 

                   sym.$('defaultpole2').droppable({

                             accept:sym.$("Leftpole2"),

                             drop: function () {

                   }

                   }

                   );

 

 

                   sym.$('Leftpole1target').droppable({

                             accept:sym.$("Leftpole1"),

                             drop: function () {

                                                  sym.setvarible("count", count + 1)

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

                   }

                   }

         );

 

 

                   sym.$('defaultpole1').droppable({

                             accept:sym.$("Leftpole1"),

                             drop: function () {

 

 

         }

         }

         );

 

 

         // Set the value of a Symbol variable

         sym.setVariable("count",0);

 

 

 

 

 

 

         if("count"==3) {

            sym.getSymbol('Text2').play();

 

 

 

 

         }

         }

Edge Animate 2014 Update - A re-install again?

$
0
0

Man oh man adobe... what is going on over there?

 

Is this an error with the creative cloud app or is there a new version of 2014 and I need to un-install the old 2014 and then install the new 2014?

Edge Animate Z Axis

$
0
0

I'm trying to make a pop-up book web site with Edge Animate using pop-up pictures like you would see in a children's book. I need to rotate on the z axis to make the pictures pop up, but I only have options to transform the x and y axis. I can make this animation easily in After Effects, but unfortunately, AE doesn't allow for the interactivity that I'm seeking. At this point, I'm thinking that I'm going to have to do half of it in AE and half in AN. This is going to be frustrating. Any suggestions?

How can I pass a value from inside an Edge composition to the web page where the composition is embedded?

$
0
0

I have a web page which contains an Adobe Edge composition, as well as some other elements. Within the Edge composition, there are several buttons a user can click. I would like to pass some value when a button is clicked, so that my outer web page can identify which button has been clicked.

 

How do I do it? I have seen references to the AdobeEdge.bootstrapCallback function, but I'm not sure how to implement this to get the value(s) I need.

Edge animate not generating css file

$
0
0

All-

 

I've been going through a few online Edge animate tutorials and most of them make reference to editing the exteranl CSS file that Edge generates.  I am unable to find this file.  In fact, the styles are embedded in the html file.  I updated to the latest release of Edge but I can't seem to get the software to generate a css file.  Any ideas.

 

Cheers

I'm having trouble changing the color of text in code.

$
0
0

Hello!

 

I'm having trouble changing the color of text in code when I capture the mouseover event I'm trying to change the color of text using this code:  sym.$("mnuItem-MouseOver").css({"color": rgb(0,0,0)})

 

But without success.  I've tried variations such as enclosing rbg(0,0,0) in quotes, the whole thing in quotes, or using #000000, or rgba(0,0,0,1.00) but, again, without success.

 

Any help or direction would be appreciated.

 

Thank you

 

Robert

self drawing line animation?

$
0
0

I created the original files for this animation (which I hope I can embed/display here). Brief explanation and screenshot if not. It's a Celtic circular design and is made to look like it's a blueprint. The original file is Illustrator; I imported the layers into Flash and erased the lines bit by bit, then reversed the keyframes so it looks like it's drawing itself.

 

Can I do this in Edge Animate? I know I can also easily do this in After Effects as well.

 

Thanks in advance for your help!

 

celtic blueline-ekardell.png

Dang, couldn't embed. I don't have a youtube account...


I have updated Edge Animate and Adobe muse and my animations still don't show

$
0
0

I have gone through all the forums I could find, like this one Re: Internet Explorer 11 doesn't play Edge animation. and my when my client goes to my test link, the animations still don't show on his side. He has tried on two different windows based laptops, and as far as I know he has tried on Chrome and IE. I read somewhere that I could replace the .oam file with inserting the html and including the "publish for web" files, but then I suspect I won't be able to link that to the scroll effects panel in Muse.

 

I have updated both Adobe Muse and Edge Animate, republished my .oam files and re-inserted to my project, exported and made a test live again and still my client says it doesn't show up on his machine. Any advice would be greatly appreciated! Thank you in advance for anyone that can help with this!

CSS changes in document.compositionReady not visible

$
0
0

Hello!

 

I've noticed that if I put some CSS changes in document.compositionReady, they will not appear in the Edge Animation viewport, but they will in the browser.

Is there a way to have those CSS changes being used also by Edge?

 

Cheers!

Alex

Trying to achieve similar masking effect of animated logo on vector graphic

$
0
0

Hi There,

 

 

I am trying to mimic this animation masking style that's has been done for this logo:  Dropbox - Maroondah 2040 Animation.mp4

I would like to apply thismasking style to this graphic in adobe edge so it can pull using in a DPS.

Can anyone assist me in provide first of all is it possible within Edge Animate and if so, any tips, tutorials they might have to achieve this?

 

Engagement-Process_Vertical_static.jpg

 

 

 

 

Thanks in advance,

 

Ray.

Animate deployment package not showing correctly in Muse

$
0
0

When published in Muse, the exported .oam file does not show correctly, as if there is a missing link. Additionally, the animated elements are not showing/moving when published.

Edge Animate itself is not showing any issues when I preview it in a browser, and has no warnings about missing or corrupt links.

 

I have attached a screenshot of the corrupt file, as well as how it should look.

screenshot1.jpgARC834-art06.png

SEO and Edge Animate

$
0
0

Hi guys,

 

Can someone please explain the best way to supply the final documents so they can be crawled? Should I be publishing this so the content appears in the body?

 

I'm a little confused what the best practice should be!!

 

If you have an idea, please advise!

Thanks in advance

Viewing all 9897 articles
Browse latest View live


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