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

Can I have a web overlay in Edge?

$
0
0

I am building a composition in Edge Animate, which will eventually be published as an app through Phonegap.

 

One feature that I would like to add is a page which has a live link to a webpage, so that users of the app with an internet connection can view this web page.

 

Is is possible to create a full screen web overlay in Edge that automatically plays when the user gets to that point in the app (rather than them clicking a link that opens in the same window)?

 

Thanks


crashes when deleting keyframe!

$
0
0

my old project from the previous version crashes when i delete a keyframe also i can't directly delete the transitions. so much bugs

line-height problem in publishing after update!

$
0
0

This was how it looked before the update.

ZEHSPfu.png

 

This is how it look now.

hG6wWh7.png

same line-height value. but it only happens when i publish it when i view it locally there's no problem.

Animate Update 2014.1 - All sounds play together in upgraded project

$
0
0

Upgraded projects show a few issues but Im determined to sort them all. One that has me puzzled is why all sound files play together at the start of the timeline as well as playing when triggered.

Animation doens't appear…except if you reload the page

$
0
0

Here is the situation : I have an AOM animation imported in Muse. In the Muse page I have some parallax effects (horizontal effects).

To be a the right place at the right moment, the oam file must be placed inside a group (layers panel).

But the problem is : when the animation is inside this group, it doesn't appear anymore in the navigator… except if you reload the page. This happens on all the navigators tested (firefox explorer chrome opera) but works on Safari.

