Skip to main content
Participant
November 21, 2016
Question

Inserting Edge Animate Animation

  • November 21, 2016
  • 1 reply
  • 599 views

I have followed every tutorial out there and my .oam just will not insert. I am inserting in my div between the >< and nothing. I am using Adobe Dreamweaver CC (2015), I save, and view in browser (google chrome) and simply nothing. UGH. I have just started with a new site and new index.html so, there is not much happening in regards to code. 

This topic has been closed for replies.

1 reply

Jon Fritz
Community Expert
Community Expert
November 21, 2016

Could you share your code (or better yet, a link to your work in progress)?

Have you tried uploading to a test location on your server to see if it's a local browser security setting causing the problem?

Participant
November 21, 2016

First of all thank you very much for your quick reply. Sure, here's the code. let me know if you need more files to include the published Adobe Edge Animate files? I do not see away to attach files to this thread.

Kindest regards

Jim

<!doctype html>

<div id="hm_pg_animation">

  <html>

  <head>

  <meta charset="UTF-8">

  <title>Untitled Document</title>

  <style type="text/css">

#Master {

  width: 960p;

  margin-left: auto;

  margin-right: auto;

  background-color: rgba(255,255,255,1);

  margin-top: -10px;

  padding-right: 5px;

  padding-left: 5px;

  border-right: 1px solid #CCC;

  border-left-width: 1px;

  border-left-style: solid;

}

#header {

  background-image: url(Images/header_960x174.jpg);

  height: 174px;

  width: 960px;

}

  #menu {

  height: 32px;

  width: 960px;

  margin-bottom: 5px;

  margin-top: 5px;

  background-image: url(Images/main_menu_bar.jpg);

}

  #main_image {

  height: 345px;

  width: 720px;

  margin-bottom: 5px;

}

  #main_image_description {

  background-color: #BDBDBD;

  height: 122px;

  width: 720px;

  margin-bottom: 5px;

}

  #spacer1 {

  background-color: #232323;

  height: 40px;

  width: 720px;

  margin-bottom: 5px;

}

  #main_content {

  background-color: #838383;

  height: 490px;

  width: 720px;

  margin-bottom: 5px;

}

  #footer {

  background-color: #555555;

  height: 40px;

  width: 960px;

}

  #addi_nav {

  height: 1010px;

  width: 234px;

  left: 740px;

  bottom: auto;

  position: absolute;

  top: 216px;

  background-image: url(Images/addi_nav.jpg);

}

  body {

  background-color: #eee;

}

  </style>

  </head>

   

  <body>

  <div id="Master">

  <div id="header"></div>

  <div id="menu"></div>

  <div id="addi_nav"></div>

  <div id="main_image"></div>

  <div id="main_image_description"></div>

  <div id="spacer1"></div>

  <div id="main_content"></div>

  <div id="footer"></div>

  </div>

  </body>

Jon Fritz
Community Expert
Community Expert
November 21, 2016

Where's your animate code and links in the <head> section?