Edge Animate CC :: Circles Created With Circle Tool Appear As Squares On IPad Safari?
Jan 4, 2013when I view my project on ipad safari, circles I created with the circle tool appear as squares, as do rounded corner rectangles.
View 1 Replieswhen I view my project on ipad safari, circles I created with the circle tool appear as squares, as do rounded corner rectangles.
View 1 RepliesI play audio with the following code:
var a = new Audio();
a.src = "xxx.mp3"; //.ogg if IE
a.play();
It works on different browsers including IE, firefox and chrome, but have no sound on Safari. I tried Safari 5.1 on PC and on iPod 4.3.3. I tried .wav, .ogg, .mp3.
I'm trying to embed a video into my project and although the initial setup was simple, getting it to play in all browsers is proving to be very difficult. I've read more articles and forum threads than I care to recall, but just can't seem to find the right combination. Safari wil play audio only and IE10 gives me "Error: Unsupported video type or invalid file path".
I've contacted my host provider to ensure that the server is compatible with all video formatts and I've had other people from different locations try to play the video with slightly varied results, but ultimately the video doesn't play for them either. Here is the code I'm using:
I started with this code that I picked up from an online tutorial:
var vid = sym.$("Holder");
vid.html('<video width= "838" height="609" src = "video/tester.mp4" poster = "video/DFC5.jpg" type = "video/mp4" controls ="controls" </video>');
I eventually moved to this in order to attempt to accommodate multiple video formats/browsers:
var vid = sym.$("Holder");
vid.html("<video width='838' height='609' preload='auto' poster = 'video/DFC5.jpg' controls ='controls'>" +
"<source src='video/tester.mkv' type='video/mkv' />" +
"<source src='video/tester.mov' type='video/mov' />" +
"<source src='video/tester.mpg' type='video/mpg' />" +
"<source src='video/tester.webm' type='video/webm' />" +
"<source src='video/tester.mp4' type='video/mp4' />" +
"<source src='video/tester.avi' type='video/avi' />" +
"<source src='video/tester.wmv' type='video/wmv' />" +
"<source src='video/tester.ogv' type='video/ogg' />" +
"</video>");
How do I access the iPad accelerometer in Edge Animate? Need code to be able to start an animation from a label once the iPad has been rotated by the viewer.
View 3 Replies View RelatedI'm looking to create a parallax scrolling page for use on the iPad.
View 1 Replies View RelatedI've just updated my development iPad and xcode to ios7 and xcode 5.
The app i´m developing uses web views to display content – which includes images and edge animations –embedded in one HTML-file using iscroll.js to swipe through (one page could be an image, the next a Edge Animation,separated in <li>-elements).
The Edge-Animations won´t show up, its just a blank page. However the iOS-Simulator shows everything correctly but on the iPad the Animations just won´t show.
I have an Edge project for web and ipad.The buttons in on the web site funtions well.But on the ipad it is slow and doesnt want to responed.
View 3 Replies View RelatedI‘m trying to have a simple (slide and zoom) ken burns like full page EDGE animation in our DPS folio.
The animation works like charme in the browser preview on my mac and is running smoothly without any issues. Only when I place the OAM in Indesign and preview it on the iPad (3) the animation plays back chunky. Well not exactely chunky, but it always stops once in the middle. Sometimes just for a brief moment, sometimes like up to nerly a second. It also happens when I test the HTML in mSafari. Not as bad, but definitvely also noticably.
Since I‘m fairly new to EDGE I don‘t really have a clou where to start optimising. It‘s a real simple animation (just one image moving and slightly zooming with some easing in and out, and one text element fading in) and the resulting oam is just about 790k.
Indesign CC
Edge CC
PDF folio v27
i have several Edge Animations embedded in a Webview which is running in an ipad app.
the animations are triggered by a button to start (although the same error occurs using autostart...), when they start they show a white or a black "Flash" (depends on the given background).
I´ve tried setting the background to transparent, but that doesn´t solve the problem.
The animations themselves are nothing fancy, no .svg´s for example. Just moving pngs, mostly.
Everything else runs very smooth on the ipad, except that start-flash.
(you can image how hard it is to do a websearch containing "Edge Animation" and "Flash" ).
UPDATE: I forgot to mention that the Animations DONT show that behavior when tested in Safari on the Desktop-Computer.
I have made an animation that after it completes, it displays an iFrame which has some input fields. The input fields behave great on a laptop pc or mac but when I use an Apple iPad, the cursor positions are way off outside of the input fields as I type.
Here is the website page: URL...Here I have the same iframe, one inside of edge and the other outside of edge. Both work fine on a pc or mac but if you try to use an Ipad, you will see that the edge one shows the input field cursor down and outside of the input field.
You can see for yourself, I have set this up for you to test and see this error.The animate oam file is: URL....
Here is a link to the edge files, the .an and java files files: URL.....
I'm trying to create animations to use with iBooks Author for an ebook. Unfortunately I am not a coder. Is there a way to make an animation in Edge that, when clicked, it plays a song? Or a video? I don't know how to connect Edge and Author in this way. How can I do something in Edge that references something in author?
View 1 Replies View Relatedhow I can get the name of a dynamically created symbol (using CreateChildSymbol) so i can hide move and otherwise affect the symbols i have created.
View 2 Replies View RelatedI'm trying to use ".createChildSymbol" to bring my symbols from the library to my stage. And in each symbol I have an OUT label, so every time a new symbol is called by a particular button, the last one plays from OUT label and new one appears at the same place. It's all easy for two symbols and I do not need to set any vaiable for them. But I have almost 180 symbols, and a menu of buttons to call them, so every button needs to play the OUT label of the current symbol and also plays the new one and make it as the current one.
sym.test = sym.createChildSymbol("test", "Stage");
sym.getComposition().getStage().setVariable("current", "test");
var current = sym.getComposition().getStage().setVariable("current");
sym.current.getSymbolElement().css({position:'absolute', display:'inline-block', top:167, left:91});
Is possible mask an image/ text inside a circle objetc with overflow hidden?Even I put an image/ text nested circle object + overflow hidden...The results is always the box edge, not the circle shape.
View 5 Replies View RelatedI would like to change the id of the dynamically created elements in order to work easily with their later. Currently, edge automatically generate an random id like "eid_1376057792551" for each element.
There is my code :
sym.setVariable("labels", {
content2: "Visiteur",
content3: "Exposant",
[Code]....
I created a simple symbol from a circle with a cross inside (two rectangles). The symbol has two states labelled "normal" and "over" in which background colors change : on mousover and mouseout on the circle, sym.stop("over"); and sym.stop("normal"); respectively.
The problem : "over" when the cursor hovers over the circle, but back to "normal" when it hovers over the cross. The API suggests to use mouseenter and mouseleave to avoid child elements of the symbol interrupt the mouse event. I tried it, but the behavior is the same.
Is there any JavaScript solution (I'm a beginner, coming from AS3), or should I bypass with two flattened graphics "normal" and "over" ?
I'm trying to snap a circle created with the Ellipse tool to the grid. However, the center of the circle won't snap to the grid, it's always the edges.
My circle is 4.7mm and my grid is 10mm with 2 subdivisions. How to get the center of a circle to snap to the grid?
My circles & Squares are not normal, They look like the "shear" tool symbol..How do I reset this?
View 1 Replies View RelatedI can't select edge loops created using the chamfer tool. For example, add a cube (1 segment in all direction), convert to editable poly and select one edge, chamfer it a little bit to make it rounded, now there's clearly a loop of edges there, but it's not selectable by using the loop selection.
View 5 Replies View Relatedmy animation takes around two seconds to load within my browser. Is there a way to display a loading symbol such as spinning circle, that will show the animation is loading, then disappear once it is ready to display?
View 2 Replies View RelatedI want the top squares to fit around the odd shaped circle, at the same time be able to edit them as if they were in a straight row and have the edits pass down to the squares around the oddly shaped circle.
View 4 Replies View Relatedif the edge animate tool have capability to develop flash games
View 1 Replies View RelatedI just got hold of the formula for it, and just went WOW......I'm not even going to start to understand that....let alone write a routine for it.
View 8 Replies View RelatedI can't control the location of a 3rd circle using ttr. I'm drawing two circles and then a 3rd tangent to both but I want the 3rd circle to be centered down below the two original ones and all it will do is be above them. See drawing.
View 9 Replies View RelatedUsing Autocad 2000LT and trying to locate as many 1.5" diameter circles as I can within a 21" diameter circle keeping all the circle .500" apart from any other circle and .500" away from the outer edge. Am using the array function. Trying to bring the first circle up to the line thats .500" in from the 21" outside diameter.
First when I zoom the 1.5" circle looks like a series of lines, not a smooth round circle. First how do I smooth out the appearance of the circle. Second, what commands do I use to move the edge of the circle to just tough the line so that when I measure from the outside dia to the far edge of the small circle I get 2".
How do you draw circles along the circumference of a circle at various angles? for example i want to plot a small circle every 30 degrees along a larger circle.
View 9 Replies View RelatedHow to arrange the circle like a round circles, same distance from each? I'm using Illustrator CS6.
Which tool should I use?
Also the "London" How to make it a little curve in CS6 illustrator?
I want to center an animate stage left and right in the browser window.
View 2 Replies View Related1. 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.
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].....
I'd like to animate snow falling. I assume Edge would be able to do this. Will it be possible to add it as a background? Or would it just be easier to add the effect to the top graphic portion of my page? I've used Edge back when it first came out. But havent' touched it in a while. I'm now working "in the Cloud". and I do use Dreamweaver.
View 5 Replies View Related