Animate CC and Dreamweaver together ?
Hey everyone , i have both dreamweaver and animateCC , my problem is that i can't make them interract together , i have a small HTML file made in animateCC and i want it to modify a html file in dreamweaver and i can't do it
here is an example : my html file is like :
==================================
body
<script>
var test = 0;
alert test;
</script>
/body
and here is the draft of the animate CC project :
======================================
this.button_1.addEventListener("click", fl_MouseClickHandler.bind(this));
function fl_MouseClickHandler()
{
test = test+1;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////
- I published an ANCC file as an OAM
- I inserted this OAM in an html file (my site) using DM<inset<html/animtedcompostion
- I added a script in the above html file with the variable
- I want to change the var in the site html page that contain the ANCC OAM object with code into ANCC so from the ANCC object.
