My animation doesn't work in html page

hi guys,i want you to help me , you know is so frustated to work for long being an animation and at the final doesn't work
i've done an animation in flash using as3 code ,it's work perfetly.
the problem is that when i insert it in my page nothing happens ,before to try with browser i test the swf with a play button in dreamweaver
but nothing
when i publized only the script is seen but the images not.
i my server wamp on y computer under my folder for my website there is a folder named :images(for all images),on this folder i put the entire folder of my animation .
but i don't know why it doesn't work
i can say you all my animations with xml and AS3 in flash doesn't work in my page
please give me a magic and quick solution
thanks all of us for reading me
my english isn't so much perfect
bye

thanks you for replying me
but i solved it
--- En date de : Lun 6.7.09, Nadia-P <[email protected]> a écrit :
De: Nadia-P <[email protected]>
Objet: My animation doesn't work in html page
À: "augustine ngo ndjel" <[email protected]>
Date: Lundi 6 Juillet 2009, 11h06
It is very hard to help you without
seeing your page... do you have the files uploaded to a
server?  Can you post a link, so people can look at the
code to see if they can find a solution for you.
Nadia
Adobe® Community Expert : Dreamweaver
Unique CSS Templates |Tutorials |SEO Articles
http://www.dreamweaverresources.com/
http://csstemplates.com.au/

