Edge Animate CC :: Multiple Links Within Text?
Jan 16, 2014
I am working on my first Animate project. The project has several screens with short paragraphs of text on each screen. Within several of the paragraphs, I need to set up multiple links rather than linking the entire text box to one URL.
If it can't be done, I can set up transparent boxes with the links to sit on top of the text - not the best way to do this but it seems to work. In that case, is there an easy way to "stop" the link just before the user moves to a different place in the timeline?
View 3 Replies
ADVERTISEMENT
Apr 17, 2014
I have built a slider that includes three different links (one for each slide) that need to open in the parent window. When I apply the Action using Open URL and target the parent window they still open in a new window.
Is there a way to configure the window.open action to target the parent window when an Edge Animate object is placed into an index file?
View 4 Replies
View Related
Oct 7, 2013
I have a logic problem in my code that I need solving,
here's the bit of code which is supposed to set the text, image and link for a symbol used multiple times on the Stage.
var names = ["melz", "brom", "calm", "micj", "mick", "brir", "mato", "brym", "azin", "hugh", "nicl", "bonr", "lisa"];
var name = null;
for(var x = 0; x < names.length; x++){
name = names[x];
var initials = (name[0]+""+name[3]).toUpperCase();
var cursymbol = sym.getSymbol(name);
[Code]...
The text and image code work, however my problem is with setting the link. It always sets all the symbols to the last name in the names[] array. What I want it to do is to set the link to the personalised name in the array. So the HH button will link to hugh.html and the BM button will link to brym.html etc.
For now I'm going to play around a bit and see what happens.
View 1 Replies
View Related
Jul 24, 2013
1. crolling like where you have buttons for example or press on a navigation bar tab, then it goes to that specific pace of the page, for a one page website, for example some sites you press on contacts and gose down to the bottom of the page where the contacts place is located, not opening a new link.
2.Second, navigation bar, where it fallows the scroll as it gose down, like for example when it is html the object is fixed to the top, and when you scroll down it will fallow it it,
3.I need Parallex scrolling where you can have the timeline or animations run while you scroll in the meantime and have animation running all the time, for example the infographic site where the bees are fluying but still have seperate animations while you scroll
4.I would also like to ask if like looping each animations sperately, not looping the whole timeline, can it be possible to loop an animation while you have all the interactivity witht he site like looping seperately all the time, without interfeering with all the other animation
5.I also are wondering if you can create multiple pages on one animate project, like multiple pages with html
I just moved on to edge animate from html, and html was also beirf learn for me and mostly i was doing design work, and i thought getting out of graphic river and moving on the theme forest.
I want also all the five things to work on one aimate project.
View 9 Replies
View Related
May 29, 2013
From the image above you can see that "jquery" loaded twice @ 91kb = 181kbedge 1.5 loaded twice @ 102kb = 204kb aswell as the edge and edge actions files loaded twice and if i boot strap comps together the images are loaded multiple times aswell
View 1 Replies
View Related
Nov 22, 2013
Is it possible to get the text color to FadeIn or the opacity of the text color to animate with the lines of code below? I simply want the color to fade in when the mouse rolls over the text.
Symbol.bindElementAction(compId, symbolName, "${_writing_btn}", "mouseover", function(sym, e) sym.$("writing_btn").css("color","#88ACBE");
});
[Code].....
View 1 Replies
View Related
Dec 17, 2013
So I created my own subscription form, I have it appear and disapear when you are on the button. And when you click on it, it stays. But how can a put in an action to add text to it?
View 5 Replies
View Related
Jan 5, 2013
I am trying to get an animation where the user hovers over one of 13 stars on string. What I am after is when they hover over one it looks like its been knocked and starts to swing for a shot amount of time.This should happen to them all. I have this code but it doesnt want to play!
Mouse Leave:
$(this.lookupSelector("star-1")).playReverse();
Mouse Enter:
$(this.lookupSelector("star-1")).play(0);
When you add more and more stars it just stops working.
View 1 Replies
View Related
Feb 14, 2013
I am wondering how I could control multiple symbols using classes.
So lets say I have 10 symbols on the Stage - each symbol has a class of 'box'
Using this:
sym.getSymbol('.box').play('lower');
only the first box will animate, not the other 9.
View 9 Replies
View Related
Nov 10, 2012
I have embedded multiple edge animations into iBooks and DPS. Howeve I keep running into an issue where one or more animations will not start after i have started another then move on to a different page. When i reload the book or adobe viewer then the animation that would not start runs fine but then others won't run. Individually they all run fine but when embedded together they start stalling out. I'm using edge 1.0 and CS6 indesign and lateset iBooks author. I have a published iBook and I have to tell users to reload ibooks in order to get each animation to run. They are not complex animations.
View 10 Replies
View Related
Jul 2, 2013
i am using this code for rotate multiple compositions, :
[URL]
my questions is is there any way to start my first comp, when it finish , in the same div play vimeo with autoplay and when it finish , start a third composition ?
View 1 Replies
View Related
Feb 13, 2013
I have two elements that need to be hidden:
"mov-imp"
"mov-pim"
Currently, I am doing this:
var arr = ["mov-imp", "mov-pim"];
// This is the onclick function
sym.$.each(arr, function(){
$(this).hide();
}
)
What's the best way to show/hide multiple elements/symbols in AE?
View 2 Replies
View Related
Dec 13, 2013
I have two compositions on a page and I identify them within the AdobeEdge.bootstrapCallback. As soon as the user scrolls to the first animation I want to start it with an external call (compId.play()). If this is the only composition on the page it does work correctly. But as soon as the second one is added to the page it doesn't play at all. If I trigger the first animation via the console (e.g. compId.play(1000)) the animation jumps to the 1000 ms mark but then it stops immediately and doesn't play on.
View 4 Replies
View Related
Jan 10, 2014
just started using Edge Animate. I have some experience with Flash and After Effect so the layout is pretty familiar to me. I have no background in coding so I am very happy that it generates codes for me.
My goal is to make a simple html5 site with links / embedded videos to my contents (500 and vimeo). I copied some codes used for Youtube embedding, sub'd the url with vimeo url, and it worked fine. I used a "play video" button on the main page to trigger loading the video page (see my code below).
It worked great the first time I clicked the button and went to the video page. However, upon returning to the main page, and click the "play video" button again, a duplicate copy of the video is loaded right below the video loaded upon first click. This occurs for as many times as I click the play video button.
View 3 Replies
View Related
Mar 3, 2013
I have created my Animation:
The stage size you see above is H: 400px, W: 550px.
I would like for the stage to be smaller, say H:50px./W:400px
Ok so if I change the size of the stage the animation text will not show, so I need to adjust the position of the text in order for the animation text to be visible, but in doing that, I am disrupting the timeline and the animation goes all funny, is there another way of doing this without disrputing the timeline?
View 1 Replies
View Related
Jul 19, 2013
I've created an input text inside a symbol called "Asks" in a timeline triger i use:
message = sym.$("texto"); // texto is a textfield
message.html("Write here: ");
inputMessage = $('<textarea />').attr({'type':'textarea','value':'', 'id':'message'});
inputMessage .css ('font-size', 18);
inputMessage .css ('box-shadow', '#0a81fb');
[Code] ......
View 7 Replies
View Related
Feb 7, 2014
Say there are 4 compositions in an html file. Is it possible to create a few navigation buttons in the html file, so that when a 3rd button is clicked, the animation jumps to the 3rd animation. Something like JQuery slideshow, but the difference is, each composition is animated instead of a static image.
View 8 Replies
View Related
Jun 17, 2013
I am facing one problem to adding color in one text box.
For Ex i am writing a text in one text box - "Adobe edge is the best tool for creating html 5 animation".
i need adobe edge red color and html 5 animation blue color and other text color will be black.
Is it possible for adding mutilple color in same text box.
View 6 Replies
View Related
Mar 17, 2014
What way can i read text from a text field on stage then put this value into a variable?
I can easily write text to a text field via:
sym.$("my_text_field").html("Some text...");
But I want to read this text into a vairable? For example:
var theText = my_text_field.text
View 1 Replies
View Related
Mar 26, 2013
I'm using Animate to create a lesson/course and I would like to be able to click on a word in the text and have a new text box open with a definition/explanation of the word clicked. Is there a way to do that in Animate? I haven't been able to figure it out.
View 3 Replies
View Related
Jun 14, 2013
This is the first time I have used Edge Animate..I have created a simple line of text that fades in from left to right. In chrome, the HTML file looks great. I FF and IE, the last part of the line of text is missing!
View 1 Replies
View Related
Oct 17, 2013
I have an SVG file with text inside, if I open the file in the browser I can select the text, but when I import the file to Edge Animate and then exported as html I lose the ability to select the text with the web browser.
View 1 Replies
View Related
Sep 17, 2013
I just need to create a simple animation to be dropped into a MUSE creation and I think Edge Animate is the right way to do it. For the life of me I cannot figure out how.
Basically, I want to create a simple animation to explain the dimensions of a product. A line with arrows on both ends would grow to the length of a line drawing symbolizing its height for example.
Accompanying that would be a text box that I would like to simply count up from 0.0" to 3.5" for instance. how do I dynamically update the text from 0.0 to 3.5 across a 2 second animation in Edge Animate?
View 8 Replies
View Related
Dec 13, 2012
I can create symbols on the stage using "sym.createChildSymbol" command. But how can I cretare textFields with script?
View 2 Replies
View Related
Oct 30, 2013
when I import a project .oam in InDesign, and over the project, into a higher level, there is text, the text is covered from the animation when it run in folio.
View 1 Replies
View Related
May 19, 2013
I'm having a bit of a problem getting my text to behave the way I want. In Straight HTML (CSS) I can create a inline block div, place text in it and the text stays in the div, returns when it needs to at the end of the DIV, and expands the bottom/height of the div to fit text.
I can't figure out how a to get that same effect in animate. Can you do this with settings or do I need to code the Css into the div?
View 2 Replies
View Related
Jul 31, 2013
Is it possible for text or an object to overlay another object that is interactive but not inturupt the interactivity of the object below? As if the the text interactivity was trasparent.
View 2 Replies
View Related
Aug 28, 2013
I published my Animate composition and inserted it into DW. Animate added "edgeanimate_assets/menu" to all of my button links so they don't work. How can I prevent that from happening?
View 1 Replies
View Related
Feb 21, 2013
I've tried the following: resVel = window.document.getElementById("txtVel").value;
this normally works in javascript, but crashes when using that line in the actions for a trigger.
View 1 Replies
View Related
May 28, 2013
Right path to code a slideshow of 5 messages/captions which is looped??
all the messages are taken from a json file, I need the loop to be 3 messages long i.e. 1, 2, 3 start again then 4, 5, 1
View 27 Replies
View Related
May 14, 2013
I have a textfield nested in a symbol and am using an Adobe web font (droid-sans). When I change the text inside the textbox with something like the following:
sym.getSymbol("captionButton").$("textBox").html("Hide Captions");
the fontFace APPEARS to go to some other sans font and seems bold from that point forward. Do I need to reset all the css properties of the fontface every time I change html text in a textbox.
View 3 Replies
View Related