Bugs item #443477, was opened at 2001-07-21 21:41
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=443477&group_id=5757
Category: DynAPI 2 API
Group: Unverified
>Status: Closed
>Resolution: Invalid
Priority: 5
Submitted By: Andrew Gullans (jacknife)
Assigned to: Nobody/Anonymous (nobody)
Summary: Thread is undefined
Initial Comment:
On Internet Explorer 5.00.2314.1003IS (customized
version with SSL 128-bit encryption) running under
Windows 98, following code functions but
reports 'Error 24: "Thread" is undefined.'
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0
Transitional//EN">
<html>
<head>
<title>Untitled</title>
<script language="javascript"
src="../src/dynapi.js"></script>
<script language="javascript">
DynAPI.setLibraryPath('../src/lib/')
DynAPI.include('dynapi.api.*')
DynAPI.include('dynapi.event.*')
DynAPI.include('dynapi.ext.*')
DynAPI.include('dynapi.gui.*')
DynAPI.include('dynapi.util.*')
DynAPI.onLoad=function() {
myLayer=new DynLayer
(null,100,100,100,100,'#c0c0c0')
myListener=new EventListener(myLayer)
myListener.onmouseover=function(e) {
target=e.getTarget()
target.setBgColor('#0000f0')
}
myListener.onmouseout=function(e) {
target=e.getTarget()
target.setBgColor('#c0c0c0')
}
myLayer.addEventListener(myListener)
DynAPI.document.addChild(myLayer)
}
</script>
</head>
<body>
</body>
</html>
----------------------------------------------------------------------
>Comment By: Robert Rainwater (rainwater)
Date: 2001-07-22 13:28
Message:
Logged In: YES
user_id=16618
You must close the script tag after the last DynAPI.include
() statement in order to make sure that the script files
are downloaded before you use them.
----------------------------------------------------------------------
You can respond by visiting:
http://sourceforge.net/tracker/?func=detail&atid=105757&aid=443477&group_id=5757
_______________________________________________
Dynapi-Dev mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/dynapi-dev