Quantcast
Channel: Adobe Community : Discussion List - Edge Animate
Viewing all 10172 articles
Browse latest View live

White frame at head of animation in Edge

$
0
0

Hi there

 

I have a white frame flash at the head of the animation in edge appearing in Safari and Chrome but not in firefox(that I can see).

 

http://www.productionangels.com/aom/

 

any suggesions as to how I might get rid of it.

 

The background for the entire animation is transparent.

 

The oam file was placed in Muse.

 

Any help would be most appreciated

 

ciao

 

Cathy


Creating clear stage and turning white

$
0
0

When I turn the stage to clear mean seethrew and publish to Muse and when I go to publish it and Safari launches there is a brief flash of the box when it comes down the screen.

 

 

What am I doing wrong?

 

 

Thanks,

 

joe

Pixelated text or Anti-aliasing

Adobe Edge animation in fancybox iframe

$
0
0

Hi together,

 

I'm trying to integrate an Adobe Edge animation in a Fancybox iframe. It works so far... BUT on scaling the viewport down a white border on the bottom appears.

 

 

(https://dl.dropboxusercontent.com/u/13655174/Screenshot%20-%2026.11.20 13%20%2C%2021_06_52.png)

 

 

I know this problem is an effect of calling the whole Edge HTML-Page, i just dont know how to fix this issue.

 

 

I used this script in Adobe Edge:

 

 

http://sarahjustine.com/2013/04/08/create-scale-to-fit-projects-with-a dobe-edge-animate/

 

 

Thats my code:

 

 

jQuery:

 

 

$(".fancybox_iframe").fancybox({

     type: 'iframe',

     width : '960px',

     height : '731px',

     scrolling: 'no',

     fitToView: true,

     iframe: {

     preload: false,

      },

     padding : 0,

     margin : 40,

     nextEffect : 'none',

     prevEffect : 'none',

     openEffect : 'fade',

     autoCenter : true

});

 

 

HTML:

 

 

<div class="col-lg-4 col-sm-6 col-xs-12">

     <a class="fancybox_iframe"  alt="" rel="gallery" href="sevenm.html">

     <div id="sevenm"><img src="img/works/thumbs/thumb_sevenm.jpg" class="thumbnail img-responsive">

     </div> </a>

</div>

 

 

Thank you!

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

SEO in EDGE

$
0
0

Hey there,

 

Is there a way for SEO our edge website for google ?

How I choose a specific font?

$
0
0

I have only just started using Edge on occasion so don't berate me if this is really obvious but how do I choose a specific font to use?

 

When I add a font it lists it as a font family e.g. "Georgia, Times New Roman, serif" and it automatically sets it to a specific font and I can't select the font I want. This is also an issue with web fonts where it uses the system font rather than my custom web font. I'm trying to use a cursive type of font. I had the same issue when using Dreamweaver but Photoshop does not work this way.

 

What do I do? Thanks

Problems in iPhone 4s and iPad 2 explorers.

$
0
0
Are they a known issue?

 

Regards

 



Help!

$
0
0

Does anyone know why, when I import an SVG file into an Edge project that some of it goes missing? but then when previewing in specific browsers they will either re appear or just stay non existant?

¿cómo se puede insertar un banner hecho con Edge Animate en Joomla?

$
0
0

Un cliente me ha pasado una carpeta con un banner hecho en Adobe Edge, con su html y archivos .js...  ¿como puedo colocar ese banner en Joomla?

JavaScriptError: TypeError: a.replace is not a function

$
0
0

I have an error in edge.2.0.1.min.js: Line 135

Firebug tell me:

TypeError: a.replace is not a function

...rn String(c).toUpperCase()})}(c),d(this).each(function(){l=d.data(this," css_cach...

 

I have no Idea, whats going wrong.

if background-color

$
0
0

Hello together,

 

as allway it sounds simple, but when I want to realize it, it is difficult for me.

 

 

On my stage there are four buttons and one red circle (named "circle").

 

 

when i click the first button the color from the circle should change its color

 

to blue in a one-second-transition.

 

 

If I click the second button the transition should go to orange

 

 

the third to violet

 

and the fourth to green.

 

All colors whit specific rgb-values.

 

Normaly it is a perfect way to do it in the timeline

 

but in this case it is not linear, whith the buttons there are to many oportunities.

 

 

 

So i think it has to go like more or less like:

 

 

 

if
(



sym.getComposition()




.getStage()




.getSymbol("circle")







)

 

else....

 

First of all, I dont know if it is possile to get the color of an circle-element

 

an if so, how to ask for it?

 

And second how to add specific rgb or Hex values? like css..

 

And at last is this the whright path to solve this problem, like I said if... else....

 

Or is there another simple way to do it?

 

 

any help would be great.

 

 

THX

 

Oliver

Symbol with JSON Child Symbol to displayed in another symbol as child

$
0
0

Hi,

 

I have Symbol "bases". Inside I have 3 static pictures as buttons to handle the 3 contents with dynamic data.

 

 

$.getJSON("base1.json",

          function(data){

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

                    var ss = sym.getSymbol("bases").createChildSymbol("templatebases", "content1");

.......

 

 

again I create

 

$.getJSON("base2.json",

          function(data){

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

                    var ss = sym.getSymbol("bases").createChildSymbol("templatebases", "content2");

.......

 

$.getJSON("base3.json",

          function(data){

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

                    var ss = sym.getSymbol("bases").createChildSymbol("templatebases", "content3");

.......

 

When the composition runs the 3 pics appear and with hide and show function I can switch between the contents.

 

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

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

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

sym.$("content3").show();

 

 

 

Everything is fine as standalone symbol.

 

 

Now, I want the symbol "bases" to insert it as child on another symbol "recta", and display the contents.

 

var bas = sym.getSymbol("recta").createChildSymbol("bases", "basescontent");

 

It doesn'r work very well.

It display the 3 button pictures and when I click the button, it hides the buttons but doesn't show the specific content, eg, content3.

 

 

 

Could you help me?

 

Thanks you!

edge animations dissapear on windows IE 11

$
0
0

Microsoft says Adobe products are not up to date with modern browsers.

Linking to an If Statement with Hash Location Problem

$
0
0

Hi Everyone!

 

We have a project with multiple pages that we’ve developed in Edge Animate. The site is nearly complete and will go live tomorrow. You can see it as it is now at www.edgewaterharbornj.com/dforum. I have also created a simple version with just the 2 pages we have trouble with, and posted it in my Dropbox. You can download the native files here:

 

https://dl.dropboxusercontent.com/u/60666794/publish_LifeDev.zip

 

We have a problem with one of our links between two of the pages.

1) When the user can clicks on the area under the logo on the home page, he should go to the 4th picture (restaurant at night), with the 4th button activated. Instead, they sometimes go to the 1st picture (river in the sun), with the 4th button activated. This sometimes works and sometime fails, especially in Firefox.

2)They can also click on the LIFESTYLE button in the top nav, which takes them to the 1st picture (river in the sun) with the 1st button activated, which always works.

 

Code explanation:

 

We’re using a hash link and an “if” statement to differentiate between clicking the LIFESTYLE button in the top nav and clicking the area under the logo on the home page.

 

Our hash link out of page 1:

window.open("life_simple.html#photo_mask", "_self");

 

Our if statement (in Stage/creationComplete) in page 2 that manages scrolling a group of images:

 

 

if(location.hash) {

 

sym.getComposition().getStage().$("photo_mask").animate({scrollTop:267 0},750);

}

 

We have another if statement in page 2 Stage/compositionReady to manage the button states:

 

 

if(location.hash) {

 

sym.activeBtn="but_4";

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

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

sym.getComposition().getStage().getSym("but_1").stop("onHover");

}

else {

sym.activeBtn="but_1";

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

}

 

I hope all this makes sense!


Help: Advanced

$
0
0

Hi, I am looking for some expert help with a second release of this desktop + tablet (not mobile) Edge Animate project (1st release is complete and has gone public).

 

http://www.bluelagooncruises.com/competition-de/  (finishes 29th Nov)

 

or on my staging playform http://whakarongo.com/competition-nz/  (the competition ends any day so use this link as backup)

 

 

It has launched in Germany, Australia and New Zealand.  However after launch we discovered three critical bugs that are right now beyond my ability to fix and I need to get them fixed before we launch other countries.

 

 

BUG 1. Loading: sometimes it took 'forever' to load.  I was wondering how I could redevelop it so that the loading time would be quicker?  My current idea is to make each page in the quiz an individual HTML page (my thoery is that loading takes so long because of all the background images and animations?). Or is there something we can do within the edge files?

 

BUG 2. The quiz buttons sometimes go to rollover state on first load (ie instead of being orange they are green, we need them to be orange always), is this something in my edge compositions?

 

BUG 3. The right hand panel including text and the quiz does not fit proportionally onscreen.  I want it to centre into the right hand half of the screen both veertically and horizontally.  Right now it is pinned to the top right corner and on bigger resolutions the page looks unbalanced.   The smallest height we are developing for is 590pixels high but the largest height can be 1024px (iPad portrait)

 

 

Im not fluent in javascript and find some of the edge commons stuff just a bit out of my reach. SO I am looking for someone who has some experience and ideas with that stuff.

 

I realise this may take some time. I have a small budget to help with a full audit, redesign recommendations and possible code fixes. and would appreciate if you are interested please touch base on email. My name Kingi Gilbert, email is Kingi@ignitestudios.org. I am based in Hawaii and working on Skype mainly.  Please email me if you would like to work on this directly, or please do feel free to comment away on this forum. 

 

Otherwise I am happy to upload the folders and files so can get any suggestions.Its about a 12mb install file.

 

The full development package is 22mb and includes a MUSE file.

 

Kindest,

Kingi

Get the ID of the clicked Symbol

$
0
0

Problem: When Menu buttons Clicked I want to get the ID of the Clicked symbol (by ID i mean the name i input in the title box on top left corner for each symbol ).

 

Failed Attempt:

//finding buttons by their Class "btn"

$('.btn').click(function(){

window.location = "http:/"+ sym.lookupSelector(this) +".html"

});

undefined

 

 

I have tried this.getSymbolElement().attr('id')

Uncaught TypeError: Object #<HTMLDivElement> has no method 'getSymbolElement'

 

Confusion: What confuses me here is that (THIS) refers to a DIV element. while i was expecting a symbol Object. i think it is hard for me to understand the relationship between DIV & Symbol coming from flash background where symbols were the only object creatures to deal with. In some other areas i am having trouble scaling and etc too, targeting the div instead of the symbol i want.

 

Example: Like  [ event.target.name ] in ActionScript, i want to detect the name of the symbol who listened to Click event.

No jump

$
0
0

Hello, I am new to Adobe Edge Animate. I have made a menu-animation with a 'compass' that rotates on mouseover on 4 separate symbols (buttons) around it. The compass jumps immediately to the button (label) on mouseover, but I would like the compass to play the timeline (rotate slowly) and lighten up the buttons in between.

Is that possible? And how do I do that?

This is the action I used:

sym.play();

sym.stop("pos3");

 

On mouseout (sym.playReverse();) it works fine.

Presets for responsive layout

$
0
0

Hi there,

 

I was doing a tutorial and when arrives the moment to use the presets for responsive layout, the guy on the tutorial has 6 presets and I only have one...

 

edge.jpg

 

Does anyone know how can I get those presets?

 

Thanks!

access function

$
0
0

How can I access a function (function myFunction(){...}) that I have in the 'actions' on Stage, from a click event actions of one of the buttons? Thank you!

Viewing all 10172 articles
Browse latest View live




Latest Images