Similar Messages

  • Edge animation doesn't work when on the net

    Hi
    Built the Muse site. Placed the Edge Animate .oam file in the pages. Tested it in the browsers. All running great.
    BUT now when I upload the site to the net, the Edge Animate animation doesn't work in any of the browsers.
    Why not?
    Am I meant to be uploading other files with the animation?
    How can I remedy to make it all work…as it should?
    KR
    Steve

    Hi Vivek
    In the web checking section of my site, I've used the animation at the bottom of all the pages (under the rule) of this site :
    Home
    Hopefully you can tell me how to fix. BTW I don't use Dreamweaver. I only use Muse.
    Steve

  • Find function cntrl-f doesn't work for long pages. frustrating

    find function cntrl-f doesn't work for long pages. Works find on your competitions IE, though I strongly prefer FF.
    == This happened ==
    Every time Firefox opened
    == Several versions of FF

    Hi Cb,
    I did try that and it didn't work. the site in question (though I could pick any) is midwestmafia.com and I typed in capone (which is near the end of the page)
    Works well on IE, though I'd like to stick with FF.

  • Safari doesn't work - last/next page with gestures

    After last security update (2014-005) gestures magic mouse in Safari doesn't work (last/next page). After using it Safari page doesn't respond. What happened?

    You played with your DNS where? In network settings in System Preferences or on the router?

  • Why the italic function doesn't works in my Pages? I have already installed the actualization and it keeps not working...

    Why the italic function doesn't works in my Pages? I have already installed the actualization and it keeps not working...

    drag the other clip 'over' the main clip
    the 2nd clip has to be selected/yellow border...
    then you're prompted in the Inspector with the several options...

  • Edge animation doesn't work properly or display properly in IE

    I've created an animation using Edge CC. It contains a graphic created in illustrator which has a gradient in it. I've inserted it using the OAM method into my webpage in Dreamweaver.
    My first issue is that the animation doesn't display in IE10 unless I allow Active X, however it takes forever to load.
    If I choose not to load the animation, the Poster image doesn't appear in its place.
    The second issue is that once it eventually loads, the gradient doesn't display correctly - it's a solid colour.
    Is there a way to get my animation working properly in IE?
    And if not, is there code I can use to display an alternative image - something that works in the newer versions of IE? I've tried using <!--[if !IE]> but it doesn't work.
    Thanks.

    I just did a simple test with an svg/ gradient, exported from Illustrator - defalt svg settings.
    Imported (File > Import) into an Edge project file and it works, shows properly.
    Is this the process you went through to add the svg file? When imported does the svg look as it should within the Edge Animate stage, at this point?
    I then opened Dw, new html file; Insert > Media > Edge .oam. It imports properly.
    Enable Live mode and I can see the edge file as well as the svg in all its gradient glory.
    As for the Active X prompt, that is common IF you double click the .html to view or Preview in Browser from Dw because its not within a webserver space.
    Darrell

  • WinJS enterPage animation doesn't work

    So I have been trying to get some animations in my application and seems like it doesn't work as expected.
    When I call
    WinJS.UI.Animation.enterPage(element)
    everything is fine and the element scrolls from right to left which is default with opacity.
    However the moment I override default values, everything just stops working, using something like this -
    WinJS.UI.Animation.enterPage(element, { top: "100px", left: "0px" });
    I don't see any animation, the element just gets thrown there, and there's no opacity change for the element to be faded into the screen either. Again this kind of works partially, when I pair with WinJS.UI.Animation.exitPage(oldElement) but it shouldn't be
    needed.
    I also tried using custom animation so that I'd have more control over timing than what is provided as part of default animation library, and that behaves a lot more differently. I just got the code written for enterPage in WinJS, pulled into my code, and
    tried tweaking around with the values... no matter what I do, I'd see only opacity change and the element fade in, and no translation at all. Even when I paired it with exitPage() or customExitPage(), nothing, it just wouldn't work.
    Is this a problem with WinJS.UI.executeAnimation() and WinJS.UI.executeTransition()?
    Regards, Rv.

    function runEnterPageAnimation() {
    // Get user selection from control
    var pageSections = document.getElementById("pageSectionsControl").value;
    document.querySelector(".box").style.overflow = "hidden";
    // Animate the application's entrance in the number of stages chosen by the user
    // Use the recommended offset by leaving the offset argument empty to get the best performance
    var enterPage;
    var rootGrid = document.getElementById("rootGrid");
    var pageContent = document.getElementById("pageContent");
    var header = document.querySelector("header");
    var footer = document.querySelector("footer");
    function runCustomShowStoryboard(target) {
    var promise1 = WinJS.UI.executeAnimation(
    target,
    keyframe: "custom-translate-in",
    property: "transform",
    delay: 0,
    duration: 367,
    timing: "linear",
    from: {top:"50px", left: "0px"},
    to: {top:"0px", left: "0px"}
    var promise2 = WinJS.UI.executeTransition(
    target,
    property: "opacity",
    delay: 0,
    duration: 367,
    timing: "linear",
    from: 0,
    to: 1
    return WinJS.Promise.join([promise1, promise2]);
    switch (pageSections) {
    case "1":
    // Animate the whole page together
    enterPage = runCustomShowStoryboard(rootGrid, null);
    break;
    case "2":
    // Stagger the header and body
    enterPage = WinJS.UI.Animation.enterPage([header, [pageContent, footer]], null);
    break;
    case "3":
    // Stagger the header, input, and output areas
    enterPage = runCustomShowStoryboard([header, pageContent, footer]);
    break;
    document.getElementById("message").textContent = "Page appeared in " + pageSections + " section(s).";
    var runAnimation = document.getElementById("runAnimation");
    runAnimation.addEventListener("click", runEnterPageAnimation, false);
    Regards, Rv.

  • Print to pdf often doesn't work with multiple pages?

    When I try to print to pdf, it often doesn't work right.
    I can select, for example, multiple Excel worksheets to print. It looks fine with 4 pages in Preview, but when I select save as .pdf, it only prints 2 of the 4 pages, and it prints those in 2 separate documents rather than a single .pdf document with multiple pages.
    Is there a way to do this? Is this an Apple error or Microsoft error? Since it looks fine in Preview, my guess it is an Apple error?
    Mark

    It sounds like this is the problem with the way Apple handles multiple orientations in a pdf document. You can use Acrobat to print the files - it handles multiple orientations correctly. There was a previous thread on this:
    http://discussions.apple.com/message.jspa?messageID=1983431#1983431

  • Need to embed a Flash animation over top of a html page!

    Hello,
    I've created an animation in Flash with a transparent
    background which needs to be embedded into a html page with lots of
    div tags. I didn't create the html page and now I need to place the
    animation into that page somehow, overlapping with some text and
    graphics. Every where I place the animation, it will sit before or
    after the text and elements in the page and not over top of them.
    Hope I am clear enought to explain what my problem is. Does anybody
    know what I should do? I truly appreciate your help.
    PS. I am not a technical person so if any body wants to help
    me and needed the sources please email me at:
    Many thanks in advance.
    Mojan
    Mojan

    Treat Flash as any other content and place it within its own
    containing div. Position the div in the normal flow of the document
    allowing the div to 'stack' with the other divs above and below it.
    If you want to place the Flash such that it 'covers' existing
    content you can use CSS positioning techniques. Options include
    absolute positioning the containing div with the Flash swf within
    it (this removes the div from the normal flow of the document) and
    placing it over the existing content. Us position: absolute; and
    top and left, with px values to place the div where you need it.
    You can find tutorials on absolute positioning in the developer
    center or www.communitymx.com
    You can use the float property and negative margins to pull
    containing divs (or other elements) around the document, too.
    Experimenting with floats can be fun but you need to read up on
    their specific behavior as you can end up pulling your hair out.
    Again, there are plenty of CSS tutorials on positioning and a
    Google search should throw-up some options.
    Outside of CSS you can use DOM Scripting and JavaScript to
    also position and hide various content depending on your
    requirements. If you get stuck come back on this forum and ask for
    more help but provide specific code to help us.

  • HTML5 animation doesn't work

    I imported an animation that i created on Adobe Edge into my project on Adobe Captivate 8, but it doesn't work when i click to view the project in the browser, even when i export the file, nothing happens on the browser. I'm using Chrome as my default browser, but i've tried on IE and nothing happened as well.
    Does anybody can help me?
    Thanks,
    Pedro

    Are you sure the file exported ok? Are there any dependancies in the animation such as files located elsewhere which maybe haven't been bought across?

  • Animate 1.5 Can you trigger animation from elsewhere on the html page (ie outside Adobe Div)?

    I would like to use a button and jquery to trigger the animation from elsewhere on my web page (outside the Adobe Div) on  Adobe Animate 1.5.
    Is this possible?
    (I looked here but my javacript is only beginner level. http://www.adobe.com/devnet-docs/edgeanimate/api/old/1.5.0/EdgeAPI.1.5.0.html)

    <!DOCTYPE html>
    <html>
    <head>
      <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
      <meta http-equiv="X-UA-Compatible" content="IE=Edge"/>
      <title>Africa</title>
    <!--Adobe Edge Runtime-->
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <script type="text/javascript" charset="utf-8" src="edge_includes/edge.5.0.0.min.js"></script>
        <style>
            .edgeLoad-EDGE-Africa { visibility:hidden; }
        </style>
    <script>
       AdobeEdge.loadComposition('Africa', 'EDGE-Africa', {
        scaleToFit: "none",
        centerStage: "none",
        minW: "0",
        maxW: "undefined",
        width: "100%",
        height: "3000px"
    }, {dom: [ ]}, {dom: [ ]});
    </script>
    <!--Adobe Edge Runtime End-->
    <!--Adobe Edge Runtime-->
        <meta http-equiv="X-UA-Compatible" content="IE=Edge">
        <script type="text/javascript" charset="utf-8" src="edge_includes/edge.5.0.0.min.js"></script>
        <style>
            .edgeLoad-EDGE-America { visibility:hidden; }
        </style>
    <script>
       AdobeEdge.loadComposition('America', 'EDGE-America', {
        scaleToFit: "none",
        centerStage: "none",
        minW: "0px",
        maxW: "undefined",
        width: "100%",
        height: "2108px"
    }, {dom: [ ]}, {dom: [ ]});
    </script>
    <!--Adobe Edge Runtime End-->
    </head>
    <body style="margin:0;padding:0;">
      <div id="Stage-Africa" class="EDGE-Africa">
      </div>
        <div id="Stage-America" class="EDGE-America">
      </div>
    </body>
    </html>

  • Edge animation doesn't work in Chrome

    My Edge animation works fine in Safari, but doesn't work in Chrome and is sluggish in Firefox.  It eventually plays in Firefox but appears to be loading slowly then plays but is sluggish.  No problems in Safari.  How do I go about troubleshooting this problem.  It doesn't load half of my assets in Chrome.
    Thank you

    Hello Elaine or Adobe Staff, elainefinnell
    We are having a problem with an animation in Edge Animate involving transform and clipping.
    Basically, the animation is clipped in Chrome when viewing it, while not in other browsers.
    There is a known issue when filters are applied to transformed objects - which would then clip in Chrome.
    Chrome: Clipping may occur in browser when a transformed element has a filter applied. (3494343)
    Would it be possible for you to have a look to the project and tell us if we are doing something wrong.
    As there are no filters, it seems whether an additional issue, or a problem with our project.
    Thank you for your time and answer,
    it would save us time in order not to find a workaround while letting down this specific animation.
    Best,
    C.

  • Justify text doesn't work correctly in Pages 2

    For some types of document I like to specify line breaks and at the same time keep both ends of each line justified (rather than right-align or left-align). This works for unbroken paragraphs in Pages 1 & 2, and in Pages 1 I achieved this result for specified line breaks by using <SHIFT-RETURN> at the end of the line where I wanted the line break to occur. Now text I have prepared in this way in Pages 1 is no longer justified, but just left-aligned.
    How can I achieve this result in Pages 2 without having to insert arbitrary numbers of spaces (which doesn't always work anyway)?
    Thanks.
    Mac mini   Mac OS X (10.4.5)  

    Hello John,
    this is because of the "sero point" where the calculation between the "text paragraph align" settings and the ruler differ. In "left aligned" and "justified" the calculation begins from the left, similar to the ruler, so all works fine. But in "centered" and "right aligned" the calculation begins from the center or from the right, but the ruler calculation is in both cases from left to right.
    This is a limitation of the overall system. To get this right, the ruler has to change it's calculation direction by setting "centered" and "right aligned", too. But you continue writing from left to right, so what about the inversion of the "left" and "right aligned" tab stops?
    I don't know if you have done this, but you can send a feedback to the developer with some suggestions about this: http://www.apple.com/feedback/pages.html

  • Flash animation doesn't work when I publish Captivate file

    Hi,
    I have an e-learning developed by a third party using Captivate 6, they've inserted animations (swf files) created using Flash CS6. When I try publishing the Captivate file on my computer all the animations work well except for a particular one (a wheel that spins and asks questions).
    When I publish the Captivate file and go to that particular slide and click anywhere other than this animation the whole thing freezes (this doesn't happen on other slides with the other animation/quizzes developed using Flash CS6 on the same project). However, when the developer publishes the same file on their machine it works well.
    I don't have Flash CS6 installed on my machine (I only have Flash CS4 and can't open the animation/swf files), I asked someone else (that had Flash CS6) to try publishing the Captivate file and had the same issue I had.
    Has anyone had this issue before? how can I fix it?
    Thanks!

    Since you are loading another SWF file into your main root timeline and want to transfer control to the loaded SWF you need to call _lockroot on the container that holds the loaded content since you are using _root. Like this:
    myMCLMain.loadClip("flashSite.swf", "container2");
    container2._lockroot = true; //Add this line after loadClip
    Or you can remove the _root in the loaded SWF.

  • Flash animation not showing up on HTML page

    I just created a test page for my flash animation, but all I
    get is a blank white page. Check it out here:
    http://www.inspired-evolution.com/Flash/test.html
    I am adding the flash via dreamweaver CS3 under
    insert>>media>>flash
    the code being produced is this:
    <script type="text/javascript">
    AC_FL_RunContent( 'codebase','
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','wid th','720','height','73','title','IE
    Intro','src','IE_intro','quality','high','pluginspage','
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','movi e','IE_intro'
    ); //end AC code
    </script><noscript><object
    classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="
    http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0"
    width="720" height="73" title="IE Intro">
    <param name="movie" value="IE_intro.swf" />
    <param name="quality" value="high" />
    <embed src="IE_intro.swf" quality="high" pluginspage="
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash"
    type="application/x-shockwave-flash" width="720"
    height="73"></embed>
    </object></noscript>
    and the html file and swf are in the same directory and both
    uploaded on the server.

    hello, i haven't' any idea why isn't show
    tip:
    read this

Maybe you are looking for

  • How to set Firefox mobile to Private Browsing by default?

    What about:config settings are available that enable a mobile user to set Private Browsing by *default*? I found a similar question posted here ( https://support.mozilla.org/en-US/questions/958711 ), but it appears to be lacking an answer (or it has

  • I can no longer adjust the width of the Bookmarks Sidebar, how do I fix this issue?

    In the past I could hover my mouse arrow over the slider vertical bar to the right of the sidebar and get a 2 headed arrow that I could use to adjust the width of the Bookmarks Sidebar but that stopped working. I need to fix this issue. What do I nee

  • [SOLVED] Japanese Input using IBus/Mozc

    Good day, Recently, I finally managed to install Arch (phew!) As the title suggests, I need to frequently use Japanese Input. I've tried Anthy, however, the prediction is bad and the dictionaries are lacking. Then I've found mozc (successfully utiliz

  • Logminer not displaying right values

    Dear all, 10.2.0.4 on solaris 10 exec DBMS_LOGMNR.ADD_LOGFILE ('/arch/TABS2_133083_662754021.arc'); EXECUTE DBMS_LOGMNR.START_LOGMNR(OPTIONS => DBMS_LOGMNR.COMMITTED_DATA_ONLY); when v$logmnr_contents is queried, it is displaying the sql_redo and sql

  • Unit of measure language problem

    Hi experts, I'm selecting matnr and meins from MARA. In SE11 I see the meins in my language (DB), but when I'm executing my program than I see the Unit of measure as 'ST' (Stück). Could you help me in how can I get the unit of measure in a certain la