You can subscribe to this list here.
2000 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
(83) |
Nov
(319) |
Dec
(441) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2001 |
Jan
(617) |
Feb
(784) |
Mar
(426) |
Apr
(363) |
May
(489) |
Jun
(396) |
Jul
(405) |
Aug
(146) |
Sep
(97) |
Oct
(146) |
Nov
(348) |
Dec
(99) |
2002 |
Jan
(69) |
Feb
(92) |
Mar
(58) |
Apr
(33) |
May
(29) |
Jun
(45) |
Jul
(72) |
Aug
(71) |
Sep
(47) |
Oct
(19) |
Nov
(48) |
Dec
(55) |
2003 |
Jan
(23) |
Feb
(73) |
Mar
(42) |
Apr
(52) |
May
(64) |
Jun
(155) |
Jul
(169) |
Aug
(103) |
Sep
(113) |
Oct
(118) |
Nov
(46) |
Dec
(30) |
2004 |
Jan
(19) |
Feb
(24) |
Mar
(40) |
Apr
(13) |
May
(35) |
Jun
(1) |
Jul
(23) |
Aug
(3) |
Sep
(31) |
Oct
(31) |
Nov
(26) |
Dec
|
2005 |
Jan
(5) |
Feb
(4) |
Mar
(3) |
Apr
(2) |
May
(2) |
Jun
|
Jul
|
Aug
(23) |
Sep
(9) |
Oct
(5) |
Nov
(2) |
Dec
(1) |
2006 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
(1) |
Dec
|
2008 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
(3) |
Jul
(2) |
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Pascal B. <pa...@dy...> - 2000-11-24 17:26:50
|
you only have to use a semicolon between two distinct commands on a single line.. eg.: document.write('test'); return true this could be written as: document.write('test') return true Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens Doug Melvin Verzonden: vrijdag 24 november 2000 20:44 Aan: dyn...@li... Onderwerp: [Dynapi-Help] Why are there no semicolons?!?! Why is there not a single simicolon in any of these files? Does javascript not expect a line delimiter? Would not the code be easier to debug if we knew for a fact that the 'error on line 116' was really on line 116? Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation and Support Creative-Workshop.com |
From: Jason L. <ja...@go...> - 2000-11-24 16:51:22
|
*The following works in IE but not in NS* I am trying to replace a layer within a table using the setURL() method. I have a form with an onChange handler for a select box. When the user selects and option, a form will be submitted and using the the setURL() method, will load the appropriate info into the formDIV. This works great in IE, but NS does not show the newly loaded URL. The cgi simply returns the form element with a new select box which is populate with the new values. I have tried variations of placing the <div> tag outside ofthe <td> and <tr> tags, but it does not work as expected. I have also tried putting the <form> elements outside of the <div> to see if that was efecting NS, but it had no effect. The only way I can currently get this app to work is to create the entire form dynamically, but this is not really effecient since I will have other form elements (ie. name, address, phone, etc..) and/or create separate DIVS for the various form elements... (arrgh). I could also create a static table and then only dynamically create the form element that I wish to use the setURL() on, however, there is no way that I can guarantee the 'placement' of the element on the form. Is that confusing? Anyway, here is the code: ------------------------------------------------------------ DynAPI.onLoad=function() { testLayer=DynAPI.document.all["testDIV"] testLayer.setBgColor('#ffffcc') testLayer.moveTo(10,125) testLayer.setSize(225,225) testLayer.setVisible('true') formLayer=DynAPI.document.all["formDIV"] } function submitForm() { formLayer.setURL('rgb.cgi?color='+formLayer.doc.myForm.rgb.options[formLayer .doc.myForm.rgb.selectedIndex].value) } </script> </head> <body bgcolor="#ffffff"> <div id="testDIV" style="position: absolute; visibility: hidden"> <table border="1"> <tr> <td>Please Select:</td> </tr> <tr> <td> <div id="formDIV" style="position: relative;"> <form name="myForm"> <select name="rgb" onChange="submitForm()"> <option value="red">Red <option value="blue">Blue <option value="green">Green </select> </form> </div> </td> </tr> </table> </div> </body> </html> ---------------------------------------------------------------------------- ---- |
From: Doug M. <do...@cr...> - 2000-11-24 16:47:53
|
I seem to be using an old version of scroll.js. Where do I find the latest versions of all the files assosiated with the = dynapi project? I would really like to use this technology, but so far I am spending the = bulk of my time debugging, and trying to repair the files that poeple = are sending me. |
From: Doug M. <do...@cr...> - 2000-11-24 16:45:15
|
Why is there not a single simicolon in any of these files? Does javascript not expect a line delimiter? Would not the code be easier to debug if we knew for a fact that the = 'error on line 116' was really on line 116? Thank you, Doug Melvin Integrated System Solutions: Design, Development, Implementation and = Support Creative-Workshop.com=20 |
From: Joseph N. <co...@ea...> - 2000-11-23 21:39:46
|
Has anybody created a new selectList widget that works with IE 5.5?? |
From: David C. B. <da...@em...> - 2000-11-23 14:02:26
|
I tried with the inline.js that you use in your web site and it works. = Maybe I make some mistake modifying my inline.js. Thank you! ----- Original Message -----=20 From: Pascal Bestebroer=20 To: dyn...@li...=20 Sent: Thursday, November 23, 2000 2:11 PM Subject: RE: [Dynapi-Help] Inline Layers and NS6 The only example I have is my website the text is placed inside a = layer which is hidden by default and the code switches it to visible.. I = browsed using NS6 and everything works (minus some little visual = style-sheet errors) does your code work in the other browsers correctly? Pascal Bestebroer=20 pb...@oi...=20 http://www.oibv.com=20 |
From: Pascal B. <pb...@oi...> - 2000-11-23 13:11:36
|
The only example I have is my website the text is placed inside a layer which is hidden by default and the code switches it to visible.. I browsed using NS6 and everything works (minus some little visual style-sheet errors) does your code work in the other browsers correctly? Pascal Bestebroer pb...@oi... http://www.oibv.com -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens David C. Bros Verzonden: donderdag 23 november 2000 13:33 Aan: dyn...@li... Onderwerp: [Dynapi-Help] Inline Layers and NS6 Hi! I test the fixs posted by Pascal and I still can't change the value of any property on an inline Layer (ex. bgColor, visible, etc...) Does anybody have an example of inline layers in NS6? Also, the setHTML() function seems to fail in NS6, can it be because the problem with the inline layers? Thanks! |
From: David C. B. <par...@re...> - 2000-11-23 12:07:20
|
Hi! I test the fixs posted by Pascal and I still can't change the value of = any property on an inline Layer (ex. bgColor, visible, etc...) Does anybody have an example of inline layers in NS6? Also, the setHTML() function seems to fail in NS6, can it be because the = problem with the inline layers? Thanks! |
From: Roger J. <rog...@fr...> - 2000-11-23 08:25:02
|
As was suggested here, I added a "cover layer" to catch the drag event to make my image covered layer draggable, and it works :) I have tested in Netscape 4.75, 6.0 and IE 5 on the Mac. I did discover one thing/bug/issue though: To make dragging work properly in Netscape 4.x/Mac, i had to change line 41 in inc/js/lib/dynapi/api/dragevent.js from e.setBubble(true) to e.setBubble(false). This will disable the "click-and-hold contextual menu" that otherwise will appear. What else will this affect? /R -- Roger Johansson Framfab, Lilla Torget 6, SE-403 17 Gothenburg, Sweden Phone +46 31 13 34 44 http://www.framfab.com/ -- |
From: Dan S. <dy...@fu...> - 2000-11-23 04:02:44
|
Oops, hehe, I guess that was from some of my badly worded debugging :) Good somebody noticed it. I think line 92 can be safely changed to: if (!this.content) return; without any ill effects. Dan On Wed, Nov 22, 2000 at 08:50:50PM -0700, Michael Ellis wrote: > Just in case anybody is getting close to production ready using the new > viewport.js, there's an easter egg in the alert on line #92 ...if > (!this.content) alert('???'). > > Mike Ellis > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help |
From: Raymond S. <dst...@or...> - 2000-11-23 04:01:27
|
Yea, I saw that.... nice "syntax" :O) Hehe DS ----- Original Message ----- From: "Michael Ellis" <Mic...@il...> To: <dyn...@li...> Sent: Wednesday, November 22, 2000 7:50 PM Subject: [Dynapi-Help] Easter egg in line 92 of viewport > Just in case anybody is getting close to production ready using the new > viewport.js, there's an easter egg in the alert on line #92 ...if > (!this.content) alert('???'). > > Mike Ellis > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |
From: Michael E. <Mic...@il...> - 2000-11-23 03:52:35
|
Just in case anybody is getting close to production ready using the new viewport.js, there's an easter egg in the alert on line #92 ...if (!this.content) alert('???'). Mike Ellis |
From: Richard :o\) <ma...@ri...> - 2000-11-22 23:14:33
|
Hi, I wasn't really following what the problem was, but judging from your post the problem is in your directory structure, because this has changed a lot recently. - NS will give problems if it doesn't find a file, IE will pass it over. If you use this version: http://www.dynamic-core.net/core/index.htm there are example pages included, with all the correct includes, you can build further on one of these. Richard:o) ----- Original Message ----- From: "Peter Curran" <pc...@ca...> To: <dyn...@li...> Sent: Wednesday, November 22, 2000 3:49 PM Subject: [Dynapi-Help] Re: Problems with DynAPI2 and Dynacore > Further to my problem with Netscape - I have found that, as might be > expected, the problem goes away if I delete the line > "DynAPI.include('dynapi.api.*')" and instead insert explicit "<script > src=file:...>" tags for each of the DynAPI/api/*.js files. OTOH, just > replacing the "include *" method with five separate includes, naming each > of the api/*.js files explicitly, does not help. Seems to be some problem > with the include method when run under NS. I haven't pursued it any further > yet. > > -- > Peter Curran Software Developer Casebank Technologies Inc. > pc...@ca... 905 792-0618 X535 > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > ____________________________________________________________ > Get your FREE personal .com domain name and > NAMEzero Personal Portal at: http://www.namezero.com. > For customer service, mailto:cus...@na.... > > |
From: Joaquin S. <ca...@el...> - 2000-11-22 22:07:05
|
Hello. This is a problem that i am working in. I can't scroll one page = loaded in the scroll-window-widget to a especific location made whit the = classic tag. This is, i try to emulate de html tag '<a href=3D"#location">' that = automaticaly scroll the page to the position of the '<a = name=3D"location">. Now i am simply doing a scroll to approached positions, but this is very = hard to do when the page loaded have more than 30 internal locations to = calculate! Is this possible to do in another way? How can i find the position (on = screen) of this tags in run-time? Thanks. Gracias. |
From: Raymond S. <dst...@or...> - 2000-11-22 20:16:17
|
Off topic but yet..., on topic. Looking for a good debugger. Thanks DS |
From: <wan...@ya...> - 2000-11-22 20:03:56
|
Add two event listener, one for the follow mouse and other for the = onmouseover ----- Original Message -----=20 From: David C. Bros=20 To: dyn...@li...=20 Sent: Tuesday, November 21, 2000 12:01 PM Subject: [Dynapi-Help] How can I capture de mouse coordinates? Hi all! =20 I recently begin to use the DynAPI2. =20 I want to make an image that follows the mouse cursor. But I don't = know how to capture the mouse coordinates. =20 I tried but I only can add an eventlisenter to a DynLayer, and I want = an mouseover event triggered anywhere on the document. =20 Thanks! |
From: Pascal B. <pa...@dy...> - 2000-11-22 19:57:10
|
Oops, forgot this fix, the updateValues() method in dynapi.ext.inline should also be updated to this: DynLayer.prototype.updateValues=function() { if (is.ns4) { this.x=parseInt(this.css.left) this.y=parseInt(this.css.top) this.w=is.ns4? this.css.clip.width : parseInt(this.css.width) this.h=is.ns4? this.css.clip.height : parseInt(this.css.height) if (is.ns4) this.clip=[this.css.clip.top,this.css.clip.right,this.css.clip.bottom,this.c ss.clip.left] this.bgColor=this.doc.bgColor!="this.doc.bgColor"?this.doc.bgColor:null this.bgImage=this.elm.background.src!=""?this.elm.background.src:null this.html = this.innerHTML = this.elm.innerHTML = "" } else if (is.ie || is.ns5) { this.x=this.elm.offsetLeft this.y=this.elm.offsetTop this.w=is.ie4? this.css.pixelWidth||this.getContentWidth() :this.elm.offsetWidth this.h=is.ie4? this.css.pixelHeight||this.getContentHeight() :this.elm.offsetHeight this.bgImage = this.css.backgroundImage this.bgColor = this.css.backgroundColor this.html = this.innerHTML = this.elm.innerHTML } this.z=this.css.zIndex var b=this.css.visibility this.visible=(b=="inherit"||b=="show"||b=="visible"||b=="") } Pascal Bestebroer pa...@dy... http://www.dynamic-core.net -----Oorspronkelijk bericht----- Van: dyn...@li... [mailto:dyn...@li...]Namens David C. Bros Verzonden: woensdag 22 november 2000 20:43 Aan: dyn...@li... Onderwerp: [Dynapi-Help] New problem with the Inline Layers and NS6 Hi! I tried the fix posted by Pascal and now I get an error in NS6. this.elm.background has no properties Can somebody help me? Thanks! |
From: Pascal B. <pa...@dy...> - 2000-11-22 19:55:14
|
I just updated my tutorials for the new DynAPI2 structure and made some major changes to the widget tutor so that it now explains the latest widget model (reread this if you haven't been following things) you can find the tutors here: http://www.dynamic-core.net/knowledgebase and ofcourse on the sourceforge site here: http://www.sourceforge.net/projects/dynapi cya Pascal Bestebroer pa...@dy... http://www.dynamic-core.net |
From: David C. B. <da...@em...> - 2000-11-22 19:40:01
|
Hi! I tried the fix posted by Pascal and now I get an error in NS6. this.elm.background has no properties Can somebody help me? Thanks! |
From: Pascal B. <pa...@dy...> - 2000-11-22 18:35:02
|
Ok, here's a fix to get inline layers working under NS6.. Note that there's still a bug with events and images, but this bug is (probably) also with normal dynlayers replace this function in dynapi/ext/inline.js : DynAPI.isDirectChildOf = function(l, parent) { if(is.ns4) return (l.parentLayer == parent) if(is.ie){ for(var p=l.parentElement;p;p=p.parentElement) if(p.tagName.toLowerCase()=='div') return p==parent return !parent.tagName } if (is.ns5) { for(var p=l.parentNode;p.isChild;p=p.parentNode) if(p.tagName.toLowerCase()=='div') return p==parent return !parent.tagName } } the is.ns5 part is added.. should do the trick cya, Pascal Bestebroer pa...@dy... http://www.dynamic-core.net |
From: Bill W. <bi...@my...> - 2000-11-22 17:52:43
|
Well the problem seemed to be when the dragevent.js was calling the dragdrop.js. A call to haschild seems to be the culprit. Any suggestions as to why this would happen? -----Original Message----- From: dyn...@li... [mailto:dyn...@li...]On Behalf Of Bill Wesley Sent: Monday, November 20, 2000 9:58 AM To: dyn...@li... Subject: [Dynapi-Help] onmouseup/dragend problem Hi all, You have done a great job on getting this new version out. Congrats! I have been using this API now for a few months. I just recently set up the new version and I am now having problems with the dragging on my site. Has anyone else been experiencing a problem with the mouse not letting go of the dragged layer? Any suggestions as to why this might occur? Thanks for the help! billw |
From: Eric G. <egr...@ho...> - 2000-11-22 17:48:53
|
When I move my mouse over and out of the splash layer (inline layer) it generates 2 error messages. Both are the same. Line: 106 Char: 3 Error: 'Dyndoc.id' is not an object Code: 0 Url: file://D:\egravel_fl\Amsterdam2000\index.html Here's the code that I have for the inline layer (splash): <div id="splash" style="position: absolute; visibility: hidden; width: 400px; height: 100px; background-color: #0000FF;"> <table border="0" cellpadding="0" cellspacing="0" bgcolor="#000080" width="400" height="100"> <tr> <td height="15" colspan="3"></td> </tr> <tr> <td height="15" width="15"></td> <td height="15"> <table border="1" cellpadding="0" cellspacing="0" width="370" height="70" bgcolor="#FFFFFF" align="center"> <tr> <td align="center" valign="middle"><br><h2>Photo Album - Amsterdam 2000</h2><h5>by <a href="mailto:egr...@ho...?subject=Photo Album - Amsterdam 2000" style="text-decoration: none;">Eric A. Gravel</a></h5> <h4>Page loading. Please wait...</h4></td> </tr> </table> </td> <td height="15" width="15"></td> </tr> <tr> <td height="15" colspan="3"></td> </tr> </table> </div> As for the other layer giving an error when I click on the image map. It gives the same error. I find it a bit bizarre that it only gives the error when I click (get 3 same errors) Would it help if I provided the whole code? It's 9k zipped. Thanks, Eric >From: "Pascal Bestebroer" Reply-To: dyn...@li... To: >Subject: RE: [Dynapi-Help] Event Problems - dyndoc.id Date: Wed, 22 Nov >2000 12:42:20 +0100 > >the e.srcElement will point to the layer or an image, as far as I know >other html elements don't trigger onmousexx events. > >The problem with images is being solved in the creation of the layers by >adding the lyrobj property to every image in a layer (done with normal >dynlayers and inline layers) > >I just tested (on an older version of the API) with putting text in a layer >(dynlayer and inline) and the events mouseout and mouseover triggered >correctly without errors. > > >Question for Eric, what was the error you got? (not the location, but the >message) > >Pascal Bestebroer pb...@oi... http://www.oibv.com _____________________________________________________________________________________ Get more from the Web. FREE MSN Explorer download : http://explorer.msn.com |
From: Jack_Speranza <jsp...@gr...> - 2000-11-22 16:47:18
|
Hi Gang -- Have had my head buried for the last several weeks on a number of projects, and am finally getting around to once again working with DynAPI so I can start to incorporate it into our web here. Just when I think I'm making progress, however, the cyber-Demons wreak havoc with my plans. My ongoing experiement involves loading all of my DynAPI code into a menubar frame. As new pages load in my target frame, they call functions in the menu frame that 1) make them DynDocuments, 2) add "common" DynLayers created in the menu frame, and 3) maybe create and add new DynLayers unique to the new target page. On unLoad, the common DynLayers are "removed" from the target DynDocument before it is destroyed, so they can once again be added to the next target DynDocument that is loading. Anyway, attached are my 4 experimentation files (frameset, test1 - menubar, test2 - 1st target dyndoc, and test3 - 2nd target dyndoc). All works fine in IE 5.0 (haven't tested 5.5). Things will load and work in NS 4.7, however, I'm running into the following problems: 1. Double-Clicking on the "help" button in target frame isn't being captured at all; 2. Right-clicking in either frame is being immediately captured by the browser, resulting in the usual right pop-up menu appearing on screen; and 3. On initially loading the frameset, the DynLayer that is created in target page is not sliding across the page. If you click on the menubar button to reload the page, however, then everything works fine from there. Inconsistently I find the following JS error showing up in the NS console -- Line 34 in ext.slide.js -- "DynAPI.getDocument("body").all.test1 [or .test2 if page3.htm] has no properties." I suspect the mouse event problems are easily remedied, but I can't figure out what's needed where (a captureMouseEvents here, a return false there... ;-). The slideTo problem has me particularly stumped, however. Any assistance would be most appreciated.... <<testzip.ZIP>> P.S. - place ZIP files in same directory "examples" folder for library paths to match... ****************************** Jack Speranza Web Developer Gryphon Networks (781) 255-0444 x129 jsp...@gr... <www.gryphonnetworks.com> |
From: Peter C. <pc...@ca...> - 2000-11-22 15:02:51
|
Further to my problem with Netscape - I have found that, as might be expected, the problem goes away if I delete the line "DynAPI.include('dynapi.api.*')" and instead insert explicit "<script src=file:...>" tags for each of the DynAPI/api/*.js files. OTOH, just replacing the "include *" method with five separate includes, naming each of the api/*.js files explicitly, does not help. Seems to be some problem with the include method when run under NS. I haven't pursued it any further yet. -- Peter Curran Software Developer Casebank Technologies Inc. pc...@ca... 905 792-0618 X535 |
From: Guangyi Wu <gua...@al...> - 2000-11-22 13:27:14
|
I used the dynapi.gui.label.html in package posted by Dan. There is a table in the layer, and a font in the td. I was surprised to see the e.srcElement pointing to FONT tag in the debugger by onmousedown event. AFAIK, src should refer the layer most near bottom to start DYNAPI event bubbling. In IE, the "this" in EventMethod() should be this phisical layer, because it is registered in captureMouseEvents(). If it is, this.lyrobj should be a better start layer than tis.lyrobj.dyndoc. Are there other exceptions I ignored? br George > -----Original Message----- > From: Pascal Bestebroer [mailto:pb...@oi...] > Sent: Wednesday, November 22, 2000 12:42 PM > To: dyn...@li... > Subject: RE: [Dynapi-Help] Event Problems - dyndoc.id > > > the e.srcElement will point to the layer or an image, as far > as I know other > html elements don't trigger onmousexx events. > > The problem with images is being solved in the creation of > the layers by > adding the lyrobj property to every image in a layer (done with normal > dynlayers and inline layers) > > I just tested (on an older version of the API) with putting > text in a layer > (dynlayer and inline) and the events mouseout and mouseover triggered > correctly without errors. > > > Question for Eric, what was the error you got? (not the > location, but the > message) > > Pascal Bestebroer > pb...@oi... > http://www.oibv.com > > > -----Oorspronkelijk bericht----- > Van: dyn...@li... > [mailto:dyn...@li...]Namens Guangyi Wu > Verzonden: woensdag 22 november 2000 10:54 > Aan: 'dyn...@li...' > Onderwerp: RE: [Dynapi-Help] Event Problems - dyndoc.id > > > I am afraid the new version has the same problem. Consider > the following > code in the DynLayer.EventMethod > > ===== > var realsrc=is.ie ? e.srcElement:e.target > var which=(is.ie||is.ns5)?e.button:e.which > var src=realsrc.lyrobj||dyndoc > if (!src) return true > ===== > > if there is html code in the most underlying layer, the > e.srcElement points > to an element in that layer. Hence, realsrc.lyrobj is > undefined and src is > assigned to dyndoc, and the original layer and the layer > between it and > dyndoc cannot get the event. > > I change the line > var src=realsrc.lyrobj||dyndoc > to > var src=realsrc.lyrobj||this.lyrobj > > and it works for me in an example file (the label from Dan) > to catch the > event. But I am not sure if this modification is correct. > > Another often mentioned workaround is to add a cover layer to > catch the > events. I come into this problem when I test the Dan's new > label, which > removes the cover layer. > > br > George > > > -----Original Message----- > > From: Pascal Bestebroer [mailto:pb...@oi...] > > Sent: Wednesday, November 22, 2000 9:36 AM > > To: dyn...@li... > > Subject: RE: [Dynapi-Help] Event Problems - dyndoc.id > > > > > > EventMethod is called on any mouse event on the > corresponding layer or > > document. > > Try upgrading to the latest version, it might fix some > > problems with this.. > > > > I think the problem might be in your code somewhere.. events > > should work > > normally on inline layers. > > > > Pascal Bestebroer > > pb...@oi... > > http://www.oibv.com > > > > > > -----Oorspronkelijk bericht----- > > Van: dyn...@li... > > [mailto:dyn...@li...]Namens Eric Gravel > > Verzonden: woensdag 22 november 2000 8:36 > > Aan: dyn...@li... > > Onderwerp: [Dynapi-Help] Event Problems - dyndoc.id > > > > > > I'm getting errors in IE 5.0 The first occurence is when I move my > > mouse over an inline layer. The second instance is when I click an > > image map that is inside a 2 level deep child layer (child layer of > > a parent child layer). > > > > When debugging the code using MS Development Environment, it points > > the error as belonging to file core.api.events.js: > > > > src=DynAPI.getDocument(realsrc.dyndoc.id) > > > > The line belongs to the following code block: > > > > var realsrc=is.ie ? e.srcElement:e.target > > var which=(is.ie||is.ns5)?e.button:e.which > > var src=realsrc.lyrobj > > if (!src) { > > src=DynAPI.getDocument(realsrc.dyndoc.id) > > if (!src) return true > > } > > > > So e.srcElement.lyrobj does not exists. Why? The other question > > I have is when does this function, DynLayer.prototype.EventMethod, > > gets called? > > > > If needed, I can provide the whole code. > > > > > > Eric > > ______________________________________________________________ > > ______________ > > _________ > > Get more from the Web. FREE MSN Explorer download : > http://explorer.msn.com > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > > _______________________________________________ > Dynapi-Help mailing list > Dyn...@li... > http://lists.sourceforge.net/mailman/listinfo/dynapi-help > |