How to import html5 animation (created/published using flash) into a web page using Dreamweaver.

I have created an animation in Flash and published it as a html5 animation.
How do I get this into an exisitng web page using Dreamweaver?

Hi Nancy,
I am using Flash CC2014 which publishing as html.
(When I publish as html with edge animate you can create an oam file which allow the inserting of the resulktant animation into a web page)
The files produced with Flash CC 2014 are: html try.html and html.try
I was hoping I could use some way to just insert the html animation produced by Flash.
Source Code in html file is ....
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>html try</title>
<script src="http://code.createjs.com/easeljs-0.7.1.min.js"></script>
<script src="http://code.createjs.com/tweenjs-0.5.1.min.js"></script>
<script src="http://code.createjs.com/movieclip-0.7.1.min.js"></script>
<script src="html try.js"></script>
<script>
var canvas, stage, exportRoot;
function init() {
  canvas = document.getElementById("canvas");
  exportRoot = new lib.htmltry();
  stage = new createjs.Stage(canvas);
  stage.addChild(exportRoot);
  stage.update();
  stage.enableMouseOver();
  createjs.Ticker.setFPS(lib.properties.fps);
  createjs.Ticker.addEventListener("tick", stage);
</script>
</head>
<body onload="init();" style="background-color:#D4D4D4">
  <canvas id="canvas" width="550" height="400" style="background-color:#99CCFF"></canvas>
</body>
</html>
Tony

Similar Messages

  • Embed BI website into a web page using an IFRAME tag in HTML

    Hi
    I have got a requirement below.
    # Embed BI website into a web page using an IFRAME tag in HTML
    (Build a webpage and provide the links to BI Dash Board (10 reports))
    How to start and where to add the code and Is there any code available?
    Please help me out.

    Thank You for reply.
    I have created a website with dashboard links by using IFRAME tag .As of now there is no security restriction since it was POC for two reports.
    My question here how to Provide a link directly to BI public website from a web page on client site(Assume in gmail for example)

  • How do I display on-the-fly generated XML on a web page using DW CS4 Spry regions?

    On a main web page I'm trying to display formatted data from an ASP page that generates XML on-the-fly from a query.
    When I run the ASP page from the browser, the XML formatting of the data works. But when I run the main web page, the data doesn't display.
    I'm using  DW CS4 Spry regionsto display the data on the main page from the XML data generated by the ASP page. Here's the main page code:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <META HTTP-EQUIV="Pragma" CONTENT="no-cache" >
    <html>
    <head>
    <script type="text/javascript" src="SpryAssets/xpath.js"></script>
    <script type="text/javascript" src="SpryAssets/SpryData.js"></script>
    <script type="text/javascript" src="SpryAssets/SpryUtils.js"> </script>
    <script type="text/javascript">var A1D1xml = new Spry.Data.XMLDataSet("A1D1ACRs_testWxmlCode.asp", "tests/test");</script>
    <title>Test XML Main</title>  
    </head>
    <body>
          <div id="A1D1xml" spry:region="A1D1xml">
                                    <table id="A1D1">
                <tr>
                <th>ID</th>
                <th>Last Name</th>
                <th>Final Status</th>
                </tr>
                <tr spry:repeat="A1D1xml">
                       <td>{acr_id}</td>
                    <td>{acr_lastName}</td>
                    <td>{acr_final_status}</td>
                </tr>
                  </table>
             </div>
    </body>
    </html>
    Here's the code for the page that generates the XML: A1D1ACRs_testWxmlCode.asp
    <html>
    <%
    set objConn=server.CreateObject("ADODB.Connection")
    objConn.Open application("web_test")
    set rs = objConn.Execute( "SELECT acr_id, acr_lastName, acr_final_status from acr_records_grid_view where acr_changeOption = 'A1D1'")
    Response.ContentType = "text/xml"
    Response.AddHeader "Pragma", "public"
    Response.AddHeader "Cache-control", "private"
    Response.AddHeader "Expires", "-1"
    %>
    <?xml version="1.0" encoding="utf-8"?>
    <tests>
      <%While (NOT rs.EOF)%>
                    <test>
                                    <ID><%=(rs.Fields.Item("acr_id").Value)%></ID>
                                    <acr_lastName><![CDATA[<%=(rs.Fields.Item("acr_lastName").Value)%>]]></acr_lastName>
                                    <acr_final_status><![CDATA[<%=(rs.Fields.Item("acr_final_status").Value)%>]]></acr_final_s tatus>
                    </test>
        <%
                    rs.MoveNext()
                    Wend
      %>
    </tests>
    <%
    rs.Close()
    Set rs = Nothing
    %>
    </html>
    Thanks.

    Thanks, but no; I'm using the correct case and folder.
    With this code on the main page, The region flashes the table column header names
    and the code as written for the spry repeat; then instantly disappears from the screen.
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <script type="text/javascript" src="SpryAssets/xpath.js"></script>
    <script type="text/javascript" src="SpryAssets/SpryData.js"></script
    <script type="text/javascript">var A1D1x = new Spry.Data.XMLDataSet("A1D1ACRs_testWxmlCode.xml", "tests/test");</script>
    <title>Test XML Main</title>  
    </head>
    <body>
          <div id="A1D1" spry:region="A1D1x">
                   <table id="A1D1a">
                <tr>
                <th>ID</th>
                <th>Last Name</th>
                <th>Final Status</th>
                </tr>
                <tr spry:repeat="A1D1x">
                    <td>{acr_id}</td>
                    <td>{acr_lastName}</td>
                    <td>{acr_final_status}</td>
                </tr>
                  </table>
             </div>
    </body>
    </html>

  • Importing Class Objects created in IFS Manager into a JSP page

    I create a class object using IFS Manager which consisted of extended attributes. I hope this is the right thing to do when I want to manage some extra attributes of a DOCUMENT. But the question is what package do I import to access this newly create Class Object

    Thank you. The information was very helpful.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by Joyce Peng:
    I believe you created a subclass of Document using iFS manager.
    Your new subclass is like any other class object in iFS.
    Here is an example of how to access a custom class EXPENSEREPORT with a custom attribute APPROVER.
    //Gets the the collection of all the class objects.
    //Then gets the specific EXPENSEREPORT class object.
    Collection classObjectCollection = session.getClassObjectCollection();
    ClassObject expenseReportClassObject =
    (ClassObject) classObjectCollection.getItems("EXPENSEREPORT");
    //Gets the APPROVER attribute for the class object.
    Attribute attribute = expenseReportClassObject.getEffectiveClassAttributes("APPROVER");
    <HR></BLOCKQUOTE>
    null

  • How to add HTML5 animation?

    How to add +HTML5 animation+ in iWeb site?
    Example:
    http://www.hongkiat.com/blog/48-excellent-html5-demos/

    How to add HTML5 animation in iWeb site?
    Study the subject and then try to make it work in iWeb :
    http://www.wyodor.net/_Demo/html5/
    http://www.wyodor.net/Demo/Fancy/DynamicText.html
    http://ipad.dailynews.webege.com/BlowUp.html
    You may have to learn HTML:/CSS/JavaScript and how iWeb creates its pages.

  • I used to have a web page in mobile me and now is closed.  How can I get my webpage data back?

    I used to have a web page in mobile me and now is closed.  How can I get my webpage data back?

    Your web pages on MobileMe have been deleted. If you were using iWeb you wouldn't have been able to open them anyway.
    As long as you have the iWeb 'Domain' file in your user Library, or whatever the program you are using stores the information in, on your Mac you can publish to another hosting service - there are plenty to choose from. More information here:
    http://rfwilmut.net/missing2

  • Create PDF from Web page using Acrobat 9 Pro

    I am trying to create a PDF file from a web page.  The alt tags for images is not being recognized, and the reading order bounces all over the page (not the order of the web page).  For example, the 1st text item on the page is #7 in the reading order, and the #1 item is an image half way down the page.  All the documentation I can find says Acrobat will read top to bottom, left to right, but it's not.  Any idea how to fix it?

    Acrobat is using the underlying mark up of the rendered HTML page.
    This may or may not provide an adequate input to Acrobat when it is noodling out how and what to tag.
    I suspect you may find that, to obtain an adequately tagged PDF, you may have to capture the web page content with the create bookmarks and create tags options off.
    Once you have the PDF make working copies.
    Try letting Acrobat tag this already created PDF to see what happens.
    You may have to manually tag the PDF.
    n.b., The default read order for western language can be altered by user selections in the accesibility setup or by selection in the PDF page(s) Page Properties.
    Be well...

  • How can I add a podcast episode to an existing web page using iWeb?

    How can I add an episode to an existing web page using iWeb?
    I could probably figure this out but I am afraid if I make changes to the site and re-upload it to the podcast area I will have just doubled it. I see them repeated from time to time.
    What is the proper protocal? Thanks
    Mac G4   Mac OS X (10.4.3)  

    Hi apple-owner,
    Method 1.
    To create this scatter-plot, I selected the whole of Columns A and B. (Shift click on the Column reference tabs).
    The plot ignores blank rows, but they are "ready" for new data:
    Method 2
    If you did not select whole columns, you can extend the "active" rows. Rows 1-5 selected:
    Add more data rows and drag the fill handle (small white circle, bottom right) down
    Regards,
    Ian.

  • How to embed 3D models in web page using JAVA?

    Hello
    I'm doing a project at University to create a virtual tour of a village. I am creating the buildings in MAYA using polygon planes and cubes and then exporting to VRML.
    I plan to embed each individual model into a separate web page. Then when the user clicks on a location in a 2D map they will be taken to the web page containing that building.
    However, I can't work out how to embed these 3D models into web pages using JAVA. Can anyone help me with this, please?
    Also, I've been told to use JAVA 3D to interact with the project but am unclear as to how JAVA 3D would be used in this project - aqny ideas/suggestions welcome!
    M.

    If you use Java-plugin, you can embed Java3D in a web page.
    Here is the URL(http://www.geovista.psu.edu/products/demos/LorenzAttractor3D/index.html) which used Java3D.
    I hope this helps.
    Masa

  • Can someone please tell me how to import a photo from my iPhoto library into Photoshop Elements 11.             o library

    Can someone tell me how to import a photo from my iPhoto library into Photo Shop Elements 11.  When I am in Photo Shop Elements and I go to import the only option is to import from a camera.  I want to import a photo from iPhoto.  If I can't figure this out Photo Shop Elements is totally useless to me.

    Not sure what you are trying to do
    If you want to use PSE as an editor for iPhoto then set it in the iPhoto preferences (you need to search the forums for the exact settings - they are not obvious)
    The general answer to yoru question is to import a photo form iPhoto to  any other program is to select the photo in iPhoto and export to the desktop and import from there
    Please explain what it is taht you want to do
    LN

  • How to Import one slideshow from Photoshop Elements 5 into 8?

    Hi!
    Please advise on how to import one slideshow created in Photoshop Elements 5 in to Photoshop Elements 8.
    The customer is trying to do the same, but all he is getting is text captions, not the images.
    I tried doing the same on my station, but could not re-create the problem.
    Please advise. Any link would be highly appreciable.
    Thanks...

    Hi! Thanx for your response.
    It is not clear that he has imported it as wmv or pdf, but the slideshow has to be imported in such a manner that it can still be edited (Captions, effects etc.)
    Creating a wmv or pdf will not allow the same.
    Any Ideas?

  • How do I create a short cut to a web page I am viewing on my MAC in Firefox?

    I want to be able to create a short cut (to place on my desktop) to web pages that I use frequently, how can I do this on my Mac using firefox?

    See:
    * [[Creating a desktop shortcut to a web page]]
    * http://kb.mozillazine.org/Creating_a_desktop_shortcut_to_a_webpage
    You can also use an extension.
    * SaveLink: https://addons.mozilla.org/firefox/addon/14019/
    * Deskcut: https://addons.mozilla.org/firefox/addon/66
    * Create Shortcut: http://www.pikey.me.uk/mozilla/?addon=cs

  • Create an entire web page using cffile

    I would like to create an entire web page using cffile..
    it seems that the output attribute is where you put the
    content like:
    output="this is a test."
    Q: so how do you add the full .htm content inside ....
    output=""
    ... where there will be lots of other double quotes?
    (if it involves 'escaping' characters - then I'll need some
    help with that.)
    Also : is it possible that the content could be some data
    combined with an cfinclude - i get errors when i try this...

    Well, I dont think I fully understand your intentions or
    goals are. However, from what I gather so far, you could output the
    data into pdf files. But like I said I dont understand what your
    trying to achieve. As far as the errors with <..etc, if they are
    included and you are trying to produce results those characters
    very well could cause problems when you are trying to do something
    that they were not intended to do.

  • How to show modal window without popup in a web page using javascript

    Hi,
    How to show modal window without popup in a web page using javascript, means when the modalwindow is opened it should not ask for popup blocker alert......
    pls help me.....

    Thanx for ur reply,
    Actually the senario is when i click on a button, another jsp page should be displayed in a modal window without popup, but the functions alert() and confirm() will not accept the url path of the another jsp page...

  • How do I merge more than one PDF document into one singular pdf using adobe viewer touch on a microsoft surface?

    How do I merge more than one PDF document into one singular pdf using adobe viewer touch on a microsoft surface?

    Or using the Adobe PDF Pack https://www.acrobat.com/

Maybe you are looking for

  • CV02N Error in Windows 7: This file could not be found!

    After uploading a file to the DMS, we could usually double click the file name and the file will be opened automatically in WORD. This was succeeded in Windows XP. But in Windows 7 environment, after clicking the file name,  the WORD is started, no f

  • "No Service" issue after updating iOS 8.1

    My iPhone 5 is really giving trouble after updating all iOS 8.01, iOS 8.02 & iOS 8.1. Cellular network is come to halt, "No Service" issue is regular and i am not able to use my iPhone 5 as phone.  Please help me out else i have to switch to some oth

  • Scenario for interface between a non sap system and a SAP erp

    Hello, I need some help in order to elaborate a interface between a SAP ERP and a non-sap system with the help of a XI system.    -  At first regarding the interface from the non sap system and a SAP ERP :        the non sap system sends a flat file

  • Power Point Docs

    See Appleworks and IWork sections in topics, but no MS Office for MAC. Does MAC Office Home have a function for reading Power Point presentations? My PC had just a reader for PPS which made it very simple to open and read them. I must be lazy, but I

  • Engineering change management working with parameter effectivity

    In Engineering change management i have activated parameter effectivity & defined parameter profile for DATE,SERNR,Kombi1-Customer(combination of Date & Customer name- Kunnr) in IMG settings i am able to work with Date & SERNR But when i choose kombi