Update of /cvsroot/dynapi/dynapi3x/docs
In directory sc8-pr-cvs1:/tmp/cvs-serv12044/docs
Modified Files:
changelog.html
Log Message:
uploaded by raymond
Index: changelog.html
===================================================================
RCS file: /cvsroot/dynapi/dynapi3x/docs/changelog.html,v
retrieving revision 1.1.1.1
retrieving revision 1.2
diff -C2 -r1.1.1.1 -r1.2
*** changelog.html 10 Feb 2003 22:35:28 -0000 1.1.1.1
--- changelog.html 9 Mar 2003 22:21:46 -0000 1.2
***************
*** 203,207 ****
</pre>
! <p>When it comes time to include the files in the page you can do it by calling dynapi.library.include('objectName') or dynapi.library.include('packageName.objectName')
<pre>
--- 203,207 ----
</pre>
! <p>When it comes time to include the files in the page you can do it by calling dynapi.library.include('objectName') or dynapi.library.include('packageName.objectName')
<pre>
***************
*** 230,234 ****
dynapi.library.include('dynapi.library');
! dynapi.library.include('dynapi.functions'); // includes all dynapi.functions
dynapi.library.include('dynapi.functions.Color');
dynapi.library.include('dynapi.functions.Date');
--- 230,234 ----
dynapi.library.include('dynapi.library');
! dynapi.library.include('dynapi.functions'); // includes all dynapi.functions
dynapi.library.include('dynapi.functions.Color');
dynapi.library.include('dynapi.functions.Date');
***************
*** 269,274 ****
dynapi.library.include('dynapi.util.DataSource');
dynapi.library.include('dynapi.util.IOElement');
! dynapi.library.include('dynapi.util.IOElementSYNC'); // includes Sync functions
! dynapi.library.include('dynapi.util.IOElementSODA'); // includes SODA functions
dynapi.library.include('dynapi.util.LoadPanel');
</pre>
--- 269,274 ----
dynapi.library.include('dynapi.util.DataSource');
dynapi.library.include('dynapi.util.IOElement');
! dynapi.library.include('dynapi.util.IOElementSync'); // includes Sync functions
! dynapi.library.include('dynapi.util.IOElementSoda'); // includes SODA functions
dynapi.library.include('dynapi.util.LoadPanel');
</pre>
***************
*** 331,338 ****
var eventlistener = {
onmousedown : function(e) {
!
},
onmouseup : function(e) {
!
}
}
--- 331,338 ----
var eventlistener = {
onmousedown : function(e) {
!
},
onmouseup : function(e) {
!
}
}
***************
*** 349,353 ****
this.DynLayer = DynLayer;
this.Dynlayer();
!
this.pdlyr = new Dynlayer();
this.dlyr = this.pdlyr.addChild(new DynLayer());
--- 349,353 ----
this.DynLayer = DynLayer;
this.Dynlayer();
!
this.pdlyr = new Dynlayer();
this.dlyr = this.pdlyr.addChild(new DynLayer());
***************
*** 370,379 ****
this.DynLayer = DynLayer;
this.Dynlayer();
!
this.pdlyr = new Dynlayer();
this.dlyr = this.pdlyr.addChild(new DynLayer());
!
var widget = this;
!
var el = {
oncreate : function(e) {
--- 370,379 ----
this.DynLayer = DynLayer;
this.Dynlayer();
!
this.pdlyr = new Dynlayer();
this.dlyr = this.pdlyr.addChild(new DynLayer());
!
var widget = this;
!
var el = {
oncreate : function(e) {
***************
*** 481,487 ****
this.DynLayer = DynLayer;
this.DynLayer();
!
this.dlyr = new DynLayer('hi');
!
var el = {
oncreate : function(e) {
--- 481,487 ----
this.DynLayer = DynLayer;
this.DynLayer();
!
this.dlyr = new DynLayer('hi');
!
var el = {
oncreate : function(e) {
***************
*** 650,654 ****
B.setAnchor({leftA:'myAnchor',topA:'myAnchor'}) // position the layer at an anchor called myAnchor
! B.setAnchor({topA:'anc1',bottomA:'anc2'}) // stretches the layer between anchors anc1 and anc2
</pre>
--- 650,654 ----
B.setAnchor({leftA:'myAnchor',topA:'myAnchor'}) // position the layer at an anchor called myAnchor
! B.setAnchor({topA:'anc1',bottomA:'anc2'}) // stretches the layer between anchors anc1 and anc2
</pre>
|