If I extract the animation of the group, it works (the animation is visible in a navigator) but because of the scroll effects the animation is completely outside the place I want it to be (and i don't succeed to place it well)

To understand the problem you can have a look here (website not finished)

http://studionikotest.businesscatalyst.com/

You have to go the third icon called "graphisme" ... to see..hmmm... an empty place... and then reload the page to see what should be there at the very first time.

 

If you have any idea how to turn around this bug.

Niko

Does my animation have to be timeline-dependent?

$
0
0

When a user clicks on the menu button, I want a sidebar to animate in, then animate back out again when the button is clicked again. That's straight forward and I can do that.

 

Once I have completed this, is there any way to consolidate the action and animation so that it is no longer dependent on the timeline?

 

Basically, I have a large Edge project with a lot of elements that are visible and invisible and different parts of the timeline. I effectively want the Menu button and sidebar to be ever present, and not messing up the timing of the rest of the project.

 

Thanks

Keyframing zIndex location in Edge Animate

$
0
0

Is there a way to keyframe zIndex locations in Edge Animate?

object is not a function(error)

$
0
0

hello,

I got "Uncaught error: object is not a function in ...../../animat_edgePreload.js in line 37.

 

in line 37 i see there is a function with the name isDocLoaded.

 

how to solve this problem? it's somethimes cause another problems with the animation and somthines not. so need to solve it.

 

Thanks,

Niv.


Is there an animation call-back in Edge Animate?

$
0
0

Hi,

 

I'm using a setTimeout() function to temporarily disable clicks while an animation finishes playing.

 

But it feels like a bit of a hack, and I wondered if there was an event that triggers at the end of an animation that I could use instead?

 

Thanks!

 

Ben

oam autoplay trigger from muse does not work with the latest update

$
0
0

As the title says this happened today when i updated from muse an oam with some changes i made. Oam never plays on preview, it only plays if make it "autoplay" from edge.

Can someone help me out?

 

Thanks,.

Publishing no longer works in latest Edge

$
0
0

Publish seems to not be working in this latest Edge.

 

All of our projects published using the latest version get stuck on the preloader. Not sure why but yesterday everything published fine. Today under the new Edge all of our files get stuck in the preload stage. I will add that we're getting many other bugs. Edge is letting us there's errors and needs to quite. Opening a new project shows the project as open but doesn't actually show the project itself. Lots of bugs!

bindTriggerAction Post Update (10/7/14)

$
0
0

Before updating to the new Edge version, I would systematically go through the various labels and add timeline based triggers via:

if (sym.timelines["Default Timeline"].labels) {    $.each(sym.timelines["Default Timeline"].labels, $.proxy(function(label, pos) {        if (label.indexOf("trigger_") === 0) {            modified = true;            modFunc = $.proxy(function() {                this.trigger({                    name: "symbolEvent",                    label: label.substr(8)                });            }, this);            modSym.bindings.push(modFunc);            AdobeEdge.Symbol.bindTriggerAction(GPA.compId, sym.options.data.typeName, "Default Timeline", pos, modFunc);        }    }, this));
}

 

The new way of doing this is nearly identical, yet somehow fails to bind all but the last of requested bindings:

var symLabels = sym.data[symName].timeline.labels,    modSym = {        bindings: [],        sym: sym    },    modified = false,    i, listLength, label, modFunc,    subSyms = sym.ci;


if (symLabels) {
    $.each(symLabels, $.proxy(function(label, pos) {        if (label.indexOf("trigger_") === 0) {            modified = true;            modFunc = $.proxy(function() {                this.trigger({                    name: "symbolEvent",                    label: label.substr(8)                });            }, this);            modSym.bindings.push(modFunc);            AdobeEdge.Symbol.bindTriggerAction(GPA.compId, symName, "Default Timeline", pos, modFunc);        }    }, this));
}

 

The results should be the same, but none of the bindings seem to fire, and worse, any bindings put on via the timeline in Edge seem to be removed entirely.

Is it possible to downgrade to Edge CC 2014?

$
0
0

There are a lot of errors, blocks and reboots with version 2014.1 CC

I updated one work done with the 2014 version but continues to crash.

And I have to work with Edge.

I can not wait until Adobe solves all problems!

So I can go back to version 2014 CC ???

Scripts don´t works since last update

$
0
0

Hi. Since I updated Edge Animate last Monday (2014.1) I need load jQuery library manually to work with scripts, this is a bug? The´re some solution?

 

Thanks.

drag-and-drop utility for Edge Animate(only x-axis)

$
0
0

KONBANWA from Japan.

 

I create the drag-and-drop utility for Edge Animate(only x-axis ). here.

http://ciruelo.jp/js/edge/dd/DandD.html

 

If you want to test.

 

1. copy all of code on DandD.html-stage-creationComplete to your edge file-stage-creationComplete.

2. use "draggableX()" method, like that.

//drag element "rect"
sym.$("rect").draggableX();

//drag element "dog", limited range
sym.$("dog").draggableX({minX:100,maxX:300});

//drag nested element "seekBarPointer", limited range
sym.$("seekBarPointer").draggableX({minX:0,maxX:160});

//drag element "pic" class, and scroll target element $("carouselBase"), click to rotate.
$(".pic").draggableX({
     target:sym.$("carouselBase"),     onclick:function(e){       $(e.target).css({            "-moz-transform":"rotate(-45deg)",          "-webkit-transform":"rotate(-45deg)",          "-o-transform":"rotate(-45deg)",          "-ms-transform":"rotate(-45deg)"       });     }
});

 

Maybe, moving on iPad

 

BTW, I want such a function on Edge Animate.

If I can be, without having to write a script.

Only use a panel like "Drag and Drop panel" ,  "Carousele panel" etc..

 

Thanks in advance. adobe team.

 

Ume.


Video not playing

$
0
0

Hey,

 

i placed a video in edge animate, but if i preview it in the browser (safari, 7.0.6), first: it takes forever to load

and second: it is not playing..

 

Do you have an answer for this problem?

 

Thank you!

Thankyou Adobe for fixing responsive design problem!

$
0
0

Hi just wanted to say thank you to Adobe for addressing the responsive scaling problem in Edge Animate (the one with

pushing lower divs down in Dreamweaver). So thank you! This problem was seriously messing with my head. I am

starting a new site and with the new fix it will be awesome, so thanks

How do I simulate audio autoplay in IOS devices?

$
0
0

I have a problem with audio on the iPad/iPhone IOS. Using Edge Animate, My site works well on a desktop browser -- the goal is to have audio play when the site is viewable -- sort of an "autoplay." I don't want the user to have to press a button to start the audio. Knowing that autoplay is non-functional in IOS, I disabled it and place an ACTION on the timelime at 0.1 second to play the audio. It works fine on the desktop browsers.

 

BUT, this, too, does not work on IOS. I thought a PLAY action on the timeline would start the audio in IOS -- but, it doesn't. What am I doing wrong? Please.

How do I get animation to play on movement of scrollwheel? (regardless of whether the page actually scrolls)

$
0
0

I've tried calling sym.play() in my scroll event but that doesn't do the trick. I don't want the page to scroll, I just want to play my animation whenever the user flicks the scrollwheel on the mouse. And preferably I would be able to do different actions depending on whether the scroll is up or down. Is this possible?

Adobe Edge Runtime conflicting with Wordpress menu

$
0
0

I finally managed to manually insert an Adobe Edge animation thanks to vivekuma and also by following this article. It seems I needed to change several paths in edgePreload.js and edge.js.

 

I am however facing a new problem... I created both a page and a header templates to load from the page so I can insert the <!--Adobe Edge Runtime--> content in the page with the animation only. I pasted the code just between <?php wp_head(); ?> and </head> tags. This loads the animation correctly, BUT it breaks the site's menu (it has a jquery effect) and a slideshow.

 

Is there a better way to run this script or to find out what's causing the conflict?

Viewing all 9897 articles
Browse latest View live


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